mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50:13 +01:00
v4.04
This commit is contained in:
parent
055b528532
commit
863f0fc5db
7 changed files with 343 additions and 333 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
# Upcoming Wekan release
|
# v4.04 2020-05-24 Wekan release
|
||||||
|
|
||||||
This release adds the following features:
|
This release adds the following features:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
||||||
appVersion: "v4.03.0"
|
appVersion: "v4.04.0"
|
||||||
files:
|
files:
|
||||||
userUploads:
|
userUploads:
|
||||||
- README.md
|
- README.md
|
||||||
|
|
|
||||||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "wekan",
|
"name": "wekan",
|
||||||
"version": "v4.03.0",
|
"version": "v4.04.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "wekan",
|
"name": "wekan",
|
||||||
"version": "v4.03.0",
|
"version": "v4.04.0",
|
||||||
"description": "Open-Source kanban",
|
"description": "Open-Source kanban",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
||||||
swagger: '2.0'
|
swagger: '2.0'
|
||||||
info:
|
info:
|
||||||
title: Wekan REST API
|
title: Wekan REST API
|
||||||
version: v4.03
|
version: v4.04
|
||||||
description: |
|
description: |
|
||||||
The REST API allows you to control and extend Wekan with ease.
|
The REST API allows you to control and extend Wekan with ease.
|
||||||
|
|
||||||
|
|
@ -797,8 +797,8 @@ paths:
|
||||||
200 response
|
200 response
|
||||||
/api/boards/{board}/export:
|
/api/boards/{board}/export:
|
||||||
get:
|
get:
|
||||||
operationId: exportJson
|
operationId: export
|
||||||
summary: This route is used to export the board to a json file format.
|
summary: This route is used to export the board.
|
||||||
description: |
|
description: |
|
||||||
If user is already logged-in, pass loginToken as param
|
If user is already logged-in, pass loginToken as param
|
||||||
"authToken": '/api/boards/:boardId/export?authToken=:token'
|
"authToken": '/api/boards/:boardId/export?authToken=:token'
|
||||||
|
|
@ -2079,6 +2079,8 @@ definitions:
|
||||||
- relax
|
- relax
|
||||||
- corteza
|
- corteza
|
||||||
- clearblue
|
- clearblue
|
||||||
|
- natural
|
||||||
|
- modern
|
||||||
description:
|
description:
|
||||||
description: |
|
description: |
|
||||||
The description of the board
|
The description of the board
|
||||||
|
|
|
||||||
|
|
@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
|
||||||
appTitle = (defaultText = "Wekan"),
|
appTitle = (defaultText = "Wekan"),
|
||||||
# The name of the app as it is displayed to the user.
|
# The name of the app as it is displayed to the user.
|
||||||
|
|
||||||
appVersion = 403,
|
appVersion = 404,
|
||||||
# Increment this for every release.
|
# Increment this for every release.
|
||||||
|
|
||||||
appMarketingVersion = (defaultText = "4.03.0~2020-05-16"),
|
appMarketingVersion = (defaultText = "4.04.0~2020-05-24"),
|
||||||
# Human-readable presentation of the app version.
|
# Human-readable presentation of the app version.
|
||||||
|
|
||||||
minUpgradableAppVersion = 0,
|
minUpgradableAppVersion = 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue