Package: Changed profile version. (2.3 -> 2.4)
authorminkee.lee <minkee.lee@samsung.com>
Thu, 26 Feb 2015 08:42:50 +0000 (17:42 +0900)
committerminkee.lee <minkee.lee@samsung.com>
Thu, 26 Feb 2015 08:43:07 +0000 (17:43 +0900)
Change-Id: I8d7feacaa12f00652c7c7bfe917faa103c9d951c
Signed-off-by: minkee.lee <minkee.lee@samsung.com>
29 files changed:
build.xml
common-project/src/org/tizen/emulator/manager/console/ActionList.java
common-project/src/org/tizen/emulator/manager/platform/BaseImage.java
package/build.linux
package/build.macos-64
package/build.windows
package/pkginfo.manifest
plugin-project/mobile-plugin/res/mobile-2.4_add_new_hover.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_add_new_hover.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_add_new_nml.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_add_new_nml.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_add_new_pushed.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_add_new_pushed.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_button_launch_dis.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_button_launch_dis.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_button_launch_hover.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_button_launch_hover.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_button_launch_nml.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_button_launch_nml.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_button_launch_pushed.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_button_launch_pushed.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_emulator_list_image_hover.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_emulator_list_image_hover.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_emulator_list_image_new_ani.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_emulator_list_image_new_ani.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_emulator_list_image_nml.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_emulator_list_image_nml.gif with 100% similarity]
plugin-project/mobile-plugin/res/mobile-2.4_emulator_list_selected.gif [moved from plugin-project/wearable-plugin/res/wearable-2.3_emulator_list_selected.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_add_new_hover.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_add_new_hover.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_add_new_nml.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_add_new_nml.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_add_new_pushed.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_add_new_pushed.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_button_launch_dis.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_button_launch_dis.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_button_launch_hover.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_button_launch_hover.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_button_launch_nml.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_button_launch_nml.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_button_launch_pushed.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_button_launch_pushed.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_emulator_list_image_hover.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_emulator_list_image_hover.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_emulator_list_image_new_ani.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_emulator_list_image_new_ani.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_emulator_list_image_nml.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_emulator_list_image_nml.gif with 100% similarity]
plugin-project/wearable-plugin/res/wearable-2.4_emulator_list_selected.gif [moved from plugin-project/mobile-plugin/res/mobile-2.3_emulator_list_selected.gif with 100% similarity]

index f3782d0..ec8b13a 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -16,7 +16,7 @@
 
        <!-- mobile plugin property -->
        <property name="mobile.dir" value="mobile-plugin" />
-       <property name="mobile.platform.version" value="2.3" />
+       <property name="mobile.platform.version" value="2.4" />
        <property name="mobile.platform.profile" value="mobile"/>
        <property name="mobile.item.factory" value="org.tizen.emulator.manager.mobile.ui.detail.ItemListFactory" />
        <property name="mobile.vmworker" value="org.tizen.emulator.manager.mobile.vms.VMWorker" />
@@ -24,7 +24,7 @@
 
        <!-- wearable plugin property -->
        <property name="wearable.dir" value="wearable-plugin" />
-       <property name="wearable.platform.version" value="2.3" />
+       <property name="wearable.platform.version" value="2.4" />
        <property name="wearable.platform.profile" value="wearable"/>
        <property name="wearable.item.factory" value="org.tizen.emulator.manager.wearable.ui.detail.ItemListFactory" />
        <property name="wearable.vmworker" value="org.tizen.emulator.manager.wearable.vms.VMWorker" />
