diff --git a/code/web/release_notes/24.06.00.MD b/code/web/release_notes/24.06.00.MD index 40874f971e..4430bade70 100644 --- a/code/web/release_notes/24.06.00.MD +++ b/code/web/release_notes/24.06.00.MD @@ -86,10 +86,18 @@ - Added new Documentation links to several settings pages (*MKD*) - Updates to default user roles: removed testing roles and a couple uncommonly used roles; updated role titles (*MKD*) +//alexander +### Other Updates +- Added eResource to iType so that it displays as an access online button + + ## This release includes code contributions from - ByWater Solutions - Mark Noble (MDN) - Kirstin Kroeger (KK) - Kodi Lein (KL) - Liz Rea (LR) - - Morgan Daigneault (MKD) \ No newline at end of file + - Morgan Daigneault (MKD) + + - PTFS Europe + - Alexander Blanchard(AB) \ No newline at end of file diff --git a/code/web/sys/DBMaintenance/version_updates/23.12.01.php b/code/web/sys/DBMaintenance/version_updates/23.12.01.php index af6d9dc50c..f03f9197c0 100644 --- a/code/web/sys/DBMaintenance/version_updates/23.12.01.php +++ b/code/web/sys/DBMaintenance/version_updates/23.12.01.php @@ -19,13 +19,5 @@ function getUpdates23_12_01(): array { 'UPDATE overdrive_settings SET runFullUpdate = 1', ] ], //force_overdrive_full_update - 'summon_ip_addresses' => [ - 'title' => 'Summon IP address configuration', - 'description' => 'Allow configuration of which IP addresses should automatically authenticate with Summon', - 'continueOnError' => true, - 'sql' => [ - 'ALTER TABLE ip_lookup ADD COLUMN authenticatedForSummon TINYINT DEFAULT 0', - ] - ], //summon authentication ]; } \ No newline at end of file diff --git a/code/web/sys/DBMaintenance/version_updates/24.06.00.php b/code/web/sys/DBMaintenance/version_updates/24.06.00.php index 43d463d1d3..5d62ea29d4 100644 --- a/code/web/sys/DBMaintenance/version_updates/24.06.00.php +++ b/code/web/sys/DBMaintenance/version_updates/24.06.00.php @@ -79,6 +79,15 @@ function getUpdates24_06_00(): array { ], ], //full_text_limiter + //alexander - PTFS Europe + 'summon_ip_addresses' => [ + 'title' => 'Summon IP address configuration', + 'description' => 'Allow configuration of which IP addresses should automatically authenticate with Summon', + 'continueOnError' => true, + 'sql' => [ + 'ALTER TABLE ip_lookup ADD COLUMN authenticatedForSummon TINYINT DEFAULT 0', + ] + ], //other