diff --git a/.gitignore b/.gitignore index ceda28f6..81db4545 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ build/ coverage/ .php_cs.cache vendor +memories.tar.gz diff --git a/appinfo/info.xml b/appinfo/info.xml index 284e1089..5d9cc328 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -11,8 +11,10 @@ * **🤔 Quick Recap**: Jump to anywhere in the timeline instantly. * **🖼️ Albums**: Browse your and shared folders with a similar, efficient timeline. * **🎦 Slideshow**: View photos from your timeline and albums easily. +* **📱 Mobile Support**: Relive your memories on devices of any shape and size through the web app. +* **🗑️ Recycle**: Select and delete multiple photos and videos at once. ]]> - 0.0.1 + 1.0.0 agpl Varun Patil https://github.com/pulsejet/memories diff --git a/bundle.sh b/bundle.sh new file mode 100755 index 00000000..a409362e --- /dev/null +++ b/bundle.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +od=`pwd` + +make build-js-production + +rm -rf /tmp/memories +cp -R . /tmp/memories + +cd /tmp +rm -rf memories.tar.gz +cd memories +git clean -xdf +rm -rf .git .gitignore Makefile package.json package-lock.json phpunit* webpack.js stylelint.config.js tests +rm -rf src js/*.map appinfo/screencap.* +rm -rf *.js .gitignore .npmignore +cd .. + +tar -zvcf memories.tar.gz memories/ +openssl dgst -sha512 -sign ~/.nextcloud/certificates/memories.key memories.tar.gz | openssl base64 +rm -rf memories + +cd $od +mv /tmp/memories.tar.gz .