Skip to content

Commit 5820fcc

Browse files
authored
Merge pull request #118 from ebsco/2111-Updates
21.11 updates
2 parents 6cd484b + 0dc5d8d commit 5820fcc

11 files changed

Lines changed: 270 additions & 208 deletions

File tree

Koha/Plugin/EDS.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ my ($PluginDir) = grep { -f $_ . "/Koha/Plugin/EDS.pm" } @pluginsdir;
3030
$PluginDir = $PluginDir.'/Koha/Plugin/EDS';
3131

3232
################# DO NOT TOUCH - CONTROLLED BY build.py
33-
our $MAJOR_VERSION = "21.05";
34-
our $SUB_VERSION = "003";
33+
our $MAJOR_VERSION = "21.11";
34+
our $SUB_VERSION = "001";
3535
our $VERSION = $MAJOR_VERSION . "" . $SUB_VERSION;
3636
our $SHA_ADD = "https://widgets.ebscohost.com/prod/api/koha/sha/1711.json";
37-
our $DATE_UPDATE = '2022-02-21';
37+
our $DATE_UPDATE = '2022-05-10';
3838
######################################################
3939

4040
## Here is our metadata, some keys are required, some are optional
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- DO NOT TOUCH THIS FILE - controlled by build.py -->
33
<kohaplugin>
4-
<latestversion>21.05.003</latestversion>
4+
<latestversion>21.11.001</latestversion>
55
<download>https://github.com/ebsco/edsapi-koha-plugin</download>
6-
<lastupdated>2022/02/21</lastupdated>
6+
<lastupdated>2022/05/10</lastupdated>
77
<releasenotes>
8-
<release version="21.05.003" date="2022/02/21">
9-
<note id="1" author="mabrahamson@ebsco.com">Fixes issues with Research Starter Display.</note>
8+
<release version="21.11.001" date="2022/05/10">
9+
<note id="1" author="mabrahamson@ebsco.com">Addresses issue 116 importing PR 117 from PerplexedTheta.</note>
1010
</release>
1111
</releasenotes>
1212
</kohaplugin>

Koha/Plugin/EDS/admin/setuptool.pl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
use strict;
3434
use warnings;
3535
use CGI;
36-
use C4::Auth; # get_template_and_user
37-
use C4::Output;
36+
use C4::Auth qw( get_template_and_user );
37+
use C4::Output qw( output_with_http_headers );
3838
use LWP;
3939
use IO::File;
4040
use JSON;
@@ -155,4 +155,4 @@ sub UpdateEDSPlugin{
155155

156156
}
157157

158-
1;
158+
1;

0 commit comments

Comments
 (0)