rhodes 1.5.3 → 1.5.4

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.5.4
2
+ * Fix issue #3132788 - rake clean:iphone fails
3
+
1
4
  == 1.5.3
2
5
  * Fix issue #2980590 - iphone: call NetRequest from toolbar
3
6
  * Fix issue #3104338 - rake run:iphone doesn't install into iphone sdk 3.2
@@ -1,9 +1,9 @@
1
1
  module Rhodes
2
2
  unless defined? Rhodes::VERSION
3
- VERSION = '1.5.3'
3
+ VERSION = '1.5.4'
4
4
  end
5
5
  unless defined? Rhodes::DBVERSION
6
- DBVERSION = '1.5.3'
6
+ DBVERSION = '1.5.4'
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.5.3'
3
+ VERSION = '1.5.4'
4
4
  end
5
5
  unless defined? RhodesFramework::DBVERSION
6
- DBVERSION = '1.5.3'
6
+ DBVERSION = '1.5.4'
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.5.3'
3
+ VERSION = '1.5.4'
4
4
  end
5
5
  unless defined? Rhodes::DBVERSION
6
- DBVERSION = '1.5.3'
6
+ DBVERSION = '1.5.4'
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="22"
5
- android:versionName="1.5.3">
4
+ android:versionCode="23"
5
+ android:versionName="1.5.4">
6
6
  <uses-sdk android:minSdkVersion="3" />
7
7
  <application android:icon="@drawable/icon"
8
8
  android:multiprocess="true"
@@ -21,7 +21,7 @@
21
21
  <key>CFBundleSignature</key>
22
22
  <string>????</string>
23
23
  <key>CFBundleVersion</key>
24
- <string>1.5.3</string>
24
+ <string>1.5.4</string>
25
25
  <key>LSRequiresIPhoneOS</key>
26
26
  <true/>
27
27
  </dict>
@@ -347,7 +347,7 @@ namespace "clean" do
347
347
 
348
348
  while found do
349
349
  found = false
350
- Find.find($simapp) do |path|
350
+ Find.find($simdir) do |path|
351
351
  if File.basename(path) == "rhorunner.app"
352
352
  $guid = File.basename(File.dirname(path))
353
353
  found = true
@@ -355,9 +355,12 @@ namespace "clean" do
355
355
  end
356
356
 
357
357
  if found
358
- $simrhodes = File.join($simapp,$guid)
359
- rm_rf $simrhodes
360
- rm_rf $simrhodes + ".sb"
358
+ Dir.glob($simdir + '*').each do |sdk|
359
+ simapp = sdk + "/Applications"
360
+ simrhodes = File.join(simapp,$guid)
361
+ rm_rf simrhodes
362
+ rm_rf simrhodes + ".sb"
363
+ end
361
364
  end
362
365
  end
363
366
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 5
8
- - 3
9
- version: 1.5.3
8
+ - 4
9
+ version: 1.5.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - Rhomobile