Skip to content

Commit

Permalink
Merge pull request Aspen-Discovery#1916 from K-Alette/24.08.00
Browse files Browse the repository at this point in the history
24.08.00
  • Loading branch information
mdnoble73 authored Jul 22, 2024
2 parents 52a5c2e + 52f29bf commit e04e314
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private void loadEContentFormatInformation(AbstractGroupedWorkSolr groupedWork,
econtentItem.setFormat("Newspaper");
econtentItem.setFormatCategory("eBook");
econtentRecord.setFormatBoost(2);
} else if (format.equalsIgnoreCase("GraphicNovel")) {
} else if (format.equalsIgnoreCase("GraphicNovel") || format.equalsIgnoreCase("Manga")) {
econtentItem.setFormat("eComic");
econtentItem.setFormatCategory("eBook");
econtentRecord.setFormatBoost(8);
Expand Down
4 changes: 4 additions & 0 deletions code/web/release_notes/24.08.00.MD
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
// kirstien

// kodi
### Indexing Updates
- Add check for "Manga" in addition to "GraphicNovel" to determine eComic format for side loads (Ticket 134952) (*KL*)
- Add clearer debugging info for Libby if our authentication requests are unsuccessful (*KL*)
- Increase series length allowed in overdrive_api_products table for Libby (*KL*)

// katherine
### Other Updates
Expand Down
7 changes: 7 additions & 0 deletions code/web/sys/DBMaintenance/version_updates/24.08.00.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,13 @@ function getUpdates24_08_00(): array {
], //add_user_ils_messages

//kodi - ByWater
'overdrive_series_length' => [
'title' => 'Series Length',
'description' => 'Increase column length for series in overdrive_api_products table to accommodate long series names in Libby',
'sql' => [
'ALTER TABLE overdrive_api_products CHANGE COLUMN series series VARCHAR(255)',
],
],//overdrive_series_length

//katherine - ByWater

Expand Down

0 comments on commit e04e314

Please sign in to comment.