Update Safari dist

This commit is contained in:
Buu Nguyen 2016-05-17 20:26:17 -07:00
parent 4463b142fc
commit d651f281d5
9 changed files with 5 additions and 18 deletions

View File

@ -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

View File

@ -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)

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.

BIN
dist/safari.safariextz vendored Normal file

Binary file not shown.

BIN
dist/safari.zip vendored

Binary file not shown.

View File

@ -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) => {