[NUI] NUI_1.2.83 version release (#77) 4.0.1-preview1-00067
authordongsug-song <35130733+dongsug-song@users.noreply.github.com>
Thu, 25 Jan 2018 01:36:35 +0000 (10:36 +0900)
committerGitHub <noreply@github.com>
Thu, 25 Jan 2018 01:36:35 +0000 (10:36 +0900)
* [NUI] remove this.Reset in Animation Dispose

* [NUI] NUI_1.2.83 Version

packaging/version.txt
src/Tizen.NUI/src/internal/VersionCheck.cs
src/Tizen.NUI/src/public/Animation.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs

index ed39e9f024cd2e427916c29ca88190a67da67730..196bab0111797fde25ad7b67a4447b3d5efe705d 100755 (executable)
@@ -7,7 +7,7 @@ NUGET_VERSION=4.0.1-preview1-99999
 INTERNAL_NUGET_VERSION=4.0.1.999
 
 # RPM Version Suffix
-RPM_VERSION_SUFFIX=nui82
+RPM_VERSION_SUFFIX=nui83
 
 # Native Dependencies
-DALI_VERSION=1.2.82
+DALI_VERSION=1.2.83
index fb51f00a0724771a6a31dabaf24bceecb01796be..899f0874bd24ea8a346598c1a762a07909f6dd2d 100755 (executable)
@@ -24,10 +24,10 @@ namespace Tizen.NUI
     {
         public const int daliVer1 = 1;
         public const int daliVer2 = 2;
-        public const int daliVer3 = 82;
-        public const int nuiVer1 = 0;
+        public const int daliVer3 = 83;
+        public const int nuiVer1 = 1;
         public const int nuiVer2 = 2;
-        public const int nuiVer3 = 82;
+        public const int nuiVer3 = 83;
         public const string nuiRelease = "";
 
 
index c079d5ba946f252d80458806ac815eb451159d2a..6bd8eee717dce52faf48b7d5441b4d7e4c9cc151 100755 (executable)
@@ -83,12 +83,7 @@ namespace Tizen.NUI
 
             }
 
-            if (this)
-            {
-                this.Clear();
-                this.Reset();
-                //throw new System.InvalidOperationException("Animation Instance should not be disposed until getting Finished event. Should be a global variable");
-            }
+            this?.Clear();
 
             //Release your own unmanaged resources here.
             //You should not access any managed member here except static instance.
index 504ca4589add9640a643dc79e8a1540579181e6c..0e3ae0405034fe9fac7e363ed444402294878543 100755 (executable)
@@ -414,7 +414,7 @@ namespace Tizen.NUI.BaseComponents
         {
             if (keyEvent == global::System.IntPtr.Zero)
             {
-                Tizen.Log.Error("NUI", "keyEvent should not be null!");
+                NUILog.Error("keyEvent should not be null!");
                 return true;
             }
 
@@ -547,7 +547,7 @@ namespace Tizen.NUI.BaseComponents
         {
             if (touchData == global::System.IntPtr.Zero)
             {
-                Tizen.Log.Error("NUI", "touchData should not be null!");
+                NUILog.Error("touchData should not be null!");
                 return true;
             }
 
@@ -628,7 +628,7 @@ namespace Tizen.NUI.BaseComponents
         {
             if (hoverEvent == global::System.IntPtr.Zero)
             {
-                Tizen.Log.Error("NUI", "hoverEvent should not be null!");
+                NUILog.Error("hoverEvent should not be null!");
                 return true;
             }
 
@@ -709,7 +709,7 @@ namespace Tizen.NUI.BaseComponents
         {
             if (wheelEvent == global::System.IntPtr.Zero)
             {
-                Tizen.Log.Error("NUI", "wheelEvent should not be null!");
+                NUILog.Error("wheelEvent should not be null!");
                 return true;
             }