-
Wekan REST API v7.43
+
Wekan REST API v7.44
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
@@ -16283,7 +16283,8 @@ System.out.println(response.toString());
"soft":
true
},
"color":
"white",
-
"type":
"string"
+
"type":
"string",
+
"collapsed":
true
}
Responses
@@ -17231,7 +17232,8 @@ System.out.println(response.toString());
"color":
"white",
"updatedAt":
"string",
"modifiedAt":
"string",
-
"type":
"string"
+
"type":
"string",
+
"collapsed":
true
}
Responses
@@ -19999,7 +20001,8 @@ UserSecurity
"soft":
true
},
"color":
"white",
-
"type":
"string"
+
"type":
"string",
+
"collapsed":
true
}
@@ -20107,6 +20110,13 @@ UserSecurity
none |
The type of list |
+
+| collapsed |
+boolean |
+true |
+none |
+is the list collapsed |
+
Enumerated Values
@@ -20282,7 +20292,8 @@ UserSecurity
"color":
"white",
"updatedAt":
"string",
"modifiedAt":
"string",
-
"type":
"string"
+
"type":
"string",
+
"collapsed":
true
}
@@ -20369,6 +20380,13 @@ UserSecurity
none |
The type of swimlane |
+
+| collapsed |
+boolean |
+true |
+none |
+is the swimlane collapsed |
+
Enumerated Values
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index b638b2a04..b8d4b96ec 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v7.43
+ version: v7.44
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -3736,6 +3736,10 @@ definitions:
description: |
The type of list
type: string
+ collapsed:
+ description: |
+ is the list collapsed
+ type: boolean
required:
- title
- archived
@@ -3744,6 +3748,7 @@ definitions:
- createdAt
- modifiedAt
- type
+ - collapsed
ListsWiplimit:
type: object
properties:
@@ -3835,6 +3840,10 @@ definitions:
description: |
The type of swimlane
type: string
+ collapsed:
+ description: |
+ is the swimlane collapsed
+ type: boolean
required:
- title
- archived
@@ -3842,3 +3851,4 @@ definitions:
- createdAt
- modifiedAt
- type
+ - collapsed
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 40c767672..62f1fec66 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 = 743,
+ appVersion = 744,
# Increment this for every release.
- appMarketingVersion = (defaultText = "7.43.0~2024-04-18"),
+ appMarketingVersion = (defaultText = "7.44.0~2024-04-26"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 6344b07ce..190d789ea 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '7.43'
+version: '7.44'
base: core20
summary: Open Source kanban
description: |
@@ -170,9 +170,9 @@ parts:
# Cleanup
mkdir .build
cd .build
- wget https://github.com/wekan/wekan/releases/download/v7.43/wekan-7.43-amd64.zip
- unzip wekan-7.43-amd64.zip
- rm wekan-7.43-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v7.44/wekan-7.44-amd64.zip
+ unzip wekan-7.44-amd64.zip
+ rm wekan-7.44-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf