Wekan REST API v5.58
+Wekan REST API v5.59
@@ -3568,6 +3568,7 @@ System.out.println(response.toString()); "allowsEndDate": true, "allowsDueDate": true, "presentParentTask": "prefix-with-full-path", + "receivedAt": "string", "startAt": "string", "dueAt": "string", "endAt": "string", @@ -10426,6 +10427,7 @@ Accept: application/json "showOnCard": true, "automaticallyOnCard": true, "showLabelOnMiniCard": true, + "showSumAtTopOfList": true, "authorId": "string" }'; const headers = { @@ -10455,6 +10457,7 @@ fetch('/api/boards/{board}/custom-fields'"showOnCard": true, "automaticallyOnCard": true, "showLabelOnMiniCard": true, + "showSumAtTopOfList": true, "authorId": "string" }; const headers = { @@ -10581,6 +10584,7 @@ System.out.println(response.toString()); showOnCard: true automaticallyOnCard: true showLabelOnMiniCard: true +showSumAtTopOfList: true authorId: string @@ -10653,6 +10657,13 @@ System.out.println(response.toString());Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
Parameters
@@ -11223,6 +11237,13 @@ System.out.println(response.toString());@@ -18362,6 +18383,7 @@ UserSecurity "allowsEndDate": true, "allowsDueDate": true, "presentParentTask": "prefix-with-full-path", + "receivedAt": "string", "startAt": "string", "dueAt": "string", "endAt": "string", @@ -18652,6 +18674,13 @@ UserSecurityControls how to present the parent task:
-prefix-with-full-path: add a prefix with the full path
-prefix-with-parent: add a prefisx with the parent name
-subtext-with-full-path: add a subtext with the full path
-subtext-with-parent: add a subtext with the parent name
-no-parent: does not show the parent at all+ +receivedAt +string¦null +false +none +Date the card was received +startAt string¦null false @@ -20109,6 +20138,7 @@ UserSecurity "automaticallyOnCard": true, "alwaysOnCard": true, "showLabelOnMiniCard": true, + "showSumAtTopOfList": true, "createdAt": "string", "modifiedAt": "string" } @@ -20184,6 +20214,13 @@ UserSecurityshould the label of the custom field be shown on minicards? + +showSumAtTopOfList +boolean +true +none +should the sum of the custom fields be shown at top of list? +createdAt string¦null false diff --git a/public/api/wekan.yml b/public/api/wekan.yml index 98b32492a..f4fd4e4ef 100644 --- a/public/api/wekan.yml +++ b/public/api/wekan.yml @@ -1,7 +1,7 @@ swagger: '2.0' info: title: Wekan REST API - version: v5.58 + version: v5.59 description: | The REST API allows you to control and extend Wekan with ease. @@ -960,6 +960,12 @@ paths: should the label of the custom field be shown on minicards? type: boolean required: true + - name: showSumAtTopOfList + in: formData + description: | + should the sum of the custom fields be shown at top of list? + type: boolean + required: true - name: authorId in: formData description: the authorId value @@ -1068,6 +1074,12 @@ paths: should the label of the custom field be shown on minicards type: boolean required: true + - name: showSumAtTopOfList + in: formData + description: | + should the sum of the custom fields be shown at top of list + type: boolean + required: true - name: board in: path description: the board value @@ -2839,6 +2851,11 @@ definitions: - subtext-with-parent - no-parent x-nullable: true + receivedAt: + description: | + Date the card was received + type: string + x-nullable: true startAt: description: | Starting date of the board. @@ -3519,6 +3536,10 @@ definitions: description: | should the label of the custom field be shown on minicards? type: boolean + showSumAtTopOfList: + description: | + should the sum of the custom fields be shown at top of list? + type: boolean createdAt: type: string x-nullable: true @@ -3533,6 +3554,7 @@ definitions: - automaticallyOnCard - alwaysOnCard - showLabelOnMiniCard + - showSumAtTopOfList - modifiedAt CustomFieldsSettings: type: object diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index c4ff8bb14..fb6dd7c62 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 558, + appVersion = 559, # Increment this for every release. - appMarketingVersion = (defaultText = "5.58.0~2021-09-01"), + appMarketingVersion = (defaultText = "5.59.0~2021-09-17"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/snapcraft.yaml b/snapcraft.yaml index acd306ba0..3081022a7 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: wekan -version: '5.58' +version: '5.59' summary: The open-source kanban description: | Wekan is an open-source and collaborative kanban board application.