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

Workflow Commons 3.10.0 #60

Merged
merged 3 commits into from
Sep 24, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Archive results
if: ${{ always() }}
uses: actions/upload-artifact@82c141cc518b40d92cc801eee768e7aafc9c2fa2 # v2
uses: actions/upload-artifact@ff15f0306b3f739f7b6fd43fb5d26cd321bd4de5 # v3.2.1
with:
name: Results
path: ${{ github.workspace }}/out/*
9 changes: 9 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Release 3.10.0

* We added a constant `DueDateExpirationInDays` to configure the period in days for which the workflows/user tasks are to be considered almost due.
* 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`.
* 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.
* We fixed a bug in the calculation of the overdue counters in the `Workflow Dashboard`.

_______

## Release 3.9.0

* We upgraded the module to Mendix 10.14.0
Expand Down
Binary file added Releases/WorkflowCommons-3-10-0.mpk
Binary file not shown.
Binary file modified Source/ExpenseRequestStarterApp.mpr
Binary file not shown.
1 change: 1 addition & 0 deletions Source/themesource/workflowcommons/web/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

// Shared
@import "shared/badges";
@import "shared/duedate";
@import "shared/timeline";
@import "shared/truncating-groupbox";
@import "shared/listview-fix";
Expand Down
10 changes: 10 additions & 0 deletions Source/themesource/workflowcommons/web/shared/_duedate.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.mxwc-duedate {
&.mxwc-duedate-almost-due {
color: $brand-warning;
}

&.mxwc-duedate-overdue {
color: $brand-danger;
}

}
Loading
Loading