Bump version
This commit is contained in:
parent
2e8ae69f04
commit
6d8af8e20e
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -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"]
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue