Skip to content

Commit 3e294b5

Browse files
authored
Merge pull request #60 from mendix/release/3.10.0
Workflow Commons 3.10.0
2 parents ccfc5e0 + ceebbf0 commit 3e294b5

File tree

7 files changed

+203
-183
lines changed

7 files changed

+203
-183
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686

8787
- name: Archive results
8888
if: ${{ always() }}
89-
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # v2
89+
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1
9090
with:
9191
name: Results
9292
path: ${{ github.workspace }}/out/*

ReleaseNotes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Release 3.10.0
2+
3+
* We added a constant `DueDateExpirationInDays` to configure the period in days for which the workflows/user tasks are to be considered almost due.
4+
* We added visual indicators that indicates workflows/user tasks that are almost due based on the constant `DueDateExpirationInDays` or overdue in pages `Task Inbox`, `Task Dashboard`, `Default Workflow Admin` and `Workflow Definition View`.
5+
* We added `Due in x day(s)` counters to the `Workflow Dashboard` for workflows/user tasks. Where the value of `x` is the `DueDateExpirationInDays` constant value.
6+
* We fixed a bug in the calculation of the overdue counters in the `Workflow Dashboard`.
7+
8+
_______
9+
110
## Release 3.9.0
211

312
* We upgraded the module to Mendix 10.14.0
2.13 MB
Binary file not shown.
360 KB
Binary file not shown.

Source/themesource/workflowcommons/web/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
// Shared
88
@import "shared/badges";
9+
@import "shared/duedate";
910
@import "shared/timeline";
1011
@import "shared/truncating-groupbox";
1112
@import "shared/listview-fix";
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.mxwc-duedate {
2+
&.mxwc-duedate-almost-due {
3+
color: $brand-warning;
4+
}
5+
6+
&.mxwc-duedate-overdue {
7+
color: $brand-danger;
8+
}
9+
10+
}

0 commit comments

Comments
 (0)