Update Safari dist
This commit is contained in:
parent
4463b142fc
commit
d651f281d5
|
@ -1,5 +1,5 @@
|
||||||
### v2.0.10
|
### v2.0.10
|
||||||
* Retain slashes in item URL
|
* Retain forward slashes in URLs
|
||||||
* Improve behavior of middle-click
|
* Improve behavior of middle-click
|
||||||
|
|
||||||
### v2.0.9
|
### v2.0.9
|
||||||
|
|
11
README.md
11
README.md
|
@ -16,15 +16,10 @@ Browser extensions (Chrome, Firefox, Opera and Safari) to display GitHub and Git
|
||||||
|
|
||||||
### Install on Safari
|
### 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)
|
* Download the [Safari prebuilt package](https://github.com/buunguyen/octotree/tree/master/dist/safari.safariextz)
|
||||||
* Unzip the package
|
* Double-click or drag it to Safari
|
||||||
* Start Safari
|
|
||||||
* Select `Develop` > `Show Extension Builder`
|
|
||||||
* Click the `+` button and select `Add Extension...`
|
|
||||||
* Select the unzipped "octotree.safariextension" directory
|
|
||||||
* Click `Install`
|
|
||||||
|
|
||||||
### Install prebuilt packages (all browsers)
|
### Install prebuilt packages (all browsers)
|
||||||
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -20,7 +20,7 @@ gulp.task('default', ['build'], () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
gulp.task('dist', ['build'], (cb) => {
|
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) => {
|
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
|
// Helpers
|
||||||
function pipe(src, ...transforms) {
|
function pipe(src, ...transforms) {
|
||||||
return transforms.reduce((stream, transform) => {
|
return transforms.reduce((stream, transform) => {
|
||||||
|
|
Loading…
Reference in New Issue