mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 17:00:13 +01:00
Merge branch 'edge' into meteor-1.8
This commit is contained in:
commit
ac0f13ad18
8 changed files with 53 additions and 6 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,3 +1,14 @@
|
||||||
|
# v2.67 2019-05-10 Wekan release
|
||||||
|
|
||||||
|
This release adds the following new features:
|
||||||
|
|
||||||
|
- [Move board to Archive button at each board at All Boards page](https://github.com/wekan/wekan/commit/828f6ea321020eda77fea399df52889e2081dfac).
|
||||||
|
Thanks to xet7. Related #2389
|
||||||
|
- [If adding Subtasks does not work on old board, added wiki page how to make it work again](https://github.com/wekan/wekan/wiki/Subtasks).
|
||||||
|
Thanks to xet7.
|
||||||
|
|
||||||
|
Thanks to above GitHub users for their contributions and translators for their translations.
|
||||||
|
|
||||||
# v2.66 2019-05-09 Wekan release
|
# v2.66 2019-05-09 Wekan release
|
||||||
|
|
||||||
This release adds the following new features:
|
This release adds the following new features:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
||||||
appVersion: "v2.66.0"
|
appVersion: "v2.67.0"
|
||||||
files:
|
files:
|
||||||
userUploads:
|
userUploads:
|
||||||
- README.md
|
- README.md
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,9 @@ template(name="boardList")
|
||||||
i.fa.js-clone-board(
|
i.fa.js-clone-board(
|
||||||
class="fa-clone"
|
class="fa-clone"
|
||||||
title="{{_ 'duplicate-board'}}")
|
title="{{_ 'duplicate-board'}}")
|
||||||
|
i.fa.js-archive-board(
|
||||||
|
class="fa-archive"
|
||||||
|
title="{{_ 'archive-board'}}")
|
||||||
|
|
||||||
template(name="boardListHeaderBar")
|
template(name="boardListHeaderBar")
|
||||||
h1 {{_ 'my-boards'}}
|
h1 {{_ 'my-boards'}}
|
||||||
|
|
|
||||||
|
|
@ -70,6 +70,11 @@ BlazeComponent.extendComponent({
|
||||||
);
|
);
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
},
|
},
|
||||||
|
'click .js-archive-board'(evt) {
|
||||||
|
const boardId = this.currentData()._id;
|
||||||
|
Meteor.call('archiveBoard', boardId);
|
||||||
|
evt.preventDefault();
|
||||||
|
},
|
||||||
'click .js-accept-invite'() {
|
'click .js-accept-invite'() {
|
||||||
const boardId = this.currentData()._id;
|
const boardId = this.currentData()._id;
|
||||||
Meteor.user().removeInvite(boardId);
|
Meteor.user().removeInvite(boardId);
|
||||||
|
|
|
||||||
|
|
@ -106,15 +106,29 @@ $spaceBetweenTiles = 16px
|
||||||
transition-duration: .15s
|
transition-duration: .15s
|
||||||
transition-property: color, font-size, background
|
transition-property: color, font-size, background
|
||||||
|
|
||||||
|
.fa-archive
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0
|
||||||
|
font-size: 14px
|
||||||
|
height: 18px
|
||||||
|
line-height: 18px
|
||||||
|
opacity: 0
|
||||||
|
left: 0
|
||||||
|
padding: 9px 9px
|
||||||
|
transition-duration: .15s
|
||||||
|
transition-property: color, font-size, background
|
||||||
|
|
||||||
li:hover a
|
li:hover a
|
||||||
&:hover
|
&:hover
|
||||||
.fa-star,
|
.fa-star,
|
||||||
.fa-clone,
|
.fa-clone,
|
||||||
|
.fa-archive,
|
||||||
.fa-star-o
|
.fa-star-o
|
||||||
color: white
|
color: white
|
||||||
|
|
||||||
.fa-star,
|
.fa-star,
|
||||||
.fa-clone,
|
.fa-clone,
|
||||||
|
.fa-archive,
|
||||||
.fa-star-o
|
.fa-star-o
|
||||||
color: white
|
color: white
|
||||||
opacity: .75
|
opacity: .75
|
||||||
|
|
|
||||||
|
|
@ -867,6 +867,22 @@ if (Meteor.isServer) {
|
||||||
} else throw new Meteor.Error('error-board-doesNotExist');
|
} else throw new Meteor.Error('error-board-doesNotExist');
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Meteor.methods({
|
||||||
|
archiveBoard(boardId) {
|
||||||
|
check(boardId, String);
|
||||||
|
const board = Boards.findOne(boardId);
|
||||||
|
if (board) {
|
||||||
|
const userId = Meteor.userId();
|
||||||
|
const index = board.memberIndex(userId);
|
||||||
|
if (index >= 0) {
|
||||||
|
board.archive();
|
||||||
|
return true;
|
||||||
|
} else throw new Meteor.Error('error-board-notAMember');
|
||||||
|
} else throw new Meteor.Error('error-board-doesNotExist');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Meteor.isServer) {
|
if (Meteor.isServer) {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "wekan",
|
"name": "wekan",
|
||||||
"version": "v2.66.0",
|
"version": "v2.67.0",
|
||||||
"description": "Open-Source kanban",
|
"description": "Open-Source kanban",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -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 = 268,
|
appVersion = 269,
|
||||||
# Increment this for every release.
|
# Increment this for every release.
|
||||||
|
|
||||||
appMarketingVersion = (defaultText = "2.66.0~2019-05-09"),
|
appMarketingVersion = (defaultText = "2.67.0~2019-05-10"),
|
||||||
# Human-readable presentation of the app version.
|
# Human-readable presentation of the app version.
|
||||||
|
|
||||||
minUpgradableAppVersion = 0,
|
minUpgradableAppVersion = 0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue