rhodes 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +3 -0
- data/lib/build/version.rb +1 -1
- data/lib/framework/rhodes.rb +2 -2
- data/lib/framework/version.rb +2 -2
- data/lib/rhodes.rb +2 -2
- data/platform/android/Rhodes/AndroidManifest.xml +2 -2
- data/platform/iphone/Info.plist +1 -1
- data/platform/shared/rubyJVM/src/com/rho/net/NetRequest.java +3 -3
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/build/version.rb
CHANGED
data/lib/framework/rhodes.rb
CHANGED
data/lib/framework/version.rb
CHANGED
data/lib/rhodes.rb
CHANGED
@@ -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="
|
5
|
-
android:versionName="1.4.
|
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">
|
data/platform/iphone/Info.plist
CHANGED
@@ -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
|
-
|
170
|
+
*/
|
171
|
+
resp.setCharData(cookie.strAuth + ";" + cookie.strSession + ";");
|
172
172
|
LOG.INFO("pullCookies: " + resp.getCharData() );
|
173
173
|
}
|
174
174
|
}finally
|