mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
v4.02
This commit is contained in:
parent
3bdeaaf552
commit
4879df0244
7 changed files with 347 additions and 335 deletions
|
@ -1,4 +1,4 @@
|
|||
# Upcoming Wekan release
|
||||
# v4.02 2020-05-15 Wekan release
|
||||
|
||||
This release adds the following server platforms:
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
||||
appVersion: "v4.01.0"
|
||||
appVersion: "v4.02.0"
|
||||
files:
|
||||
userUploads:
|
||||
- README.md
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "v4.01.0",
|
||||
"version": "v4.02.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "v4.01.0",
|
||||
"version": "v4.02.0",
|
||||
"description": "Open-Source kanban",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
swagger: '2.0'
|
||||
info:
|
||||
title: Wekan REST API
|
||||
version: v4.01
|
||||
version: v4.02
|
||||
description: |
|
||||
The REST API allows you to control and extend Wekan with ease.
|
||||
|
||||
|
@ -797,8 +797,8 @@ paths:
|
|||
200 response
|
||||
/api/boards/{board}/export:
|
||||
get:
|
||||
operationId: export
|
||||
summary: This route is used to export the board.
|
||||
operationId: exportJson
|
||||
summary: This route is used to export the board to a json file format.
|
||||
description: |
|
||||
If user is already logged-in, pass loginToken as param
|
||||
"authToken": '/api/boards/:boardId/export?authToken=:token'
|
||||
|
@ -2565,9 +2565,12 @@ definitions:
|
|||
type: string
|
||||
public:
|
||||
type: boolean
|
||||
allowNonBoardMembers:
|
||||
type: boolean
|
||||
required:
|
||||
- question
|
||||
- public
|
||||
- allowNonBoardMembers
|
||||
CardsCustomfields:
|
||||
type: object
|
||||
ChecklistItems:
|
||||
|
|
|
@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
|
|||
appTitle = (defaultText = "Wekan"),
|
||||
# The name of the app as it is displayed to the user.
|
||||
|
||||
appVersion = 401,
|
||||
appVersion = 402,
|
||||
# Increment this for every release.
|
||||
|
||||
appMarketingVersion = (defaultText = "4.01.0~2020-04-28"),
|
||||
appMarketingVersion = (defaultText = "4.02.0~2020-05-15"),
|
||||
# Human-readable presentation of the app version.
|
||||
|
||||
minUpgradableAppVersion = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue