forked from Aspen-Discovery/aspen-discovery
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Aspen Discovery Updates | ||
### CloudSource Updates | ||
- Allow repeating searches within [CloudSource](https://cloudsource.net) so open articles, eBooks, eTextbooks, and more can be searched. (DIS-36) | ||
|
||
<div markdown="1" class="settings"> | ||
|
||
#### New Settings | ||
- Primary Configuration > Library Systems > CloudSource > Repeat In CloudSource | ||
- Primary Configuration > Library Systems > CloudSource > CloudSource URL | ||
- Primary Configuration > Library Systems > Locations > Searching > Search Box > Repeat In CloudSource | ||
</div> | ||
|
||
## This release includes code contributions from | ||
- Grove For Libraries | ||
- Mark Noble (MDN) | ||
|
||
## This release includes sponsored developments from | ||
- CLEVNET |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
function getUpdates24_10_10(): array { | ||
$curTime = time(); | ||
return [ | ||
/*'name' => [ | ||
'title' => '', | ||
'description' => '', | ||
'continueOnError' => false, | ||
'sql' => [ | ||
'' | ||
] | ||
], //name*/ | ||
|
||
//mark - Grove | ||
'repeat_in_cloudsource' => [ | ||
'title' => 'Repeat in CloudSource', | ||
'description' => 'Add information to allow repeat in CloudSource to work properly.', | ||
'continueOnError' => true, | ||
'sql' => [ | ||
'ALTER TABLE library ADD COLUMN repeatInCloudSource TINYINT DEFAULT 0', | ||
"ALTER TABLE library ADD COLUMN cloudSourceBaseUrl VARCHAR(255) DEFAULT ''", | ||
'ALTER TABLE location ADD COLUMN repeatInCloudSource TINYINT DEFAULT 0', | ||
], | ||
], | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters