[Title] Protocol version up
authordonghee yang <donghee.yang@samsung.com>
Fri, 14 Dec 2012 02:33:55 +0000 (11:33 +0900)
committerdonghee yang <donghee.yang@samsung.com>
Fri, 14 Dec 2012 02:33:55 +0000 (11:33 +0900)
package/changelog
package/pkginfo.manifest
src/common/BuildComm.rb

index c7adccfdc003115e2f72500404570589ccf18b8c..a52fa8e3313e450c2c402f0bc0543cb7aec2dfcc 100644 (file)
@@ -1,3 +1,9 @@
+* 2.0.5
+- Upgraded protocol version to 1.7.0
+- Fixed Sign Up bug on WEB
+- Fixed Job group filtering on WEB
+- Fixed User Delete on WEB
+== donghee yang <donghee.yang@samsung.com> 2012-12-14
 * 2.0.4
 - Fixed below bug again 
 == donghee yang <donghee.yang@samsung.com> 2012-12-12
index a804e1c12fb4dac133c18626aa1ecbbdff4f4236..b31b08497f39cfc03cf0dbbb7fb5ef534212fccf 100644 (file)
@@ -1,5 +1,5 @@
 Source : dibs
-Version :2.0.4
+Version :2.0.5
 Maintainer : taejun ha<taejun.ha@samsung.com>, jiil hyoun <jiil.hyoun@samsung.com>, donghyuk yang <donghyouk.yang@samsung.com>, donghee yang <donghee.yang@samsung.com>, sungmin kim <dev.sungmin.kim@samsung.com
 
 Package : dibs
index c397bc815288d6879b32b8a47edbed45094d94a1..8d0a358cd9e6f89fce715ed987367eb175bbe345 100644 (file)
@@ -39,7 +39,7 @@ require "FileTransferViaDirect"
 ATTEMPTS = ["first", "second", "third"]
 
 class BuildCommServer
-       VERSION = "1.6.0"
+       VERSION = "1.7.0"
 
        private_class_method :new
 
@@ -330,7 +330,7 @@ end
 
 
 class BuildCommClient
-       VERSION = "1.6.0"
+       VERSION = "1.7.0"
        FIRST_REPONSE_TIMEOUT = 120
 
        private_class_method :new
@@ -407,7 +407,7 @@ class BuildCommClient
 
                        # check protocol
                        if not protocol_matched? l.strip then
-                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}"
+                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}. Upgrade your DIBS client!"
                                return false
                        end
 
@@ -448,7 +448,7 @@ class BuildCommClient
 
                        # check protocol
                        if not protocol_matched? l.strip then
-                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}"
+                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}. Upgrade your DIBS client!"
                                return false
                        end
 
@@ -491,7 +491,7 @@ class BuildCommClient
 
                        # check protocol
                        if not protocol_matched? l.strip then
-                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}"
+                               @error_msg = "Comm. Protocol version is mismatched! #{VERSION}. Upgrade your DIBS client!"
                                return nil
                        end
 
@@ -528,7 +528,7 @@ class BuildCommClient
 
                        # check protocol
                        if not protocol_matched? l.strip then
-                               @log.error "[BuildCommClient] Comm. Protocol version is mismatched! #{VERSION}"
+                               @log.error "[BuildCommClient] Comm. Protocol version is mismatched! #{VERSION}. Upgrade your DIBS client!"
                                return false
                        end
 
@@ -596,7 +596,7 @@ class BuildCommClient
 
                        # check protocol
                        if not protocol_matched? l.strip then
-                               @log.error "[BuildCommClient] Comm. Protocol version is mismatched! #{VERSION}"
+                               @log.error "[BuildCommClient] Comm. Protocol version is mismatched! #{VERSION}. Upgrade your DIBS client!"
                                return false
                        end