rhodes 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ == 1.4.1
2
+ * fixed issue with empty cookie check failing
3
+
1
4
  == 1.4.0
2
5
  * improved spec running framework, see spec/framework_spec for details
3
6
  * added api for returning screensize
data/lib/build/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module RhodesBuild
2
2
  unless defined? RhodesBuild::VERSION
3
- VERSION = '1.4.0'
3
+ VERSION = '1.4.1'
4
4
  end
5
5
  unless defined? RhodesBuild::DBVERSION
6
6
  DBVERSION = '1.4.0'
@@ -1,9 +1,9 @@
1
1
  module Rhodes
2
2
  unless defined? Rhodes::VERSION
3
- VERSION = '1.4.0'
3
+ VERSION = '1.4.1'
4
4
  end
5
5
  unless defined? Rhodes::DBVERSION
6
- DBVERSION = '1.4.0'
6
+ DBVERSION = '1.4.1'
7
7
  end
8
8
 
9
9
  end
@@ -1,8 +1,8 @@
1
1
  module RhodesFramework
2
2
  unless defined? RhodesFramework::VERSION
3
- VERSION = '1.4.0'
3
+ VERSION = '1.4.1'
4
4
  end
5
5
  unless defined? RhodesFramework::DBVERSION
6
- DBVERSION = '1.4.0'
6
+ DBVERSION = '1.4.1'
7
7
  end
8
8
  end
data/lib/rhodes.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  module Rhodes
2
2
  unless defined? Rhodes::VERSION
3
- VERSION = '1.4.0'
3
+ VERSION = '1.4.1'
4
4
  end
5
5
  unless defined? Rhodes::DBVERSION
6
- DBVERSION = '1.4.0'
6
+ DBVERSION = '1.4.1'
7
7
  end
8
8
 
9
9
  end
@@ -1,8 +1,8 @@
1
1
  <?xml version="1.0" encoding="utf-8"?>
2
2
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
3
  package="com.rhomobile.rhodes"
4
- android:versionCode="18"
5
- android:versionName="1.4.0">
4
+ android:versionCode="19"
5
+ android:versionName="1.4.1">
6
6
  <uses-sdk android:minSdkVersion="3"></uses-sdk>
7
7
  <application android:icon="@drawable/icon" android:multiprocess="true" android:allowTaskReparenting="true" android:debuggable="true"
8
8
  finishOnTaskLaunch="true" android:label="@string/app_name">
@@ -21,7 +21,7 @@
21
21
  <key>CFBundleSignature</key>
22
22
  <string>????</string>
23
23
  <key>CFBundleVersion</key>
24
- <string>1.4.0</string>
24
+ <string>1.4.1</string>
25
25
  <key>LSRequiresIPhoneOS</key>
26
26
  <true/>
27
27
  <key>NSMainNibFile</key>
@@ -163,12 +163,12 @@ public class NetRequest
163
163
  if ( resp.isOK() )
164
164
  {
165
165
  ParsedCookie cookie = makeCookie(m_connection);
166
- if ( cookie.strAuth.length() > 0 || cookie.strSession.length() >0 )
166
+ /* if ( cookie.strAuth.length() > 0 || cookie.strSession.length() >0 )
167
167
  resp.setCharData(cookie.strAuth + ";" + cookie.strSession + ";");
168
168
  else
169
169
  resp.setCharData("");
170
-
171
- // resp.setCharData(cookie.strAuth + ";" + cookie.strSession + ";");
170
+ */
171
+ resp.setCharData(cookie.strAuth + ";" + cookie.strSession + ";");
172
172
  LOG.INFO("pullCookies: " + resp.getCharData() );
173
173
  }
174
174
  }finally
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rhodes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rhomobile