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

Commit ed0bd03

Browse files
committed
Bump version to 0.15.0 and fix multiple issues + add translations
Signed-off-by: NastuzziSamy <[email protected]>
1 parent 5c238dc commit ed0bd03

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
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+
## 0.15.0
3+
- Add multiple translations thanks to Transifex
4+
- RightClick does no more load in log in screen.
5+
- Fix IE11 incompatibily
6+
27
## 0.14.2
38
- Keys are handled when right clicking. By default, the right click menu does not show up if a mod key is pressed (ctrl, shift, alt).
49
- Allow developer to use the regular right click (https://github.com/nextcloud/files_rightclick/issues/59 thanks to @juliushaertl)

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,16 @@ appstore: clean
4949
--exclude=tests \
5050
--exclude=vendor/bin \
5151
$(project_dir) $(sign_dir)
52+
5253
sed -i '/default_enable/d' $(sign_dir)/$(app_name)/appinfo/info.xml
54+
55+
../../occ integrity:sign-app --path $(sign_dir)/$(app_name) \
56+
--privateKey $(cert_dir)/$(app_name).key \
57+
--certificate $(cert_dir)/$(app_name).crt; \
58+
5359
tar -czf $(build_dir)/$(app_name).tar.gz \
5460
-C $(sign_dir) $(app_name)
61+
5562
openssl dgst -sha512 -sign $(cert_dir)/$(app_name).key $(build_dir)/$(app_name).tar.gz | openssl base64 > $(build_dir)/$(app_name).b64
5663
rm -rf $(build_dir)/artifacts
5764
cat $(build_dir)/$(app_name).b64

appinfo/info.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<name>Right click</name>
55
<summary>Right click menu for Nextcloud</summary>
66
<description><![CDATA[This app allows users and developers to have a right click menu. Simply use the RightClick object to quickly create context menus. The Files app already shows the actions menu when right clicking on files and folders.]]></description>
7-
<version>0.14.2</version>
8-
<licence>AGPL</licence>
7+
<version>0.15.0</version>
8+
<licence>agpl</licence>
99
<author mail="[email protected]" homepage="https://samy.nastuzzi.fr">NASTUZZI Samy</author>
1010
<namespace>FilesRightClick</namespace>
1111
<category>tools</category>
1212
<category>files</category>
1313
<website>https://github.com/nextcloud/files_rightclick</website>
14-
<repository>https://github.com/nextcloud/files_rightclick</repository>
14+
<discussion>https://github.com/nextcloud/files_rightclick</discussion>
1515
<bugs>https://github.com/nextcloud/files_rightclick/issues</bugs>
16-
<documentation>https://github.com/nextcloud/files_rightclick</documentation>
16+
<repository>https://github.com/nextcloud/files_rightclick</repository>
1717
<screenshot>https://raw.githubusercontent.com/nextcloud/files_rightclick/master/screenshots/picture.png</screenshot>
1818
<dependencies>
1919
<nextcloud min-version="14" max-version="17" />

0 commit comments

Comments
 (0)