diff --git a/code/folio_export/folio_export.jar b/code/folio_export/folio_export.jar
new file mode 100644
index 0000000000..23a4248cd9
Binary files /dev/null and b/code/folio_export/folio_export.jar differ
diff --git a/code/web/interface/themes/responsive/Search/explore-more-bar.tpl b/code/web/interface/themes/responsive/Search/explore-more-bar.tpl
index 96ec4a1f11..991435230b 100644
--- a/code/web/interface/themes/responsive/Search/explore-more-bar.tpl
+++ b/code/web/interface/themes/responsive/Search/explore-more-bar.tpl
@@ -1,5 +1,6 @@
{strip}
{* TODO: Consider renaming classes to assume they are under the exploreMoreBar class *}
+{if !empty($showExploreMoreOptions)}
{*
-{/strip}
\ No newline at end of file
+{else}
+
+
+{/if}
+{/strip}
+
diff --git a/code/web/interface/themes/responsive/images/summon.png:Zone.Identifier b/code/web/interface/themes/responsive/images/summon.png:Zone.Identifier
new file mode 100644
index 0000000000..5bfebe3650
--- /dev/null
+++ b/code/web/interface/themes/responsive/images/summon.png:Zone.Identifier
@@ -0,0 +1,4 @@
+[ZoneTransfer]
+ZoneId=3
+ReferrerUrl=https://www.google.com/
+HostUrl=https://files.mtstatic.com/site_11811/55152/0?Expires=1708452791&Signature=O-eIysOYl-1drJTT2f6LTnuDXMhKycAnvuWBQT53Y5WC-uFeYwIE744-kFoVgc-gDsc1ODNBFX1G09SEdxs6NAzaBLFM1c9V0Xq3GZiKsUMivxIQC8YNpa9VHLWM0KE-snOgnMcGuuzuqvpFNAZA5J7FNpYuE~F2eWzOKKYIdhw_&Key-Pair-Id=APKAJ5Y6AV4GI7A555NA
diff --git a/code/web/release_notes/24.06.00.MD b/code/web/release_notes/24.06.00.MD
index ceb3fb54ac..d8fcdac87d 100644
--- a/code/web/release_notes/24.06.00.MD
+++ b/code/web/release_notes/24.06.00.MD
@@ -3,11 +3,9 @@
## Aspen Discovery Updates
//mark
-//alexander
+
### Summon Updates
-- Added control over whether images avaialble from the API are used in a Summon Search or whether Aspen created covers only should be used - impacts load speed. (*AB*)
-- Limited Summon Search results to those within each libraries subscription. (*AB / JO*)
-- Added limit filters for Summon Search - search by whether record is scholarly and whether it is peer reviewed. (*AB / JO*)
+
### Koha Updates
- When a user has opted out of auto-renewal, do not show auto-renewal message even if the title is otherwise eligible for auto-renewal. (Ticket 131789) (*MDN*)
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 f03f9197c0..12f58bcd43 100644
--- a/code/web/sys/DBMaintenance/version_updates/23.12.01.php
+++ b/code/web/sys/DBMaintenance/version_updates/23.12.01.php
@@ -19,5 +19,5 @@ function getUpdates23_12_01(): array {
'UPDATE overdrive_settings SET runFullUpdate = 1',
]
], //force_overdrive_full_update
- ];
+ ];
}
\ No newline at end of file
diff --git a/code/web/sys/DBMaintenance/version_updates/24.05.00.php b/code/web/sys/DBMaintenance/version_updates/24.05.00.php
index e0f13118f3..dd398504fc 100644
--- a/code/web/sys/DBMaintenance/version_updates/24.05.00.php
+++ b/code/web/sys/DBMaintenance/version_updates/24.05.00.php
@@ -123,8 +123,6 @@ function getUpdates24_05_00(): array {
'ALTER TABLE javascript_snippets ADD COLUMN containsAnalyticsCookies TINYINT(1)'
]
], //Snippet_Contains_Marketing_Cookies
-
-
];
}
diff --git a/code/web/sys/Interface.php b/code/web/sys/Interface.php
index 2d27d59870..1bba0cd082 100644
--- a/code/web/sys/Interface.php
+++ b/code/web/sys/Interface.php
@@ -740,6 +740,7 @@ function loadDisplayOptions($fromBookCoverProcessing = false) {
$this->assign('showDisplayNameInHeader', $library->showDisplayNameInHeader);
$this->assign('externalMaterialsRequestUrl', $library->externalMaterialsRequestUrl);
$this->assign('languageAndDisplayInHeader', $library->languageAndDisplayInHeader);
+ $this->assign('showExploreMoreOptions', $library->getLayoutSettings()->showExploreMoreOptions);
if ($location != null) {
$this->assign('showDisplayNameInHeader', $location->showDisplayNameInHeader);
diff --git a/code/web/sys/Theming/LayoutSetting.php b/code/web/sys/Theming/LayoutSetting.php
index 140113b331..9e68ad8750 100644
--- a/code/web/sys/Theming/LayoutSetting.php
+++ b/code/web/sys/Theming/LayoutSetting.php
@@ -16,6 +16,7 @@ class LayoutSetting extends DataObject {
public $showTopOfPageButton;
public $dismissPlacardButtonLocation;
public $dismissPlacardButtonIcon;
+ public $showExploreMoreOptions;
public $contrastRatio;
static function getObjectStructure($context = ''): array {
@@ -103,6 +104,13 @@ static function getObjectStructure($context = ''): array {
'description' => 'Whether or not to show icon instead of default dismiss placard text',
'default' => false,
],
+ 'showExploreMoreOptions' => [
+ 'property' => 'showExploreMoreOptions',
+ 'type' => 'checkbox',
+ 'label' => 'Show Explore More Options',
+ 'description' => 'Whether or not to display the Explore More Options box.',
+ 'default' => true,
+ ],
'contrastRatio' => [
'property' => 'contrastRatio',
'type' => 'enum',