diff --git a/HISTORY.md b/HISTORY.md index f6c362f..eb04af0 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,5 @@ ### v2.0.10 -* Retain slashes in item URL +* Retain forward slashes in URLs * Improve behavior of middle-click ### v2.0.9 diff --git a/README.md b/README.md index ed63d49..65d3494 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,10 @@ Browser extensions (Chrome, Firefox, Opera and Safari) to display GitHub and Git ### Install on Safari -Octotree is not available on the Safari gallery. Instead, you must use the prebuilt package or build one from source. +Octotree is not available on the Safari gallery. Instead, you must use the prebuilt package or build one from source. Follow the below instructions to install using the prebuilt package. -* Download the [Safari prebuilt package](https://github.com/buunguyen/octotree/tree/master/dist/safari.zip) -* Unzip the package -* Start Safari -* Select `Develop` > `Show Extension Builder` -* Click the `+` button and select `Add Extension...` -* Select the unzipped "octotree.safariextension" directory -* Click `Install` +* Download the [Safari prebuilt package](https://github.com/buunguyen/octotree/tree/master/dist/safari.safariextz) +* Double-click or drag it to Safari ### Install prebuilt packages (all browsers) diff --git a/dist/chrome.crx b/dist/chrome.crx index 0a1f601..6edddfd 100644 Binary files a/dist/chrome.crx and b/dist/chrome.crx differ diff --git a/dist/chrome.zip b/dist/chrome.zip index e3b5f11..9c52bb9 100644 Binary files a/dist/chrome.zip and b/dist/chrome.zip differ diff --git a/dist/firefox.xpi b/dist/firefox.xpi index 09ec00a..6d7ed39 100644 Binary files a/dist/firefox.xpi and b/dist/firefox.xpi differ diff --git a/dist/opera.nex b/dist/opera.nex index 0a1f601..6edddfd 100644 Binary files a/dist/opera.nex and b/dist/opera.nex differ diff --git a/dist/safari.safariextz b/dist/safari.safariextz new file mode 100644 index 0000000..a6d82b1 Binary files /dev/null and b/dist/safari.safariextz differ diff --git a/dist/safari.zip b/dist/safari.zip deleted file mode 100644 index 241e73a..0000000 Binary files a/dist/safari.zip and /dev/null differ diff --git a/gulpfile.babel.js b/gulpfile.babel.js index bebbcc3..32cefd9 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -20,7 +20,7 @@ gulp.task('default', ['build'], () => { }) gulp.task('dist', ['build'], (cb) => { - $.runSequence('firefox:xpi', 'chrome:zip', 'chrome:crx', 'opera:nex', 'safari:zip', cb) + $.runSequence('firefox:xpi', 'chrome:zip', 'chrome:crx', 'opera:nex', cb) }) gulp.task('test', ['build'], (cb) => { @@ -139,14 +139,6 @@ gulp.task('safari', ['safari:js'], () => { ) }) -gulp.task('safari:zip', () => { - return pipe( - './tmp/safari/**/*', - $.zip('safari.zip'), - './dist/' - ) -}) - // Helpers function pipe(src, ...transforms) { return transforms.reduce((stream, transform) => {