mirror of
https://github.com/wekan/wekan.git
synced 2025-12-24 03:10:12 +01:00
v3.97
This commit is contained in:
parent
e92ebe5151
commit
6cd92ab2c6
7 changed files with 313 additions and 299 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# Upcoming Wekan release
|
||||
# v3.97 2020-04-19 Wekan release
|
||||
|
||||
This release adds the following new features:
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
||||
appVersion: "v3.96.0"
|
||||
appVersion: "v3.97.0"
|
||||
files:
|
||||
userUploads:
|
||||
- README.md
|
||||
|
|
|
|||
2
package-lock.json
generated
2
package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "v3.96.0",
|
||||
"version": "v3.97.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "v3.96.0",
|
||||
"version": "v3.97.0",
|
||||
"description": "Open-Source kanban",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1524,7 +1524,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
|
|||
<ul class="toc-list-h1">
|
||||
|
||||
<li>
|
||||
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v3.96">Wekan REST API v3.96</a>
|
||||
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v3.97">Wekan REST API v3.97</a>
|
||||
|
||||
</li>
|
||||
|
||||
|
|
@ -1968,7 +1968,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
|
|||
<div class="page-wrapper">
|
||||
<div class="dark-box"></div>
|
||||
<div class="content">
|
||||
<h1 id="wekan-rest-api">Wekan REST API v3.96</h1>
|
||||
<h1 id="wekan-rest-api">Wekan REST API v3.97</h1>
|
||||
<blockquote>
|
||||
<p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p>
|
||||
</blockquote>
|
||||
|
|
@ -3262,7 +3262,8 @@ System.out.println(response.toString());
|
|||
<span class="hljs-attr">"endAt"</span>: <span class="hljs-string">"string"</span>,
|
||||
<span class="hljs-attr">"spentTime"</span>: <span class="hljs-number">0</span>,
|
||||
<span class="hljs-attr">"isOvertime"</span>: <span class="hljs-literal">true</span>,
|
||||
<span class="hljs-attr">"type"</span>: <span class="hljs-string">"string"</span>
|
||||
<span class="hljs-attr">"type"</span>: <span class="hljs-string">"string"</span>,
|
||||
<span class="hljs-attr">"sort"</span>: <span class="hljs-number">0</span>
|
||||
}
|
||||
</code></pre>
|
||||
<h3 id="get_board-responses">Responses</h3>
|
||||
|
|
@ -12238,7 +12239,8 @@ UserSecurity
|
|||
<span class="hljs-attr">"endAt"</span>: <span class="hljs-string">"string"</span>,
|
||||
<span class="hljs-attr">"spentTime"</span>: <span class="hljs-number">0</span>,
|
||||
<span class="hljs-attr">"isOvertime"</span>: <span class="hljs-literal">true</span>,
|
||||
<span class="hljs-attr">"type"</span>: <span class="hljs-string">"string"</span>
|
||||
<span class="hljs-attr">"type"</span>: <span class="hljs-string">"string"</span>,
|
||||
<span class="hljs-attr">"sort"</span>: <span class="hljs-number">0</span>
|
||||
}
|
||||
|
||||
</code></pre>
|
||||
|
|
@ -12521,6 +12523,13 @@ UserSecurity
|
|||
<td>none</td>
|
||||
<td>The type of board</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>sort</td>
|
||||
<td>number</td>
|
||||
<td>true</td>
|
||||
<td>none</td>
|
||||
<td>Sort value</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<h4 id="enumerated-values">Enumerated Values</h4>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
swagger: '2.0'
|
||||
info:
|
||||
title: Wekan REST API
|
||||
version: v3.96
|
||||
version: v3.97
|
||||
description: |
|
||||
The REST API allows you to control and extend Wekan with ease.
|
||||
|
||||
|
|
@ -1895,6 +1895,10 @@ definitions:
|
|||
description: |
|
||||
The type of board
|
||||
type: string
|
||||
sort:
|
||||
description: |
|
||||
Sort value
|
||||
type: number
|
||||
required:
|
||||
- title
|
||||
- slug
|
||||
|
|
@ -1922,6 +1926,7 @@ definitions:
|
|||
- allowsEndDate
|
||||
- allowsDueDate
|
||||
- type
|
||||
- sort
|
||||
BoardsLabels:
|
||||
type: object
|
||||
properties:
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
|
|||
appTitle = (defaultText = "Wekan"),
|
||||
# The name of the app as it is displayed to the user.
|
||||
|
||||
appVersion = 396,
|
||||
appVersion = 397,
|
||||
# Increment this for every release.
|
||||
|
||||
appMarketingVersion = (defaultText = "3.96.0~2020-04-15"),
|
||||
appMarketingVersion = (defaultText = "3.97.0~2020-04-19"),
|
||||
# Human-readable presentation of the app version.
|
||||
|
||||
minUpgradableAppVersion = 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue