Build package / package (push) Successful in 57s
Build package / php-lint (8.4) (push) Successful in 44s
Build package / php-lint (8.5) (push) Successful in 35s
Build package / xml-lint (push) Successful in 11s
Build package / unit-tests (push) Successful in 37s
WorkflowRunner::isOverdue() took Card::getDaysUntilDue(), which Deck computes by truncating both "now" and the due date to midnight before diffing. A card due earlier today therefore reported 0 days until due - not overdue - until the calendar date rolled over to the next day, so a card due "this morning" sat unmoved for up to 24h while one due "yesterday morning" moved immediately. isOverdue() now takes the due date and $now directly and compares them as real timestamps, matching what Deck's own UI shows. Bump to 34.0.2.
34 lines
808 B
JSON
34 lines
808 B
JSON
{
|
|
"name": "workflow_deck_automation",
|
|
"version": "34.0.2",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Automates moving overdue Deck cards between stacks, configurable per user.",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite --mode development build",
|
|
"watch": "vite --mode development build --watch"
|
|
},
|
|
"license": "AGPL-3.0-or-later",
|
|
"dependencies": {
|
|
"@nextcloud/axios": "^2.5.0",
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
"@nextcloud/router": "^3.0.1",
|
|
"@nextcloud/vue": "^9.0.0",
|
|
"vue": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/vite-config": "^2.2.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.6"
|
|
},
|
|
"engines": {
|
|
"node": "^24.0.0",
|
|
"npm": "^11.0.0"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
]
|
|
}
|