reviewable/pr3634/r1 v5.02
Lauri Ojansivu 4 years ago
parent de13b8b9ba
commit d4dd5d7a61
  1. 4
      CHANGELOG.md
  2. 2
      Stackerfile.yml
  3. 8544
      package-lock.json
  4. 2
      package.json
  5. 11
      public/api/wekan.html
  6. 6
      public/api/wekan.yml
  7. 4
      sandstorm-pkgdef.capnp

@ -1,4 +1,4 @@
# Upcoming Wekan release
# v5.02 2021-03-02 Wekan release
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.
Note: Sending email on Sandstorm Wekan does not work yet](https://github.com/wekan/wekan/commit/65b8220fe53349695a335bdb8b9692f82d4b3329).
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.

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

8544
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v5.01.0",
"version": "v5.02.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 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>
@ -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>);
<span class="hljs-keyword">const</span> inputBody = <span class="hljs-string">'{
"title": "string",
"sort": "string",
"parentId": "string",
"description": "string",
"color": "string",
@ -8521,6 +8522,7 @@ System.out.println(response.toString());
<p>Body parameter</p>
</blockquote>
<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">description:</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>
</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>body</td>
<td>string</td>

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

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 501,
appVersion = 502,
# 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.
minUpgradableAppVersion = 0,

Loading…
Cancel
Save