Skip to content

Commit

Permalink
fix a bug in the plain allocation freeing method
Browse files Browse the repository at this point in the history
  • Loading branch information
henderea committed Jul 24, 2014
1 parent 4967da7 commit 44e31dd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ A RubyMotion application for keeping memory usage in check. Shows up in the men
* **v0.7.1:** hopefully decrease the amount of memory leaking
* **v0.7.2:** change to a paid app
* **v0.7.3:** add registration submenu
* **v0.7.4:** fix a bug in the plain allocation freeing method

###Versions (code-signed with developer ID):
* **v0.3:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.3> (Mavericks-only)
Expand All @@ -34,4 +35,6 @@ A RubyMotion application for keeping memory usage in check. Shows up in the men
* **v0.6.2:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.6.2>
* **v0.7:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7>
* **v0.7.1:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.1>
* **v0.7.2:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.2>
* **v0.7.2:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.2>
* **v0.7.3:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.3>
* **v0.7.4:** <https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.4>
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Motion::Project::App.setup do |app|
app.icon = 'Icon.icns'
app.info_plist['CFBundleIconFile'] = 'Icon.icns'
app.name = 'MemoryTamer'
app.version = '0.7.3'
app.short_version = '0.7.3'
app.version = '0.7.4'
app.short_version = '0.7.4'
app.identifier = 'us.myepg.MemoryTamer'
app.info_plist['NSUIElement'] = 1
app.info_plist['SUFeedURL'] = 'https://raw.githubusercontent.com/henderea/MemoryTamer/master/appcast.xml'
Expand Down
2 changes: 1 addition & 1 deletion app/app_delegate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def free_mem(pressure)

def free_mem_old
mtf = get_free_mem(true)
NSLog mtf
NSLog "#{mtf}"
ep = NSBundle.mainBundle.pathForResource('inactive', ofType: '')
op = `'#{ep}' '#{mtf}'`
NSLog op
Expand Down
9 changes: 9 additions & 0 deletions appcast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
<link>https://raw.githubusercontent.com/henderea/MemoryTamer/master/appcast.xml</link>
<description>Most recent changes with links to updates.</description>
<language>en</language>
<item>
<title>Version 0.7.4</title>
<sparkle:releaseNotesLink>
http://releases.io/henderea/MemoryTamer/0.7.4?heading=true
</sparkle:releaseNotesLink>
<pubDate>Thu, 24 Jul 2014 16:35:00 -0400</pubDate>
<enclosure url="https://myepg-ds.s3.amazonaws.com/MemoryTamer-0.7.4/MemoryTamer-0.7.4.zip" sparkle:version="0.7.4" length="4776863" type="application/octet-stream" />
<sparkle:minimumSystemVersion>10.7</sparkle:minimumSystemVersion>
</item>
<item>
<title>Version 0.7.3</title>
<sparkle:releaseNotesLink>
Expand Down

0 comments on commit 44e31dd

Please sign in to comment.