Skip to content
This repository was archived by the owner on May 21, 2024. It is now read-only.

Commit 16e2496

Browse files
committed
Add makefile and upgrate to v0.10.0
1 parent 6d0c06d commit 16e2496

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Changelogs
2+
### v0.10.0
3+
- Change menu generation and handler
4+
- Update calcul and disposition for menus and sub-menus
5+
- Fix selected actions
6+
27
### v0.9.1
38
- Update calcul and disposition
49
- Improve display

Makefile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
app_name=files_rightclick
2+
project_dir=$(CURDIR)/../$(app_name)
3+
build_dir=$(CURDIR)/build
4+
sign_dir=$(build_dir)/artifacts
5+
cert_dir=$(HOME)/.nextcloud/certificates
6+
7+
all: appstore
8+
9+
clean:
10+
rm -rf $(build_dir)
11+
12+
appstore: clean
13+
mkdir -p $(sign_dir)
14+
rsync -a \
15+
--exclude=.* \
16+
--exclude=build \
17+
--exclude=CONTRIBUTING.md \
18+
--exclude=composer.json \
19+
--exclude=composer.lock \
20+
--exclude=composer.phar \
21+
--exclude=l10n/.tx \
22+
--exclude=l10n/no-php \
23+
--exclude=Makefile \
24+
--exclude=screenshots \
25+
--exclude=phpunit*xml \
26+
--exclude=tests \
27+
--exclude=vendor/bin \
28+
$(project_dir) $(sign_dir)
29+
tar -czf $(build_dir)/$(app_name).tar.gz \
30+
-C $(sign_dir) $(app_name)
31+
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64 > $(build_dir)/$(app_name).b64
32+
rm -rf $(build_dir)/artifacts
33+
cat $(build_dir)/$(app_name).b64 \

appinfo/info.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<name>Files Right Click</name>
66
<summary>Add a rightclick menu generator for any Nextcloud apps</summary>
77
<description><![CDATA[This app will allow users but also developers to have a right click menu. Simply use the RightClick object to create quickly and easly menus. Already files app got a right click menu]]></description>
8-
<version>0.9.1</version>
8+
<version>0.10.0</version>
99
<licence>AGPL</licence>
1010
<author mail="[email protected]" homepage="https://github.com/NastuzziSamy/files_rightclick.git">NASTUZZI Samy</author>
1111
<namespace>FilesRightClick</namespace>
12-
<category>files</category>
1312
<category>tools</category>
13+
<category>files</category>
1414
<website>https://github.com/NastuzziSamy/files_rightclick</website>
1515
<repository>https://github.com/NastuzziSamy/files_rightclick</repository>
1616
<bugs>https://github.com/NastuzziSamy/files_rightclick/issues</bugs>

0 commit comments

Comments
 (0)