Skip to content

Commit

Permalink
Changelog and typo fix
Browse files Browse the repository at this point in the history
Signed-off-by: dartcafe <github@dartcafe.de>
  • Loading branch information
dartcafe committed Oct 15, 2023
1 parent cccae7c commit 0339844
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ All notable changes to this project will be documented in this file.
- Fixed granting admin rights to shares
- Fixed a bug, where exports were prevented
- Fixed a visually bug when using Nextcloud's Dark Mode
- Fixed result reporting about sent and failed confirmation mails
### New
- Reveal hidden voters if hidden in case of performance concerns
- Support better readability of vote page
- Added revoking of shares
- Shares can now be locked which works as a read only share mechanism. Locked shares can still enter the poll, but every interaction (voting and commenting) is disabled.
- Deletion of locked shares deletes the users votes as well
- Moved request for option proposals to a card on top of the vote page
- Moved CTA for confirmation mails to card on top of the vote page
- Added a card with a more prominent hint for closed polls

### Changes
- Improved username check for public polls with a large number of groups in the backend
## [5.3.2] - 2023-09-11
Expand Down
2 changes: 1 addition & 1 deletion src/js/views/Vote.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<CardDiv v-if="acl.allowAddOptions && proposalsOpen && !closed" type="success">
{{ t('polls', 'You are asked to propose more options. ') }}
<p v-if="proposalsExpirySet && !proposalsExpired">
{{ t('polls', 'The proposal period ends {timeRelative}', { timeRelative: proposalsExpireRelative }) }}
{{ t('polls', 'The proposal period ends {timeRelative}.', { timeRelative: proposalsExpireRelative }) }}
</p>
<OptionProposals v-if="poll.type === 'textPoll'" />
<template #button>
Expand Down

0 comments on commit 0339844

Please sign in to comment.