index d33d8e0..f0a65d8 100644 (file)
@@ -375,10 +375,10 @@ class Create extends Action {
                this.action     = Actions.AC_CREATE;
                this.description = "Create new 'Virtual Machine'.";
                this.usage = "Standard Image: create -n test -b 1 [options]" + StringResources.NEW_LINE +
-                               "       Standard Image: create -n test -p mobile-2.3 [options]" + StringResources.NEW_LINE +
-                               "       Standard Image: create -n test -b 1 -p mobile-2.3 [options]" + StringResources.NEW_LINE +
+                               "       Standard Image: create -n test -p mobile-2.4 [options]" + StringResources.NEW_LINE +
+                               "       Standard Image: create -n test -b 1 -p mobile-2.4 [options]" + StringResources.NEW_LINE +
                                "       Custom Image: create -n test -c path [options]" + StringResources.NEW_LINE +
-                               "       Custom Image: create -n test -c path [options] -p mobile-2.3" + StringResources.NEW_LINE +
+                               "       Custom Image: create -n test -c path [options] -p mobile-2.4" + StringResources.NEW_LINE +
                                "       You can not use both '-b' and '-c' at the same time.";
 
                commandList.add(new Command("n", Actions.OP_NAME,
@@ -396,7 +396,7 @@ class Create extends Action {
                commandList.add(new Command("p", Actions.OP_PLATFORM,
                                "Select Platform of base disk image." + StringResources.NEW_LINE +
                                "\t\t(Avaliable disk image can be found using 'list-image' command)",
-                               "mobile-2.3", false, true));
+                               "mobile-2.4", false, true));
 
                // Options
                String resolution = "";
@@ -473,10 +473,10 @@ class RemoteCreate extends Action {
                this.action     = Actions.AC_REMOTE_CREATE;
                this.description = "Create new 'Remote Virtual Machine'.";
                this.usage = "Standard Image: remote-create -e ip -u account -n test -b 1 [options]" + StringResources.NEW_LINE +
-                               "       Standard Image: remote-create -e ip -u account -n test -p mobile-2.3 [options]" + StringResources.NEW_LINE +
-                               "       Standard Image: remote-create -e ip -u account -n test -b 1 -p mobile-2.3 [options]" + StringResources.NEW_LINE +
+                               "       Standard Image: remote-create -e ip -u account -n test -p mobile-2.4 [options]" + StringResources.NEW_LINE +
+                               "       Standard Image: remote-create -e ip -u account -n test -b 1 -p mobile-2.4 [options]" + StringResources.NEW_LINE +
                                "       Custom Image: remote-create -e ip -u account -n test -c path [options]" + StringResources.NEW_LINE +
-                               "       Custom Image: remote-create -e ip -u account -n test -c path [options] -p mobile-2.3" + StringResources.NEW_LINE +
+                               "       Custom Image: remote-create -e ip -u account -n test -c path [options] -p mobile-2.4" + StringResources.NEW_LINE +
                                "       You can not use both '-b' and '-c' at the same time.";
 
                commandList.add(new Command("n", Actions.OP_NAME,
index 6893c23..35d4e0b 100644 (file)
@@ -128,7 +128,7 @@ public class BaseImage {
                                        if (imageName == null) {
                                                throw new IOException("Image name is null. This image can not add.");
                                        }
-                                       version = prop.getProperty(StringResources.IMAGE_VERSION, "2.3");
+                                       version = prop.getProperty(StringResources.IMAGE_VERSION, "2.4");
                                        profile = prop.getProperty(StringResources.PRODUCT_PROFILE, PlatformStringResources.MobileProfile).toLowerCase();
                                        type = prop.getProperty(StringResources.IMAGE_TYPE, "default");
                                        cpu     = prop.getProperty(StringResources.TARGET_CPU, "x86");
@@ -342,4 +342,4 @@ public class BaseImage {
                        defaultProperty = vmList.parseXML(propertyFile);
                }
        }
-}
\ No newline at end of file
+}
index 2e711b7..1279820 100755 (executable)
@@ -31,14 +31,14 @@ install()
        cp $SRCDIR/common-project/supplement/em-cli.sh $BIN_DIR/bin/em-cli
        cp $SRCDIR/common-project/resource/res/em.ico $BIN_DIR/icons
 
-       RESOURCES_DIR=$SRCDIR/package/mobile-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.3/emulator-resources
+       RESOURCES_DIR=$SRCDIR/package/mobile-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.4/emulator-resources
        mkdir -p $RESOURCES_DIR/template
        mkdir -p $RESOURCES_DIR/plugins
        cp $SRCDIR/template/x86-standard.xml $RESOURCES_DIR/template/x86-standard.xml
        cp $SRCDIR/template/x86-standard-template.xml $RESOURCES_DIR/template/x86-standard-template.xml
        mv $SRCDIR/plugin-project/mobile-plugin/em-plugin.jar $RESOURCES_DIR/plugins/em-plugin.jar
 
-       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.3/emulator-resources
+       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.4/emulator-resources
        mkdir -p $W_RESOURCES_DIR/template
        mkdir -p $W_RESOURCES_DIR/plugins
        cp $SRCDIR/template/w-x86-standard.xml $W_RESOURCES_DIR/template/x86-standard.xml
index e79ff9a..91603ee 100755 (executable)
@@ -54,14 +54,14 @@ install()
 
        mv $SRCDIR/emulator-manager.app $BIN_DIR/bin
 
-       RESOURCES_DIR=$SRCDIR/package/mobile-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.3/emulator-resources
+       RESOURCES_DIR=$SRCDIR/package/mobile-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.4/emulator-resources
        mkdir -p $RESOURCES_DIR/template
        mkdir -p $RESOURCES_DIR/plugins
         cp $SRCDIR/template/x86-standard.xml $RESOURCES_DIR/template/x86-standard.xml
         cp $SRCDIR/template/x86-standard-template.xml $RESOURCES_DIR/template/x86-standard-template.xml
        mv $SRCDIR/plugin-project/mobile-plugin/em-plugin.jar $RESOURCES_DIR/plugins/em-plugin.jar
 
-       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.3/emulator-resources
+       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.4/emulator-resources
        mkdir -p $W_RESOURCES_DIR/template
        mkdir -p $W_RESOURCES_DIR/plugins
        cp $SRCDIR/template/w-x86-standard.xml $W_RESOURCES_DIR/template/x86-standard.xml
index 72bc2c4..6a513fb 100755 (executable)
@@ -109,8 +109,8 @@ install()
        cp $SRCDIR/common-project/supplement/em-cli.bat $BIN_DIR/bin/em-cli.bat
        cp $SRCDIR/common-project/resource/res/em.ico $BIN_DIR/icons
 
-       RESOURCES_DIR=$SRCDIR/package/mobile-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.3/emulator-resources
-       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.3-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.3/emulator-resources
+       RESOURCES_DIR=$SRCDIR/package/mobile-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/mobile-2.4/emulator-resources
+       W_RESOURCES_DIR=$SRCDIR/package/wearable-2.4-emulator-manager-resources.package.$TARGET_OS/data/platforms/wearable-2.4/emulator-resources
        mkdir -p $RESOURCES_DIR/template
        mkdir -p $RESOURCES_DIR/plugins
        mkdir -p $W_RESOURCES_DIR/template
index 21f7e07..24d8f19 100644 (file)
@@ -26,42 +26,42 @@ Build-host-os: macos-64
 Build-dependency: emulator-lib [ macos-64 ]
 Description: Tizen Emulator Manager
 
-Package: mobile-2.3-emulator-manager-resources
+Package: mobile-2.4-emulator-manager-resources
 OS: ubuntu-32
 Build-host-os: ubuntu-32
 Description: Emulator Manager Platform Resources
 
-Package: mobile-2.3-emulator-manager-resources
+Package: mobile-2.4-emulator-manager-resources
 OS: ubuntu-64
 Build-host-os: ubuntu-64
 Description: Emulator Manager Platform Resources
 
-Package: mobile-2.3-emulator-manager-resources
+Package: mobile-2.4-emulator-manager-resources
 OS: windows-32, windows-64
 Build-host-os: windows-32
 Description: Emulator Manager Platform Resources
 
-Package: mobile-2.3-emulator-manager-resources
+Package: mobile-2.4-emulator-manager-resources
 OS: macos-64
 Build-host-os: macos-64
 Description: Emulator Manager Platform Resources
 
-Package: wearable-2.3-emulator-manager-resources
+Package: wearable-2.4-emulator-manager-resources
 OS: ubuntu-32
 Build-host-os: ubuntu-32
 Description: Emulator Manager Platform Resources
 
-Package: wearable-2.3-emulator-manager-resources
+Package: wearable-2.4-emulator-manager-resources
 OS: ubuntu-64
 Build-host-os: ubuntu-64
 Description: Emulator Manager Platform Resources
 
-Package: wearable-2.3-emulator-manager-resources
+Package: wearable-2.4-emulator-manager-resources
 OS: windows-32, windows-64
 Build-host-os: windows-32
 Description: Emulator Manager Platform Resources
 
-Package: wearable-2.3-emulator-manager-resources
+Package: wearable-2.4-emulator-manager-resources
 OS: macos-64
 Build-host-os: macos-64
 Description: Emulator Manager Platform Resources