[Title] sync with release-1.0
authorgiwoong.kim <giwoong.kim@samsung.com>
Wed, 2 May 2012 05:10:48 +0000 (14:10 +0900)
committergiwoong.kim <giwoong.kim@samsung.com>
Wed, 2 May 2012 05:10:48 +0000 (14:10 +0900)
[Type]
[Module] Emulator
[Priority]
[Jira#]
[Redmine#]
[Problem]
[Cause]
[Solution]
[TestCase]

package/pkginfo.manifest
tizen/src/VERSION
tizen/src/skin/client/src/org/tizen/emulator/skin/dialog/AboutDialog.java
tizen/src/skin/maruskin_client.c

index ed1539d..bdf7b41 100644 (file)
@@ -1,5 +1,5 @@
 Package: emulator
-Version: 1.2.62
+Version: 1.2.90
 OS: linux
 Build-host-os: linux
 Maintainer: Yeong-Kyoon Lee<yeongkyoon.lee@samsung.com>
@@ -8,7 +8,7 @@ Source: emulator
 Description: Tizen Emulator
 
 Package: emulator
-Version: 1.2.62
+Version: 1.2.90
 OS: windows
 Build-host-os: windows
 Maintainer: Yeong-Kyoon Lee<yeongkyoon.lee@samsung.com>
index 9f8e9b6..c5f46e8 100644 (file)
@@ -1 +1 @@
-1.0
\ No newline at end of file
+1.0 Larkspur
index f835d47..bc765ba 100644 (file)
@@ -96,7 +96,7 @@ public class AboutDialog extends SkinDialog {
                
                Text versionText = new Text( composite, SWT.NONE );
                String version = getValue( properties, PROP_KEY_VERSION );
-               versionText.setText( "Version" + "      : Tizen SDK " + version );
+               versionText.setText( "Version" + "        : " + version );
                versionText.setEditable( false );
                versionText.setBackground( shell.getDisplay().getSystemColor( SWT.COLOR_WIDGET_BACKGROUND ) );
 
index 9c49e47..b45ddce 100644 (file)
@@ -76,11 +76,11 @@ static void* run_skin_client(void* arg)
     int skin_server_port = get_skin_server_port();
 
     srand( time( NULL ) );
-    int uid = rand();
-    INFO( "generated skin uid:%d\n", uid );
+    int uid = 0; //rand();
+    //INFO( "generated skin uid:%d\n", uid );
 
     char* vm_path = tizen_target_path;
-    INFO( "vm_path:%s\n", vm_path );
+    //INFO( "vm_path:%s\n", vm_path );
 
     sprintf( cmd, "%s %s %s %s=\"%d\" %s=\"%d\" %s=\"%s\" %s=\"%d\" %s", JAVA_EXEFILE_PATH, JAVA_EXEOPTION, JAR_SKINFILE_PATH,
         OPT_SVR_PORT, skin_server_port,
@@ -88,6 +88,7 @@ static void* run_skin_client(void* arg)
         OPT_VM_PATH, vm_path,
         OPT_NET_BASE_PORT, tizen_base_port,
         argv );
+    INFO( "command for swt : %s\n", cmd );
 
 #ifdef _WIN32
 #if 0
@@ -143,8 +144,9 @@ static void* run_skin_client(void* arg)
             ERR("failed to close child thread handle, error %u\n", GetLastError());
         }
     }
+
 #endif
-#else
+#else //ifndef _WIN32
     int ret = system(cmd);
 
     if (ret == 127) {