diff options
author | Yana Stamcheva <yana@jitsi.org> | 2008-01-15 00:11:15 +0000 |
---|---|---|
committer | Yana Stamcheva <yana@jitsi.org> | 2008-01-15 00:11:15 +0000 |
commit | 4f06cae3af9952f48a208433721e88af124078f6 (patch) | |
tree | c6cc8acfec568e42db98f62079069af3e447ac40 | |
parent | 9123fe0bfe2a9b26b3dc84e3e4c7a1c8203faf47 (diff) | |
download | jitsi-4f06cae3af9952f48a208433721e88af124078f6.zip jitsi-4f06cae3af9952f48a208433721e88af124078f6.tar.gz jitsi-4f06cae3af9952f48a208433721e88af124078f6.tar.bz2 |
All Look & feel and GUI color constants are now moved to a properties file in resources folder.
-rw-r--r-- | build.xml | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -1360,6 +1360,8 @@ javax.swing.event, javax.swing.border"/> prefix="resources/images/impl/gui"/> <zipfileset dir="${resources}/styles" prefix="resources/styles"/> + <zipfileset dir="resources/colors" + prefix="resources/colors"/> </jar> </target> @@ -1600,6 +1602,8 @@ javax.swing.event, javax.swing.border"/> manifest="${src}/net/java/sip/communicator/plugin/pluginmanager/pluginmanager.manifest.mf"> <zipfileset dir="${dest}/net/java/sip/communicator/plugin/pluginmanager" prefix="net/java/sip/communicator/plugin/pluginmanager"/> + <zipfileset dir="${resources}/colors" + prefix="resources/colors"/> </jar> </target> @@ -1611,6 +1615,8 @@ javax.swing.event, javax.swing.border"/> <zipfileset dir="${dest}/net/java/sip/communicator/plugin/extendedcallhistorysearch" prefix="net/java/sip/communicator/plugin/extendedcallhistorysearch"/> <zipfileset src="${lib.noinst}/jcalendar-1.3.2.jar" prefix=""/> + <zipfileset dir="${resources}/images/plugin/extendedcallhistorysearch" + prefix="resources/images/plugin/extendedcallhistorysearch"/> </jar> </target> @@ -1749,9 +1755,11 @@ javax.swing.event, javax.swing.border"/> <target name="bundle-plugin-whiteboard"> <!-- Creates a bundle for the Whiteboard plugin.--> <jar compress="false" destfile="${bundles.dest}/whiteboard.jar" - manifest="${src}/net/java/sip/communicator/plugin/whiteboard/whiteboard.manifest.mf"> - <zipfileset dir="${dest}/net/java/sip/communicator/plugin/whiteboard" - prefix="net/java/sip/communicator/plugin/whiteboard"/> + manifest="${src}/net/java/sip/communicator/plugin/whiteboard/whiteboard.manifest.mf"> + <zipfileset dir="${dest}/net/java/sip/communicator/plugin/whiteboard" + prefix="net/java/sip/communicator/plugin/whiteboard"/> + <zipfileset dir="${resources}/images/plugin/whiteboard" + prefix="resources/images/plugin/whiteboard"/> </jar> </target> |