Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt to NC 28 #190

Merged
merged 1 commit into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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 run 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');
}
}