This commit is contained in:
Lauri Ojansivu 2021-03-02 16:40:50 +02:00
parent de13b8b9ba
commit d4dd5d7a61
7 changed files with 8524 additions and 49 deletions

View file

@ -1,4 +1,4 @@
# Upcoming Wekan release # v5.02 2021-03-02 Wekan release
This release adds the following improvements: This release adds the following improvements:
@ -12,6 +12,8 @@ and fixes the following bugs:
- [Fix SMTP port lost after upgrade. STMP settings are made only with environment variables on non-Sandstorm platforms. - [Fix SMTP port lost after upgrade. STMP settings are made only with environment variables on non-Sandstorm platforms.
Note: Sending email on Sandstorm Wekan does not work yet](https://github.com/wekan/wekan/commit/65b8220fe53349695a335bdb8b9692f82d4b3329). Note: Sending email on Sandstorm Wekan does not work yet](https://github.com/wekan/wekan/commit/65b8220fe53349695a335bdb8b9692f82d4b3329).
Thanks to jrsupplee and xet7. Thanks to jrsupplee and xet7.
- [Removed extra imports of Meteor](https://github.com/wekan/wekan/commit/de13b8b9bafbfb186a037ae20e845846b296ac69).
Thanks to xet7.
Thanks to above GitHub users for their contributions and translators for their translations. Thanks to above GitHub users for their contributions and translators for their translations.

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v5.01.0" appVersion: "v5.02.0"
files: files:
userUploads: userUploads:
- README.md - README.md

8544
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v5.01.0", "version": "v5.02.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"scripts": { "scripts": {

View file

@ -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"> <ul class="toc-list-h1">
<li> <li>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v5.01">Wekan REST API v5.01</a> <a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v5.02">Wekan REST API v5.02</a>
</li> </li>
@ -8396,6 +8396,7 @@ $.ajax({
<pre class="highlight tab tab-javascript--nodejs"><code><span class="hljs-keyword">const</span> fetch = <span class="hljs-built_in">require</span>(<span class="hljs-string">'node-fetch'</span>); <pre class="highlight tab tab-javascript--nodejs"><code><span class="hljs-keyword">const</span> fetch = <span class="hljs-built_in">require</span>(<span class="hljs-string">'node-fetch'</span>);
<span class="hljs-keyword">const</span> inputBody = <span class="hljs-string">'{ <span class="hljs-keyword">const</span> inputBody = <span class="hljs-string">'{
"title": "string", "title": "string",
"sort": "string",
"parentId": "string", "parentId": "string",
"description": "string", "description": "string",
"color": "string", "color": "string",
@ -8521,6 +8522,7 @@ System.out.println(response.toString());
<p>Body parameter</p> <p>Body parameter</p>
</blockquote> </blockquote>
<pre class="highlight tab tab-yaml"><code><span class="hljs-attr">title:</span> <span class="hljs-string">string</span> <pre class="highlight tab tab-yaml"><code><span class="hljs-attr">title:</span> <span class="hljs-string">string</span>
<span class="hljs-attr">sort:</span> <span class="hljs-string">string</span>
<span class="hljs-attr">parentId:</span> <span class="hljs-string">string</span> <span class="hljs-attr">parentId:</span> <span class="hljs-string">string</span>
<span class="hljs-attr">description:</span> <span class="hljs-string">string</span> <span class="hljs-attr">description:</span> <span class="hljs-string">string</span>
<span class="hljs-attr">color:</span> <span class="hljs-string">string</span> <span class="hljs-attr">color:</span> <span class="hljs-string">string</span>
@ -8590,6 +8592,13 @@ System.out.println(response.toString());
<td>the new title of the card</td> <td>the new title of the card</td>
</tr> </tr>
<tr> <tr>
<td>» sort</td>
<td>body</td>
<td>string</td>
<td>false</td>
<td>the new sort value of the card</td>
</tr>
<tr>
<td>» parentId</td> <td>» parentId</td>
<td>body</td> <td>body</td>
<td>string</td> <td>string</td>

View file

@ -1618,6 +1618,12 @@ paths:
the new title of the card the new title of the card
type: string type: string
required: false required: false
- name: sort
in: formData
description: |
the new sort value of the card
type: string
required: false
- name: parentId - name: parentId
in: formData in: formData
description: | description: |

View file

@ -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 = 501, appVersion = 502,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "5.01.0~2021-02-26"), appMarketingVersion = (defaultText = "5.02.0~2021-03-02"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,