Skip to content

Commit

Permalink
Version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
doublerebel committed Sep 19, 2013
1 parent af48068 commit 73956d9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### **Tiger** 0.1.3 by Charles Phillips
### **Tiger** 0.2.1 by Charles Phillips

**TigerJS** is an expanded port of the popular single-page webapp framework, [SpineJS](https://github.com/spine/spine). *(Spine is similar to Backbone, although I find it to be more simple, and therefore more flexible and more powerful.)* Rather than "reinventing the wheel", **TigerJS** builds on production-ready, battle-tested code that has launched countless apps across tech.

Expand Down
2 changes: 1 addition & 1 deletion lib/tiger.db.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/tiger.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tiger",
"version": "0.2.0",
"version": "0.2.1",
"description": "A full port of Spine.js MVC framework to Titanium Mobile, with enhancements",
"main": "./lib/tiger.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/tiger.coffee
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tiger 0.1.4 by Charles Phillips <[email protected]>
# Tiger 0.2.1 by Charles Phillips <[email protected]>
# A library enhancing Titanium apps with Spine's MVC architecture
# Uses CoffeeScript's inheritance, and adds jQuery-like chainability
# Add tiger.db for persistent storage
Expand Down Expand Up @@ -385,7 +385,7 @@ class Element extends Module
Tiger = @Tiger = {}
module?.exports = Tiger

Tiger.version = '0.1.4'
Tiger.version = '0.2.1'
Tiger.extend = extend
Tiger.makeArray = makeArray
Tiger.isArray = Spine.isArray
Expand Down
4 changes: 2 additions & 2 deletions src/tiger.db.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Version a02 Rev. 15th Oct 2008
TigerDB by Charles Phillips <[email protected]>
Designed for Tiger for Spine on Titanium 0.0.2
Designed for Tiger for Spine on Titanium 0.0.2+
Persistent storage through Titanium's SQLite DB
Based on javascript-client-side-sqlite3-wrapper
Expand Down Expand Up @@ -266,4 +266,4 @@ Model.TigerDB =


Tiger.DB = TigerDB
module?.exports = TigerDB
module?.exports = TigerDB

0 comments on commit 73956d9

Please sign in to comment.