Merge pull request #907 from nextcloud/nextcloud/0.12.0
Bump version and update changelog
This commit is contained in:
commit
c91f52d428
4 changed files with 39 additions and 4 deletions
35
CHANGELOG.md
35
CHANGELOG.md
|
@ -1,3 +1,38 @@
|
|||
## 0.12.0 - 2020-03-08
|
||||
|
||||
### Added
|
||||
- Properly show all tasks matching a collection (including subtasks) #83 #431
|
||||
- Implement pinning a task, works with [OpenTasks](https://github.com/dmfs/opentasks) #695
|
||||
- Allow to set task status #655
|
||||
- Save last value of all-day setting and apply to new dates #657
|
||||
- Load tasks from server if not found locally #608
|
||||
- Adjust sort-order dropdown style #736
|
||||
- Navigate to newly created calendar after creation #825
|
||||
- Allow strike-through and italic in notes field #682 #702
|
||||
- Use new icons for start and due date in details view #865
|
||||
- Show user avatars for shared lists and in share view #862
|
||||
- Move task body actions into dropdown #866
|
||||
- Move to Github actions #844
|
||||
- Move app-navigation to vue-components #818
|
||||
- Remove padding on content area for small screens #900
|
||||
- Updated translations
|
||||
- Updated dependencies
|
||||
- Code cleanup #632 #696 #698 #712 #713 #721 #722 #723 #843 #846 #853 #868
|
||||
|
||||
### Fixed
|
||||
- Regression: Don't open detail view when toggling completed state #681
|
||||
- Prevent editing non-public tasks in lists shared with me #862
|
||||
- Prevent moving non-public tasks to lists shared with me #902
|
||||
- Increase size of clickable area to 44x44 px to follow Nextcloud standard #734 #735
|
||||
- Fix color of checked checkboxes in dark mode #679
|
||||
- Fix error when clicking successful sync status #699
|
||||
- Prevent adding a sharee twice #782
|
||||
- Set primary color on default calendar creation #839
|
||||
- Fix issues with very long task titles #840
|
||||
- Prevent read-only calendars as default calendar #841
|
||||
- Hide superfluous scrollbar in task list #842
|
||||
- Better handle calendars without assigned color #904
|
||||
|
||||
## 0.11.3 - 2019-09-17
|
||||
|
||||
### Added
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<name>Tasks</name>
|
||||
<summary>The Tasks app for Nextcloud</summary>
|
||||
<description><![CDATA[Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar.]]></description>
|
||||
<version>0.11.3</version>
|
||||
<version>0.12.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="raimund.schluessler@mailbox.org">Raimund Schlüßler</author>
|
||||
<namespace>Tasks</namespace>
|
||||
|
@ -20,7 +20,7 @@
|
|||
<repository>https://github.com/nextcloud/tasks.git</repository>
|
||||
<screenshot>https://raw.githubusercontent.com/nextcloud/tasks/master/screenshots/tasks-1.png</screenshot>
|
||||
<dependencies>
|
||||
<nextcloud min-version="15" max-version="19"/>
|
||||
<nextcloud min-version="16" max-version="19"/>
|
||||
</dependencies>
|
||||
<navigations>
|
||||
<navigation>
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tasks",
|
||||
"version": "0.11.3",
|
||||
"version": "0.12.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "tasks",
|
||||
"description": "Nextcloud - Tasks",
|
||||
"version": "0.11.3",
|
||||
"version": "0.12.0",
|
||||
"author": {
|
||||
"name": "Raimund Schlüßler",
|
||||
"email": "raimund.schluessler@mailbox.org"
|
||||
|
|
Loading…
Reference in a new issue