Bump version

This commit is contained in:
Buu Nguyen 2014-11-20 20:50:51 -08:00
parent 2e8ae69f04
commit 6d8af8e20e
9 changed files with 5 additions and 6 deletions

BIN
dist/chrome.crx vendored

Binary file not shown.

BIN
dist/chrome.zip vendored

Binary file not shown.

BIN
dist/firefox.xpi vendored

Binary file not shown.

BIN
dist/opera.nex vendored

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "Octotree",
"version": "1.4.1",
"version": "1.5.0",
"manifest_version": 2,
"author": "Buu Nguyen",
"description": "Display GitHub code in tree format",

View File

@ -1,7 +1,7 @@
function Storage() {
var cache = this.cache = {}
chrome.storage.onChanged.addListener(function(changes) {
for (key in changes) cache[key] = changes[key].newValue
for (var key in changes) cache[key] = changes[key].newValue
})
}

View File

@ -11,7 +11,7 @@
"icon": "data/icons/icon48.png",
"icon64": "data/icons/icon64.png",
"license": "MIT",
"version": "1.4.1",
"version": "1.5.0",
"permissions": {
"cross-domain-content": ["https://api.github.com", "https://github.com"]
}

View File

@ -13,9 +13,9 @@
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleShortVersionString</key>
<string>1.4.1</string>
<string>1.5.0</string>
<key>CFBundleVersion</key>
<string>1.4.1</string>
<string>1.5.0</string>
<key>Chrome</key>
<dict/>
<key>Content</key>

View File

@ -36,7 +36,6 @@ ErrorView.prototype.show = function(err) {
$submit.show()
$token.show()
$help.show()
console.log('here', token)
if (token) $token.val(token)
}
else {