Skip to content

Commit

Permalink
bump dev version
Browse files Browse the repository at this point in the history
Signed-off-by: Jo Van Bulck <jo.vanbulck@cs.kuleuven.be>
  • Loading branch information
jovanbulck committed Nov 16, 2024
1 parent f0e5c80 commit 6337424
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Memories is a *batteries-included* photo management solution for Nextcloud with
1. Run `php occ memories:index` to generate metadata indices for existing photos.
1. Open the 📷 Memories app in Nextcloud and set the directory containing your photos.
]]></description>
<version>7.4.1.51</version>
<version>7.4.1.52</version>
<licence>agpl</licence>
<author mail="radialapps@gmail.com">Varun Patil</author>
<namespace>Memories</namespace>
Expand Down
24 changes: 24 additions & 0 deletions scripts/install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/bin/bash

# Fail on error
set -xe

# Source directory
src=`pwd`

# Copy source files to temp
rm -rf /tmp/memories
mkdir -p /tmp/memories
cp -R appinfo l10n img js lib templates COPYING README.md CHANGELOG.md exiftest* composer* /tmp/memories

# Cleanup
pushd /tmp
rm -rf memories.tar.gz

# Bundle app
tar --no-same-owner -p -zcf memories.tar.gz memories/
rm -rf memories/

# Upload to server
scp /tmp/memories.tar.gz nc:~/
ssh -t nc ~/server/scripts/install_memories.sh

0 comments on commit 6337424

Please sign in to comment.