choctop 0.9.1 → 0.9.2

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.
@@ -1,3 +1,7 @@
1
+ == 0.9.2 2009-01-29
2
+
3
+ * fixed instances of "SUFeedURLKey" to "SUFeedURL" due to f@#$-up error message in Sparkle code that led me astray
4
+
1
5
  == 0.9.1 2009-01-29
2
6
 
3
7
  * default DMG theme is a sky background and plain volume icon
@@ -24,7 +24,7 @@
24
24
  <string>MainMenu</string>
25
25
  <key>NSPrincipalClass</key>
26
26
  <string>NSApplication</string>
27
- <key>SUFeedURLKey</key>
27
+ <key>SUFeedURL</key>
28
28
  <string>http://mocra.com/sample_app/my_feed.xml</string>
29
29
  </dict>
30
30
  </plist>
@@ -9,7 +9,7 @@ require "active_support"
9
9
  require "osx/cocoa"
10
10
 
11
11
  class ChocTop
12
- VERSION = '0.9.1'
12
+ VERSION = '0.9.2'
13
13
 
14
14
  # The name of the Cocoa application
15
15
  # Default: info_plist['CFBundleExecutable']
@@ -121,7 +121,7 @@ class ChocTop
121
121
  @name = info_plist['CFBundleExecutable']
122
122
  @version = info_plist['CFBundleVersion']
123
123
  @target = "#{name}.app"
124
- @appcast_filename = info_plist['SUFeedURLKey'] ? File.basename(info_plist['SUFeedURLKey']) : 'linker_appcast.xml'
124
+ @appcast_filename = info_plist['SUFeedURL'] ? File.basename(info_plist['SUFeedURL']) : 'linker_appcast.xml'
125
125
  @release_notes = 'release_notes.html'
126
126
  @rsync_args = '-aCv'
127
127
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: choctop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr Nic Williams