Skip to content

Commit

Permalink
Adapt to NC 28
Browse files Browse the repository at this point in the history
Signed-off-by: Louis Chemineau <louis@chmn.me>
  • Loading branch information
artonge committed Dec 11, 2023
1 parent 2cbe307 commit 99d3d7f
Show file tree
Hide file tree
Showing 11 changed files with 21,817 additions and 75 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
js
node_modules
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package_name=$(app_name)
cert_dir=$(CURDIR)/../../key
version+=0.0.30

all: appstore
all: build-front appstore

release: appstore create-tag

Expand All @@ -20,6 +20,10 @@ create-tag:
clean:
rm -rf $(build_dir)

build-front:
npm ci
npm rn build

appstore: clean
mkdir -p $(sign_dir)
rsync -a \
Expand Down
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<screenshot small-thumbnail="https://raw.githubusercontent.com/ACTom/files_mindmap/master/screenshots/2-small.png">https://raw.githubusercontent.com/ACTom/files_mindmap/master/screenshots/2.png</screenshot>
<screenshot small-thumbnail="https://raw.githubusercontent.com/ACTom/files_mindmap/master/screenshots/3-small.png">https://raw.githubusercontent.com/ACTom/files_mindmap/master/screenshots/3.png</screenshot>
<dependencies>
<nextcloud min-version="20" max-version="28"/>
<nextcloud min-version="28" max-version="28"/>
</dependencies>
<repair-steps>
<install>
Expand Down
13 changes: 0 additions & 13 deletions js/jszip.js

This file was deleted.

3 changes: 1 addition & 2 deletions lib/Listener/LoadAdditionalScripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public function handle(Event $event): void {

public static function additionalScripts() {
Util::addStyle(Application::APPNAME, 'style');
Util::addScript(Application::APPNAME, 'jszip');
Util::addScript(Application::APPNAME, 'mindmap');
Util::addScript(Application::APPNAME, 'files_mindmap-mindmap');
}
}

0 comments on commit 99d3d7f

Please sign in to comment.