Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/bookmarks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2020-09-30 13:26:49 +0300
committerMarcel Klehr <mklehr@gmx.net>2020-09-30 13:27:16 +0300
commit22f2f157e980f815911f2a757431a8dbf2b003cc (patch)
tree9025785b92aed9e93e0830f41ab12d221aff9c16
parent7ee8bb487443583429b9ecc4a1c1bd6ebfc6cdd2 (diff)
v3.4.1v3.4.1
-rw-r--r--CHANGELOG.md9
-rw-r--r--Makefile5
-rw-r--r--appinfo/info.xml2
-rw-r--r--package.json2
4 files changed, 13 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3be28feb..7f9e8cb1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [3.4.1] - 2020-09-30
+
+### Fixed
+- Remove legacy files
+
## [3.4.0] - 2020-09-29
### Fixed
@@ -384,7 +389,9 @@ Supported are NC 15 and 16, provided you are using PHP v7.1 and have gmp, intl a
- FIX folder collapse css
- FIX: Speed up findBookmarks SQL query
-[3.4.0-beta.1]: https://github.com/nextcloud/bookmarks/compare/v3.3.4...v3.4.0
+[3.4.1]: https://github.com/nextcloud/bookmarks/compare/v3.4.0...v3.4.1
+[3.4.0]: https://github.com/nextcloud/bookmarks/compare/v3.3.4...v3.4.0
+[3.4.0-beta.1]: https://github.com/nextcloud/bookmarks/compare/v3.3.4...v3.4.0-beta.1
[3.3.3]: https://github.com/nextcloud/bookmarks/compare/v3.3.2...v3.3.3
[3.3.2]: https://github.com/nextcloud/bookmarks/compare/v3.3.1...v3.3.2
[3.3.1]: https://github.com/nextcloud/bookmarks/compare/v3.3.0...v3.3.1
diff --git a/Makefile b/Makefile
index 59625783..8b860eab 100644
--- a/Makefile
+++ b/Makefile
@@ -7,9 +7,9 @@ source_dir=$(build_dir)/source
sign_dir=$(build_dir)/sign
package_name=$(app_name)
cert_dir=$(HOME)/.nextcloud/certificates
-version+=3.4.0
+version+=3.4.1
-all: dev-setup build-js-production test test-php
+all: dev-setup build-js-production
release: appstore create-tag
@@ -53,6 +53,7 @@ stylelint-fix:
# Cleaning
clean:
rm -rf js
+ rm -rf $(sign_dir)
clean-dev:
rm -rf node_modules
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 16361c52..268d91c1 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -17,7 +17,7 @@ Requirements:
- mbstring: *
- Nextcloud v18+
]]></description>
- <version>3.4.0</version>
+ <version>3.4.1</version>
<licence>agpl</licence>
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>
<author mail="mklehr@gmx.net">Marcel Klehr</author>
diff --git a/package.json b/package.json
index 31ecb888..91aae361 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bookmarks",
- "version": "3.4.0",
+ "version": "3.4.1",
"main": "js/index.js",
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.js",