Bump and release
This commit is contained in:
parent
f2713b4671
commit
4463b142fc
|
@ -1,3 +1,7 @@
|
||||||
|
### v2.0.10
|
||||||
|
* Retain slashes in item URL
|
||||||
|
* Improve behavior of middle-click
|
||||||
|
|
||||||
### v2.0.9
|
### v2.0.9
|
||||||
* Fix bug GitLab: diff box header shows on top of page header
|
* Fix bug GitLab: diff box header shows on top of page header
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -117,7 +117,6 @@ gulp.task('firefox', ['firefox:js'], () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
gulp.task('firefox:xpi', (cb) => {
|
gulp.task('firefox:xpi', (cb) => {
|
||||||
// TODO: https://github.com/mozilla-jetpack/jpm/pull/344
|
|
||||||
$.run('cd ./tmp/firefox && ../../node_modules/.bin/jpm xpi && mkdir -p ../../dist && mv jid1-Om7eJGwA1U8Akg*.xpi ../../dist/firefox.xpi').exec(cb)
|
$.run('cd ./tmp/firefox && ../../node_modules/.bin/jpm xpi && mkdir -p ../../dist && mv jid1-Om7eJGwA1U8Akg*.xpi ../../dist/firefox.xpi').exec(cb)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "octotree",
|
"name": "octotree",
|
||||||
"version": "2.0.9",
|
"version": "2.0.10",
|
||||||
"description": "Code tree for GitHub and GitLab",
|
"description": "Code tree for GitHub and GitLab",
|
||||||
"main": "inject.js",
|
"main": "inject.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "Octotree",
|
"name": "Octotree",
|
||||||
"version": "2.0.9",
|
"version": "2.0.10",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "Buu Nguyen",
|
"author": "Buu Nguyen",
|
||||||
"description": "Code tree for GitHub and GitLab",
|
"description": "Code tree for GitHub and GitLab",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"icon": "resource://jid1-Om7eJGwA1U8Akg-at-jetpack/data/icons/icon48.png",
|
"icon": "resource://jid1-Om7eJGwA1U8Akg-at-jetpack/data/icons/icon48.png",
|
||||||
"icon64": "resource://jid1-Om7eJGwA1U8Akg-at-jetpack/data/icons/icon64.png",
|
"icon64": "resource://jid1-Om7eJGwA1U8Akg-at-jetpack/data/icons/icon64.png",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"version": "2.0.9",
|
"version": "2.0.10",
|
||||||
"permissions": {
|
"permissions": {
|
||||||
"cross-domain-content": ["https://api.github.com", "https://github.com", "https://gitlab.com"],
|
"cross-domain-content": ["https://api.github.com", "https://github.com", "https://gitlab.com"],
|
||||||
"private-browsing": true
|
"private-browsing": true
|
||||||
|
|
|
@ -13,9 +13,9 @@
|
||||||
<key>CFBundleInfoDictionaryVersion</key>
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
<string>6.0</string>
|
<string>6.0</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>2.0.9</string>
|
<string>2.0.10</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>2.0.9</string>
|
<string>2.0.10</string>
|
||||||
<key>Chrome</key>
|
<key>Chrome</key>
|
||||||
<dict/>
|
<dict/>
|
||||||
<key>Content</key>
|
<key>Content</key>
|
||||||
|
|
Loading…
Reference in New Issue