rhodes 3.3.3 → 3.3.4

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 CHANGED
@@ -1,10 +1,8 @@
1
- ## 3.3.3
2
- * Support freezed models (FixedSchema and PropertyBag)
3
- * Detect available network types
4
- * iPhone: support Xcode 4.3
5
- * Support JQueryMobile on Windows Phone 7
6
- * Fix several RhoConnect Client issues
7
- * The following features become part of RhoElements v2: database encryption, Windows Mobile and Windows CE support, Barcode, NFC and Inline Signature Capture
1
+ ## 3.3.3
2
+ * Support freezed models (FixedSchema and PropertyBag)
3
+ * Detect available network types
4
+ * iPhone: support Xcode 4.3
5
+ * Fix Windows Mobile issues
8
6
 
9
7
  ## 3.3.2
10
8
  * iPhone: fix AppStore sumbit issue. Now all files stored in Private Documents, only database and user files in Documents
@@ -1,9 +1,9 @@
1
- module Rhodes
2
- unless defined? Rhodes::VERSION
3
- VERSION = '3.3.3'
4
- end
5
- unless defined? Rhodes::DBVERSION
6
- DBVERSION = '2.2.0'
7
- end
8
-
9
- end
1
+ module Rhodes
2
+ unless defined? Rhodes::VERSION
3
+ VERSION = '3.3.4'
4
+ end
5
+ unless defined? Rhodes::DBVERSION
6
+ DBVERSION = '2.2.0'
7
+ end
8
+
9
+ end
@@ -1,8 +1,8 @@
1
- module RhodesFramework
2
- unless defined? RhodesFramework::VERSION
3
- VERSION = '3.3.3'
4
- end
5
- unless defined? RhodesFramework::DBVERSION
6
- DBVERSION = '2.2.2'
7
- end
1
+ module RhodesFramework
2
+ unless defined? RhodesFramework::VERSION
3
+ VERSION = '3.3.4'
4
+ end
5
+ unless defined? RhodesFramework::DBVERSION
6
+ DBVERSION = '2.2.2'
7
+ end
8
8
  end
data/lib/rhodes.rb CHANGED
@@ -1,9 +1,9 @@
1
- module Rhodes
2
- unless defined? Rhodes::VERSION
3
- VERSION = '3.3.3'
4
- end
5
- unless defined? Rhodes::DBVERSION
6
- DBVERSION = '2.2.0'
7
- end
8
-
9
- end
1
+ module Rhodes
2
+ unless defined? Rhodes::VERSION
3
+ VERSION = '3.3.4'
4
+ end
5
+ unless defined? Rhodes::DBVERSION
6
+ DBVERSION = '2.2.0'
7
+ end
8
+
9
+ end
@@ -1,117 +1,117 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
- package="com.rhomobile.rhodes"
4
- android:installLocation="auto"
5
- android:versionCode="38"
6
- android:versionName="3.3.3">
7
-
8
- <uses-sdk android:minSdkVersion="8" />
9
-
10
- <application
11
- android:name="com.rhomobile.rhodes.RhodesApplication"
12
- android:icon="@drawable/icon"
13
- android:label="@string/app_name"
14
- android:debuggable="true">
15
-
16
- <!-- Main activity -->
17
- <activity
18
- android:name="com.rhomobile.rhodes.RhodesActivity"
19
- android:label="@string/app_name"
20
- android:configChanges="orientation|keyboardHidden"
21
- android:screenOrientation="unspecified"
22
- android:launchMode="singleTask">
23
- <intent-filter>
24
- <action android:name="android.intent.action.MAIN" />
25
- <category android:name="android.intent.category.LAUNCHER" />
26
- </intent-filter>
27
- <intent-filter>
28
- <action android:name="android.intent.action.VIEW" />
29
- <category android:name="android.intent.category.BROWSABLE" />
30
- <category android:name="android.intent.category.DEFAULT" />
31
- <data android:scheme="http" android:host="rhomobile.com" android:pathPrefix="/com.rhomobile.rhodes"/>
32
- </intent-filter>
33
- </activity>
34
-
35
- <activity
36
- android:name="com.rhomobile.rhodes.alert.PopupActivity"
37
- android:theme="@style/PopupTheme"
38
- android:screenOrientation="unspecified"
39
- android:configChanges="orientation"
40
- />
41
-
42
-
43
- <activity
44
- android:name="com.rhomobile.rhodes.camera.FileList"
45
- android:screenOrientation="unspecified"
46
- android:configChanges="orientation"
47
- />
48
-
49
-
50
- <activity
51
- android:name="com.rhomobile.rhodes.camera.ImageCapture"
52
- android:screenOrientation="landscape" />
53
-
54
- <activity
55
- android:name="com.rhomobile.rhodes.signature.ImageCapture"
56
- android:screenOrientation="unspecified"
57
- android:configChanges="orientation"
58
- />
59
-
60
-
61
- <activity
62
- android:name="com.rhomobile.rhodes.datetime.DateTimePickerScreen"
63
- android:screenOrientation="unspecified"
64
- android:configChanges="orientation"
65
- />
66
-
67
- <activity
68
- android:name="com.rhomobile.rhodes.mapview.MapView"
69
- android:screenOrientation="unspecified"
70
- android:configChanges="orientation"
71
- />
72
-
73
- <activity
74
- android:name="com.rhomobile.rhodes.mapview.GoogleMapView"
75
- android:screenOrientation="unspecified"
76
- android:configChanges="orientation"
77
- />
78
-
79
- <activity
80
- android:name="com.rhomobile.rhodes.bluetooth.RhoBluetoothDeviceListActivity"
81
- android:screenOrientation="unspecified"
82
- android:configChanges="orientation"
83
- />
84
-
85
-
86
- <receiver
87
- android:name="com.rhomobile.rhodes.PushReceiver"
88
- android:permission="com.google.android.c2dm.permission.SEND">
89
- <!-- Receive the actual message -->
90
- <intent-filter>
91
- <action android:name="com.google.android.c2dm.intent.RECEIVE" />
92
- <category android:name="com.rhomobile.rhodes" />
93
- </intent-filter>
94
- <!-- Receive the registration id -->
95
- <intent-filter>
96
- <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
97
- <category android:name="com.rhomobile.rhodes" />
98
- </intent-filter>
99
- </receiver>
100
-
101
- <service
102
- android:name="com.rhomobile.rhodes.RhodesService" />
103
-
104
- <uses-library android:name="com.google.android.maps" />
105
-
106
- </application>
107
- <supports-screens android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
108
- <uses-permission android:name="android.permission.INTERNET" />
109
- <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
110
- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
111
- <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
112
- <uses-permission android:name="android.permission.WAKE_LOCK" />
113
- <permission android:name="com.rhomobile.rhodes.permission.C2D_MESSAGE" android:protectionLevel="signature" />
114
- <uses-permission android:name="com.rhomobile.rhodes.permission.C2D_MESSAGE" />
115
- <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
116
-
117
- </manifest>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3
+ package="com.rhomobile.rhodes"
4
+ android:installLocation="auto"
5
+ android:versionCode="39"
6
+ android:versionName="3.3.4">
7
+
8
+ <uses-sdk android:minSdkVersion="8" />
9
+
10
+ <application
11
+ android:name="com.rhomobile.rhodes.RhodesApplication"
12
+ android:icon="@drawable/icon"
13
+ android:label="@string/app_name"
14
+ android:debuggable="true">
15
+
16
+ <!-- Main activity -->
17
+ <activity
18
+ android:name="com.rhomobile.rhodes.RhodesActivity"
19
+ android:label="@string/app_name"
20
+ android:configChanges="orientation|keyboardHidden"
21
+ android:screenOrientation="unspecified"
22
+ android:launchMode="singleTask">
23
+ <intent-filter>
24
+ <action android:name="android.intent.action.MAIN" />
25
+ <category android:name="android.intent.category.LAUNCHER" />
26
+ </intent-filter>
27
+ <intent-filter>
28
+ <action android:name="android.intent.action.VIEW" />
29
+ <category android:name="android.intent.category.BROWSABLE" />
30
+ <category android:name="android.intent.category.DEFAULT" />
31
+ <data android:scheme="http" android:host="rhomobile.com" android:pathPrefix="/com.rhomobile.rhodes"/>
32
+ </intent-filter>
33
+ </activity>
34
+
35
+ <activity
36
+ android:name="com.rhomobile.rhodes.alert.PopupActivity"
37
+ android:theme="@style/PopupTheme"
38
+ android:screenOrientation="unspecified"
39
+ android:configChanges="orientation"
40
+ />
41
+
42
+
43
+ <activity
44
+ android:name="com.rhomobile.rhodes.camera.FileList"
45
+ android:screenOrientation="unspecified"
46
+ android:configChanges="orientation"
47
+ />
48
+
49
+
50
+ <activity
51
+ android:name="com.rhomobile.rhodes.camera.ImageCapture"
52
+ android:screenOrientation="landscape" />
53
+
54
+ <activity
55
+ android:name="com.rhomobile.rhodes.signature.ImageCapture"
56
+ android:screenOrientation="unspecified"
57
+ android:configChanges="orientation"
58
+ />
59
+
60
+
61
+ <activity
62
+ android:name="com.rhomobile.rhodes.datetime.DateTimePickerScreen"
63
+ android:screenOrientation="unspecified"
64
+ android:configChanges="orientation"
65
+ />
66
+
67
+ <activity
68
+ android:name="com.rhomobile.rhodes.mapview.MapView"
69
+ android:screenOrientation="unspecified"
70
+ android:configChanges="orientation"
71
+ />
72
+
73
+ <activity
74
+ android:name="com.rhomobile.rhodes.mapview.GoogleMapView"
75
+ android:screenOrientation="unspecified"
76
+ android:configChanges="orientation"
77
+ />
78
+
79
+ <activity
80
+ android:name="com.rhomobile.rhodes.bluetooth.RhoBluetoothDeviceListActivity"
81
+ android:screenOrientation="unspecified"
82
+ android:configChanges="orientation"
83
+ />
84
+
85
+
86
+ <receiver
87
+ android:name="com.rhomobile.rhodes.PushReceiver"
88
+ android:permission="com.google.android.c2dm.permission.SEND">
89
+ <!-- Receive the actual message -->
90
+ <intent-filter>
91
+ <action android:name="com.google.android.c2dm.intent.RECEIVE" />
92
+ <category android:name="com.rhomobile.rhodes" />
93
+ </intent-filter>
94
+ <!-- Receive the registration id -->
95
+ <intent-filter>
96
+ <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
97
+ <category android:name="com.rhomobile.rhodes" />
98
+ </intent-filter>
99
+ </receiver>
100
+
101
+ <service
102
+ android:name="com.rhomobile.rhodes.RhodesService" />
103
+
104
+ <uses-library android:name="com.google.android.maps" />
105
+
106
+ </application>
107
+ <supports-screens android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" />
108
+ <uses-permission android:name="android.permission.INTERNET" />
109
+ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
110
+ <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
111
+ <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
112
+ <uses-permission android:name="android.permission.WAKE_LOCK" />
113
+ <permission android:name="com.rhomobile.rhodes.permission.C2D_MESSAGE" android:protectionLevel="signature" />
114
+ <uses-permission android:name="com.rhomobile.rhodes.permission.C2D_MESSAGE" />
115
+ <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
116
+
117
+ </manifest>
@@ -1670,9 +1670,11 @@ public class Expression {
1670
1670
  TableFilter filter = (TableFilter) filters.get(j);
1671
1671
  String filterName = filter.getName();
1672
1672
 
1673
- if (tableName == null || filterName.equals(tableName)) {
1673
+ if (tableName == null || filterName.equalsIgnoreCase(tableName)) {
1674
1674
  Table table = filter.getTable();
1675
1675
  int i = table.findColumn(columnName);
1676
+ if (i == -1)
1677
+ i = table.findColumn(columnNameOrig);
1676
1678
 
1677
1679
  if (i != -1) {
1678
1680
  if (tableName == null) {
@@ -1957,7 +1959,7 @@ public class Expression {
1957
1959
 
1958
1960
  String filterName = f.getName();
1959
1961
 
1960
- if (tableName == null || tableName.equals(filterName)) {
1962
+ if (tableName == null || tableName.equalsIgnoreCase(filterName)) {
1961
1963
  Table table = f.getTable();
1962
1964
  int i = table.findColumn(columnName);
1963
1965
  if (i == -1)
@@ -1,54 +1,54 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>CFBundleURLTypes</key>
6
- <array>
7
- <dict>
8
- <key>CFBundleURLSchemes</key>
9
- <array>
10
- <string>rhodes</string>
11
- </array>
12
- <key>CFBundleURLName</key>
13
- <string>com.rhomobile.rhosyncclient</string>
14
- </dict>
15
- </array>
16
- <key>CFBundleDevelopmentRegion</key>
17
- <string>en</string>
18
- <key>CFBundleDisplayName</key>
19
- <string>Rhodes</string>
20
- <key>CFBundleExecutable</key>
21
- <string>${EXECUTABLE_NAME}</string>
22
- <key>CFBundleIconFile</key>
23
- <string>icon.png</string>
24
- <key>CFBundleIconFiles</key>
25
- <array>
26
- <string>icon57.png</string>
27
- <string>icon72.png</string>
28
- <string>icon114.png</string>
29
- </array>
30
- <key>CFBundleIdentifier</key>
31
- <string>com.rhomobile.rhosyncclient</string>
32
- <key>CFBundleInfoDictionaryVersion</key>
33
- <string>6.0</string>
34
- <key>CFBundleName</key>
35
- <string>${PRODUCT_NAME}</string>
36
- <key>CFBundlePackageType</key>
37
- <string>APPL</string>
38
- <key>CFBundleSignature</key>
39
- <string>????</string>
40
- <key>CFBundleVersion</key>
41
- <string>3.3.3</string>
42
- <key>LSRequiresIPhoneOS</key>
43
- <true/>
44
- <key>UILaunchImageFile</key>
45
- <string>Default</string>
46
- <key>UISupportedInterfaceOrientations</key>
47
- <array>
48
- <string>UIInterfaceOrientationPortrait</string>
49
- <string>UIInterfaceOrientationPortraitUpsideDown</string>
50
- <string>UIInterfaceOrientationLandscapeLeft</string>
51
- <string>UIInterfaceOrientationLandscapeRight</string>
52
- </array>
53
- </dict>
54
- </plist>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleURLTypes</key>
6
+ <array>
7
+ <dict>
8
+ <key>CFBundleURLSchemes</key>
9
+ <array>
10
+ <string>rhodes</string>
11
+ </array>
12
+ <key>CFBundleURLName</key>
13
+ <string>com.rhomobile.rhosyncclient</string>
14
+ </dict>
15
+ </array>
16
+ <key>CFBundleDevelopmentRegion</key>
17
+ <string>en</string>
18
+ <key>CFBundleDisplayName</key>
19
+ <string>Rhodes</string>
20
+ <key>CFBundleExecutable</key>
21
+ <string>${EXECUTABLE_NAME}</string>
22
+ <key>CFBundleIconFile</key>
23
+ <string>icon.png</string>
24
+ <key>CFBundleIconFiles</key>
25
+ <array>
26
+ <string>icon57.png</string>
27
+ <string>icon72.png</string>
28
+ <string>icon114.png</string>
29
+ </array>
30
+ <key>CFBundleIdentifier</key>
31
+ <string>com.rhomobile.rhosyncclient</string>
32
+ <key>CFBundleInfoDictionaryVersion</key>
33
+ <string>6.0</string>
34
+ <key>CFBundleName</key>
35
+ <string>${PRODUCT_NAME}</string>
36
+ <key>CFBundlePackageType</key>
37
+ <string>APPL</string>
38
+ <key>CFBundleSignature</key>
39
+ <string>????</string>
40
+ <key>CFBundleVersion</key>
41
+ <string>3.3.4</string>
42
+ <key>LSRequiresIPhoneOS</key>
43
+ <true/>
44
+ <key>UILaunchImageFile</key>
45
+ <string>Default</string>
46
+ <key>UISupportedInterfaceOrientations</key>
47
+ <array>
48
+ <string>UIInterfaceOrientationPortrait</string>
49
+ <string>UIInterfaceOrientationPortraitUpsideDown</string>
50
+ <string>UIInterfaceOrientationLandscapeLeft</string>
51
+ <string>UIInterfaceOrientationLandscapeRight</string>
52
+ </array>
53
+ </dict>
54
+ </plist>
data/version CHANGED
@@ -1 +1 @@
1
- 3.3.3
1
+ 3.3.4
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: 3.3.3
4
+ version: 3.3.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-22 00:00:00.000000000 Z
12
+ date: 2012-08-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: templater