diff --git a/README.md b/README.md index 1171f77f..d695d0a6 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,9 @@ Full node install description: https://raspberrypi.stackexchange.com/questions/4 ### Install PiGallery2 ```bash cd ~ -wget https://github.com/bpatrik/pigallery2/archive/1.0.0-beta.0.tar.gz -tar -xzvf 1.0.0-beta.0.tar.gz -cd PiGallery2-1.0.0-beta.0 +wget https://github.com/bpatrik/pigallery2/releases/download/1.0.0-beta.3/pigallery2.zip +tar -xzvf pigallery2.zip +unzip pigallery2 npm install npm run build ``` @@ -66,7 +66,7 @@ To configure it. Run `PiGallery2` first to create `config.json` file, then edit * keyboard support for navigation * showing low-res thumbnail while full image loads * Information panel for showing **Exif info** - * Automatic playing - `In progress` + * Automatic playing * Client side caching (directories and search results) * Rendering **photos** with GPS coordinates **on google map** * .gpx file support - `future plan` diff --git a/gulpfile.js b/gulpfile.js index 82ad6724..37e5db2c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -46,7 +46,7 @@ gulp.task('copy-package', function () { gulp.task('zip-release', function () { - return gulp.src(['release/*'], {base: "."}) + return gulp.src(['release/**/*'], {base: "./release"}) .pipe(zip('pigallery2.zip')) .pipe(gulp.dest('.')); });