Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.5.0-beta1 #638

Merged
merged 6 commits into from
Oct 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-17
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
# Pre-setup steps
Expand Down Expand Up @@ -62,7 +62,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-17
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
- wget https://raw.githubusercontent.com/nextcloud/server/master/build/signed-off-checker.php
Expand All @@ -87,7 +87,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-17
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
- composer install
Expand All @@ -99,7 +99,7 @@ pipeline:
image: nextcloudci/php7.1:php7.1-15
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
- composer install
Expand All @@ -111,7 +111,7 @@ pipeline:
image: nextcloudci/php7.2:php7.2-9
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
- composer install
Expand Down Expand Up @@ -144,7 +144,7 @@ pipeline:
image: nextcloudci/php7.0:php7.0-17
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
# Pre-setup steps
Expand All @@ -164,7 +164,7 @@ pipeline:
image: nextcloudci/php7.1:php7.1-15
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
# Pre-setup steps
Expand All @@ -183,7 +183,7 @@ pipeline:
image: nextcloudci/php7.2:php7.2-9
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
# Pre-setup steps
Expand All @@ -202,7 +202,7 @@ pipeline:
image: nextcloudci/integration-php7.0:integration-php7.0-6
environment:
- APP_NAME=deck
- CORE_BRANCH=master
- CORE_BRANCH=stable14
- DB=sqlite
commands:
# Pre-setup steps
Expand Down Expand Up @@ -233,7 +233,6 @@ pipeline:
TESTS: jsbuild
matrix:
include:
- TESTS: check-app-compatbility
- TESTS: check-app-compatbility-13
- TESTS: check-app-compatbility-14
- TESTS: signed-off-check
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ php:
- 7.1
- 7.2
env:
- CORE_BRANCH=master DB=mysql
- CORE_BRANCH=stable14 DB=mysql

before_install:
- wget https://phar.phpunit.de/phpunit-5.7.phar
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Changelog
All notable changes to this project will be documented in this file.

## 0.5.0 - unreleased

### Added

- Activity stream for board and cards
- Comments on cards
- Use users locale format on date picker
- Compact display mode
- Card title inline editing
- REST API
- Empty content view for board lists
- Undo for card and stack deletion
- Show tag name on board
- Notify users about card assignments
- Add shortcut to assign a card to yourself
- Improved view for printing

### Fixed

- Accesibility improvements
- Don't allow empty card titles

## 0.4.0 - 2018-07-11

### Added
Expand Down
1 change: 0 additions & 1 deletion appinfo/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
$app = new \OCA\Deck\AppInfo\Application();
$app->registerNavigationEntry();
$app->registerNotifications();
$app->registerCommentsEntity();

/** Load activity style global so it is availabile in the activity app as well */
\OC_Util::addStyle('deck', 'activity');
7 changes: 5 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@
- 📄 Write down additional notes in markdown
- 🔖 Assign labels for even better organization
- 👥 Share with your team, friends or family
- 📎 Attach files and embed them in your markdown description
- 💬 Discuss with your team using comments
- ⚡ Keep track of changes in the activity stream
- 🚀 Get your project organized

</description>
<version>0.5.0-dev4</version>
<version>0.5.0-beta1</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
Expand All @@ -29,7 +32,7 @@
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Board.png</screenshot>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Details.png</screenshot>
<dependencies>
<nextcloud min-version="13" max-version="15" />
<nextcloud min-version="13" max-version="14" />
</dependencies>
<background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job>
Expand Down
2 changes: 1 addition & 1 deletion js/service/ActivityService.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class ActivityService {
}
if (typeof this.since[type][id] === 'undefined') {
this.since[type][id] = {
latest: 0,
latest: -1,
oldestCatchedUp: false,
oldest: '0',
finished: false,
Expand Down
2 changes: 2 additions & 0 deletions lib/AppInfo/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ public function __construct(array $urlParams = array()) {
}
});

$this->registerCommentsEntity();

}

public function registerNavigationEntry() {
Expand Down