Skip to content
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
11 changes: 0 additions & 11 deletions 10/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@ All Workflow configuration is optional and will a fallback to defaults, if not s
"ReminderNotificationPeriod": Timespan.FromHours(8),
"EnableTestLicense": false,
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
"DateFormats": {
"DateFormat": "MMMM d, yyyy h:mm tt",
"DateFormatNoMinute": "MMMM d, yyy h tt",
"DateFormatShort": "MMMM d, yyyy",
"TimeFormat": "h:mm tt",
"TimeFormatShort": "HH:mm"
},
"SettingsCustomization”: {...}
}
```
Expand All @@ -61,10 +54,6 @@ A `bool` value used to enable or disable the test license. When true, and runnin

A `string` value representing the path to the email notification templates.

#### DateFormats

An instance of `DateTimeSettings` allowing customization of date string formats. The `DateTimeSettings` class contains properties for long and short date and time strings, plus a long date variation with no minutes.

#### Colors

An instance of `ColorSettings` allowing customization of colors used in email notifications. Allows setting alternate values for red, orange, and green use to highlight workflow status in emails.
Expand Down
6 changes: 6 additions & 0 deletions 10/umbraco-workflow/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ If you are migrating from Plumber to Umbraco Workflow, see the [Migrate from Plu

This section contains the release notes for Umbraco Workflow 10 including all changes for this version.

### [10.4.0](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.4.0) (September 12 2024)
* Fixes an issue where an awaited call does not trigger an AngularJS digest, causing the UI to hang. [#73](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/73)
* Fixes an issue where dates were not correctly localised in the Backoffice [#77](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/77)
* Fixes an issue related to sending notification emails in sites with a large number of Workflow groups [#79](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/79)
* **BREAKING CHANGE** resolving [#77](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/77) includes removing the `DateTimeSettings` class. This class allowed setting the preferred format for dates in the Backoffice. These settings were never applied, or were ignored when localising dates. Corresponding settings in app settings should be removed.

### [10.3.10](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.3.10) (May 10 2024)

* Fixes an issue where Content Review notification emails failed to send due to attempting to access UmbracoContext in a hosted service [#57](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/57)
Expand Down
11 changes: 0 additions & 11 deletions 13/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@ All Workflow configuration is optional and will fallback to defaults, if not set
"ReminderNotificationPeriod": Timespan.FromHours(8),
"EnableTestLicense": false,
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
"DateFormats": {
"DateFormat": "MMMM d, yyyy h:mm tt",
"DateFormatNoMinute": "MMMM d, yyy h tt",
"DateFormatShort": "MMMM d, yyyy",
"TimeFormat": "h:mm tt",
"TimeFormatShort": "HH:mm"
},
"SettingsCustomization”: {...}
}
```
Expand All @@ -61,10 +54,6 @@ A `bool` value used to enable or disable the test license. When true, and runnin

A `string` value representing the path to the email notification templates.

#### DateFormats

An instance of `DateTimeSettings` allowing customization of date string formats. The `DateTimeSettings` class contains properties for long and short date and time strings, plus a long date variation with no minutes.

#### Colors

An instance of `ColorSettings` allowing customization of colors used in email notifications. Allows setting alternate values for red, orange, and green use to highlight workflow status in emails.
Expand Down
6 changes: 6 additions & 0 deletions 13/umbraco-workflow/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl

This section contains the release notes for Umbraco Workflow 13 including all changes for this version.

### [13.2.0](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.2.0) (September 12 2024)
* Fixes an issue where an awaited call does not trigger an AngularJS digest, causing the UI to hang. [#73](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/73)
* Fixes an issue where dates were not correctly localised in the Backoffice [#77](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/77)
* Fixes an issue related to sending notification emails in sites with a large number of Workflow groups [#79](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/79)
* **BREAKING CHANGE** resolving [#77](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/77) includes removing the `DateTimeSettings` class. This class allowed setting the preferred format for dates in the Backoffice. These settings were never applied, or were ignored when localising dates. Corresponding settings in app settings should be removed.

### [13.1.0](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.0) (August 5 2024)

* Updates Umbraco dependencies to require 13.1.0 minimum (the oldest v13 version without a reported vulnerability)
Expand Down
Loading