Skip to content

Commit 0cbc940

Browse files
committed
v8.14
1 parent 940df02 commit 0cbc940

File tree

8 files changed

+23
-14
lines changed

8 files changed

+23
-14
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ Fixing other platforms In Progress.
2222
WeKan 8.00-8.06 had wrong raw database directory setting /var/snap/wekan/common/wekan and some cards were not visible.
2323
Those are fixed at WeKan 8.07 where database directory is back to /var/snap/wekan/common and all cards are visible.
2424

25+
# v8.14 2025-10-23 WeKan ® release
26+
27+
This release fixes the following bugs:
28+
29+
- [Fix board reloading page every second](https://github.com/wekan/wekan/commit/b4b598f542d0cefc5f2d5d6c7286f0a312cf6a55).
30+
Thanks to xet7.
31+
32+
Thanks to above GitHub users for their contributions and translators for their translations.
33+
2534
# v8.12 2025-10-23 WeKan ® release
2635

2736
This release fixes the following bugs:

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,9 +249,9 @@ cd /home/wekan/app
249249
# Remove legacy webbroser bundle, so that Wekan works also at Android Firefox, iOS Safari, etc.
250250
#rm -rf /home/wekan/app_build/bundle/programs/web.browser.legacy
251251
#mv /home/wekan/app_build/bundle /build
252-
wget "https://github.com/wekan/wekan/releases/download/v8.12/wekan-8.12-amd64.zip"
253-
unzip wekan-8.12-amd64.zip
254-
rm wekan-8.12-amd64.zip
252+
wget "https://github.com/wekan/wekan/releases/download/v8.14/wekan-8.14-amd64.zip"
253+
unzip wekan-8.14-amd64.zip
254+
rm wekan-8.14-amd64.zip
255255
mv /home/wekan/app/bundle /build
256256

257257
# Put back the original tar

Stackerfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
2-
appVersion: "v8.12.0"
2+
appVersion: "v8.14.0"
33
files:
44
userUploads:
55
- README.md

docs/Platforms/Propietary/Windows/Offline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is without container (without Docker or Snap).
1010

1111
Right click and download files 1-4:
1212

13-
1. [wekan-8.12-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.12/wekan-8.12-amd64-windows.zip)
13+
1. [wekan-8.14-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.14/wekan-8.14-amd64-windows.zip)
1414

1515
2. [node.exe](https://nodejs.org/dist/latest-v14.x/win-x64/node.exe)
1616

@@ -22,7 +22,7 @@ Right click and download files 1-4:
2222

2323
6. Double click `mongodb-windows-x86_64-7.0.25-signed.msi` . In installer, uncheck downloading MongoDB compass.
2424

25-
7. Unzip `wekan-8.12-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
25+
7. Unzip `wekan-8.14-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
2626

2727
```
2828
bundle (directory)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wekan",
3-
"version": "v8.12.0",
3+
"version": "v8.14.0",
44
"description": "Open-Source kanban",
55
"private": true,
66
"repository": {

sandstorm-pkgdef.capnp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
2222
appTitle = (defaultText = "Wekan"),
2323
# The name of the app as it is displayed to the user.
2424

25-
appVersion = 812,
25+
appVersion = 814,
2626
# Increment this for every release.
2727

28-
appMarketingVersion = (defaultText = "8.12.0~2025-10-23"),
28+
appMarketingVersion = (defaultText = "8.14.0~2025-10-23"),
2929
# Human-readable presentation of the app version.
3030

3131
minUpgradableAppVersion = 0,

snapcraft.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: wekan
2-
version: '8.12'
2+
version: '8.14'
33
base: core24
44
summary: Open Source kanban
55
description: |
@@ -166,9 +166,9 @@ parts:
166166
# Cleanup
167167
mkdir .build
168168
cd .build
169-
wget https://github.com/wekan/wekan/releases/download/v8.12/wekan-8.12-amd64.zip
170-
unzip wekan-8.12-amd64.zip
171-
rm wekan-8.12-amd64.zip
169+
wget https://github.com/wekan/wekan/releases/download/v8.14/wekan-8.14-amd64.zip
170+
unzip wekan-8.14-amd64.zip
171+
rm wekan-8.14-amd64.zip
172172
cd ..
173173
##cd .build/bundle
174174
##find . -type d -name '*-garbage*' | xargs rm -rf

0 commit comments

Comments
 (0)