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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2020-09-21 13:44:54 +0300
committerdartcafe <github@dartcafe.de>2020-09-21 13:44:54 +0300
commit19d189eac812d646e56b31647dae019781eb9427 (patch)
tree51f0b2e5599a699be6aed9b7ce1ef3e6d9979961
parent517170d327d3db30492e1aec5420b4533b462396 (diff)
RC3 - version 1.5.3v1.5.3-RC3
-rw-r--r--CHANGELOG.md10
-rw-r--r--appinfo/info.xml2
-rw-r--r--appinfo/routes.php8
-rw-r--r--package.json2
4 files changed, 12 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 639f5ae4..dcb68b5e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.
+## [1.5.4 - release] - tbd (before 2020-10-03)
+ - adding missing translations
+ - release blocking fixes
+
+## [1.5.3 - RC3] - 2020-09-21
+ - Added setting for defining default view for
+ - text polls, defaults to mobile/list layout and
+ - date polls, defaults to desktop/table layout #744
+ - better UX for site users, which enter a poll via public link and could login #1096
+
## [1.5.2 - RC2] - 2020-09-15
- fixing Translations
- updated dependencies
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 4aaafc77..eb3714f7 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -5,7 +5,7 @@
<name>Polls</name>
<summary>A polls app, similar to doodle/dudle with the possibility to restrict access.</summary>
<description>A polls app, similar to doodle/dudle with the possibility to restrict access (members, certain groups/users, hidden and public).</description>
- <version>1.5.2</version>
+ <version>1.5.3</version>
<licence>agpl</licence>
<author>Vinzenz Rosenkranz</author>
<author>René Gieling</author>
diff --git a/appinfo/routes.php b/appinfo/routes.php
index f4e2d7b4..66313b0a 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -49,13 +49,10 @@ return [
['name' => 'option#confirm', 'url' => '/option/{optionId}/confirm', 'verb' => 'PUT'],
['name' => 'option#sequence', 'url' => '/option/{optionId}/sequence', 'verb' => 'POST'],
['name' => 'option#findCalendarEvents', 'url' => '/option/{optionId}/events', 'verb' => 'GET'],
- // ['name' => 'option#listByToken', 'url' => '/options/get/s/{token}', 'verb' => 'GET'],
['name' => 'vote#set', 'url' => '/vote/set', 'verb' => 'POST'],
['name' => 'vote#setByToken', 'url' => '/vote/set/s', 'verb' => 'POST'],
['name' => 'vote#delete', 'url' => '/votes/delete', 'verb' => 'POST'],
- // ['name' => 'vote#get', 'url' => '/votes/get/{pollId}', 'verb' => 'GET'],
- // ['name' => 'vote#getByToken', 'url' => '/votes/get/s/{token}', 'verb' => 'GET'],
['name' => 'share#add', 'url' => '/share/add', 'verb' => 'POST'],
['name' => 'share#get', 'url' => '/share/{token}', 'verb' => 'GET'],
@@ -70,11 +67,6 @@ return [
['name' => 'comment#add', 'url' => '/comment', 'verb' => 'POST'],
['name' => 'comment#delete', 'url' => '/comment/{commentId}', 'verb' => 'DELETE'],
- // ['name' => 'comment#list', 'url' => '/comments/{pollId}', 'verb' => 'GET'],
- // ['name' => 'comment#getByToken', 'url' => '/comments/s/{token}', 'verb' => 'GET'],
-
- // ['name' => 'acl#getByToken', 'url' => '/acl/get/s/{token}', 'verb' => 'GET'],
- // ['name' => 'acl#get', 'url' => '/acl/get/{id}', 'verb' => 'GET'],
['name' => 'system#get_site_users_and_groups', 'url' => '/siteusers/get', 'verb' => 'POST'],
['name' => 'system#validate_public_username', 'url' => '/check/username', 'verb' => 'POST'],
diff --git a/package.json b/package.json
index f0de3f68..9c42ba1a 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "polls",
"description": "Polls app for nextcloud",
- "version": "1.5.2",
+ "version": "1.5.3",
"authors": [
{
"name": "Vinzenz Rosenkranz",