From 595506b90f28499ecc15a5b3b00881b42f19b66c Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Mon, 19 Jul 2021 18:29:43 +0300 Subject: [PATCH 1/3] Updated CHANGELOG.md --- CHANGELOG.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b81fbf7..2f563b49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,15 @@ developers to maintain and readjust their custom modifications on the main proje ### Fixed +- #961: Timezone/UX issue: Wrong day is selected when timezone differs by -1 day. +- #966: Secretaries are getting notification emails for providers that are not assigned to them. +- #980: Missing Pacific (and potentially other) timezones. +- #982: The Any-Provider option might lead to double bookings, if all the providers have the same number of appointments for the selected date. +- #986: Managed to replicate appointment hash collisions. +- #989: Fix Critical mistake resulting in wrong date +- #990: The API availabilities controller throws an error when generating availability for services with multiple attendants. +- #991: Available hours generated with the "Any Provider" option in the booking page, may use the information of a provider that is not assigned to the selected service. +- #993: Add support for PHP8 (vendor packages need to be updated). - #1000: Small fix for the display of the delete button in table view. - #1011: Working plan exception - details pane shows incorrect details. - #1023: Backend calendar table events missing or duplicated. @@ -23,15 +32,6 @@ developers to maintain and readjust their custom modifications on the main proje - #1073: Update PHPMailer dependencies. - #1074: In case of deletion of one appointment, system sends email to admins anyway even if they have email notifications disabled. - #1092: Javascript RangeError on appointment change causing disabled calendar dates. -- #961: Timezone/UX issue: Wrong day is selected when timezone differs by -1 day. -- #966: Secretaries are getting notification emails for providers that are not assigned to them. -- #980: Missing Pacific (and potentially other) timezones. -- #982: The Any-Provider option might lead to double bookings, if all the providers have the same number of appointments for the selected date. -- #986: Managed to replicate appointment hash collisions. -- #989: Fix Critical mistake resulting in wrong date -- #990: The API availabilities controller throws an error when generating availability for services with multiple attendants. -- #991: Available hours generated with the "Any Provider" option in the booking page, may use the information of a provider that is not assigned to the selected service. -- #993: Add support for PHP8 (vendor packages need to be updated). ## [1.4.1] - 2020-12-14 From b28ccfe0c9067ac7b87e7a6ba496d8d993f46fdd Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Tue, 27 Jul 2021 11:27:16 +0300 Subject: [PATCH 2/3] Updated CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f563b49..1ec4719a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ This file contains the code changes that were introduced into each release (starting from v1.1.0) so that is easy for developers to maintain and readjust their custom modifications on the main project codebase. -## [1.4.2] - TBA +## [1.4.2] - 2021-07-27 ### Added From 7393c3646281b0598a00156d0096d979f168e57e Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Tue, 27 Jul 2021 11:31:43 +0300 Subject: [PATCH 3/3] Release v1.4.2 --- application/config/config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/config/config.php b/application/config/config.php index db6d0646..c217dcfd 100644 --- a/application/config/config.php +++ b/application/config/config.php @@ -9,7 +9,7 @@ | */ $config['version'] = '1.4.2'; // This must be changed manually. -$config['release_label'] = 'beta.1'; // Leave empty for no title or add Alpha, Beta etc ... +$config['release_label'] = ''; // Leave empty for no title or add Alpha, Beta etc ... $config['debug'] = Config::DEBUG_MODE; /* @@ -314,7 +314,7 @@ $config['cache_path'] = __DIR__ . '/../../storage/cache/'; | new release. | */ -$config['cache_busting_token'] = '624TB'; +$config['cache_busting_token'] = 'ZV947'; /* |--------------------------------------------------------------------------