Skip to content

Commit

Permalink
Update version info to 1.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Mar 8, 2022
1 parent 0fa0131 commit 921e93d
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "k5n/webcalendar",
"type": "project",
"description": "Multi-user web-based calendar app",
"version": "v1.9.0",
"version": "v1.9.1",
"homepage": "https://www.k5n.us/webcalendar/",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions includes/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ function do_config( $fileLoc ) {
$single_user, $single_user_login, $TROUBLE_URL, $user_inc, $use_http_auth;

// When changing PROGRAM VERSION, also change it in install/default_config.php
$PROGRAM_VERSION = 'v1.9.0';
$PROGRAM_VERSION = 'v1.9.1';
// Update PROGRAM_DATE with official release data
$PROGRAM_DATE = '(28 Feb 2022)';
$PROGRAM_DATE = '(08 Mar 2022)';

$PROGRAM_NAME = 'WebCalendar ' . "$PROGRAM_VERSION ($PROGRAM_DATE)";
$PROGRAM_URL = 'http://k5n.us/wp/webcalendar/';
Expand Down
2 changes: 1 addition & 1 deletion install/default_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
'USER_RSS_ENABLED' => 'N',
'USER_SEES_ONLY_HIS_GROUPS' => 'Y',
'USER_SORT_ORDER' => 'cal_lastname, cal_firstname',
'WEBCAL_PROGRAM_VERSION' => 'v1.9.0',
'WEBCAL_PROGRAM_VERSION' => 'v1.9.1',
'WEEK_START' => '0',
'WEEKEND_START' => '6',
'WEEKENDBG' => '#d0d0d0',
Expand Down
1 change: 1 addition & 0 deletions install/sql/upgrade-db2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -297,3 +297,4 @@ ALTER TABLE webcal_import ADD cal_md5 VARCHAR(32) NULL DEFAULT NULL;
CREATE INDEX webcal_import_data_type ON webcal_import_data(cal_import_type);
CREATE INDEX webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade-ibase.sql
Original file line number Diff line number Diff line change
Expand Up @@ -312,3 +312,4 @@ CREATE INDEX IF NOT EXISTS
CREATE INDEX IF NOT EXISTS
webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade-mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -298,3 +298,4 @@ CREATE INDEX
CREATE INDEX
webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,4 @@ CREATE INDEX IF NOT EXISTS
CREATE INDEX IF NOT EXISTS
webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade-oracle.sql
Original file line number Diff line number Diff line change
Expand Up @@ -295,3 +295,4 @@ ALTER TABLE webcal_import ADD cal_md5 VARCHAR(32) NULL DEFAULT NULL;
CREATE INDEX webcal_import_data_type ON webcal_import_data(cal_import_type);
CREATE INDEX webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade-postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -313,3 +313,4 @@ ALTER TABLE webcal_import ADD cal_md5 VARCHAR(32) NULL DEFAULT NULL;
CREATE INDEX webcal_import_data_type ON webcal_import_data(cal_import_type);
CREATE INDEX webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/
1 change: 1 addition & 0 deletions install/sql/upgrade.sql
Original file line number Diff line number Diff line change
Expand Up @@ -613,3 +613,4 @@ ALTER TABLE webcal_import ADD cal_md5 VARCHAR(32) NULL DEFAULT NULL;
CREATE INDEX webcal_import_data_type ON webcal_import_data(cal_import_type);
CREATE INDEX webcal_import_data_ext_id ON webcal_import_data(cal_external_id);
ALTER TABLE webcal_user MODIFY cal_passwd VARCHAR(255);
/*upgrade_v1.9.1*/

0 comments on commit 921e93d

Please sign in to comment.