Skip to content

Commit ca836fd

Browse files
author
Ian Walls
committed
Issue #421: bump Libki version to 5.2.1
Increment the verison number to reflect the addition of the new DisplayPublicReservationsPage setting. Sets the default value to 'enabled' to preserve user experience (this is an opt-in change)
1 parent fc84c36 commit ca836fd

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

installer/data.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ INSERT INTO `settings` VALUES ('','DefaultGuestTimeAllowance','45');
168168
INSERT INTO `settings` VALUES ('','DefaultSessionTimeAllowance','45');
169169
INSERT INTO `settings` VALUES ('','DefaultTimeAllowance','45');
170170
INSERT INTO `settings` VALUES ('','DisplayReservationStatusWithin','60');
171+
INSERT INTO `settings` VALUES ('','DisplayPublicReservationsPage','enabled');
171172
INSERT INTO `settings` VALUES ('','GuestBatchCount','40');
172173
INSERT INTO `settings` VALUES ('','MinimumReservationMinutes','5');
173174
INSERT INTO `settings` VALUES ('','PostCrashTimeout','5');
@@ -178,7 +179,7 @@ INSERT INTO `settings` VALUES ('','ShowFirstLastNames','1');
178179
INSERT INTO `settings` VALUES ('','ThirdPartyURL','');
179180
INSERT INTO `settings` VALUES ('','TimeDisplayFormat','24');
180181
INSERT INTO `settings` VALUES ('','UserCategories','');
181-
INSERT INTO `settings` VALUES ('','Version','5.2.0');
182+
INSERT INTO `settings` VALUES ('','Version','5.2.1');
182183
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
183184
UNLOCK TABLES;
184185

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INSERT IGNORE INTO settings ( name, value ) VALUES ('DisplayPublicReservationsPage', 'enabled');

lib/Libki.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use DateTime::Format::MySQL;
1313
use DateTime;
1414
use File::Slurp;
1515

16-
our $VERSION = '5.2.0';
16+
our $VERSION = '5.2.1';
1717

1818
# Set flags and add plugins for the application.
1919
#

0 commit comments

Comments
 (0)