]> 91.132.146.200 Git - bibliotheca-php.git/commitdiff
updated upgrade files
authorBanana <mail@bananas-playground.net>
Sun, 18 Dec 2022 11:13:52 +0000 (12:13 +0100)
committerBanana <mail@bananas-playground.net>
Sun, 18 Dec 2022 11:13:52 +0000 (12:13 +0100)
documentation/upgrade.txt
upgrade/from-version-1.1.txt
upgrade/from-version-1.2.txt
upgrade/from-version-1.3.tx

index 043a17726a200e5c0f770892981ec28341e070f6..37c48774ef4fac442f7a381abaeb56805b014be6 100644 (file)
@@ -1,4 +1,4 @@
-Each release has it own files in the upgrade folder.
+Each release has its own file in the upgrade folder.
 In this file there are the steps needed to make an upgrade.
 
 If you upgrade multiple versions make sure to read all the files in the correct order.
index 8ffb080c2c5552cb6624a672bb1669434536482f..08697850454c70e84f0ea12d79474303e20cb246 100644 (file)
@@ -1,3 +1,11 @@
+# Copy the following directories and files to your installation folder, overriding the existing ones:
+webclient/config/
+webclient/lib/
+webclient/view/
+webclient/.htaccess
+webclient/api.php
+webclient/index.php
+
 # DB changes. Run each line against your bibliotheca DB.
 # Replace #REPLACEME# with your table prefix. Default is bib
 INSERT INTO `#REPLACEME#_tool` (`id`, `name`, `description`, `action`, `target`, `owner`, `group`, `rights`) VALUES (NULL, 'Musicbrainz', 'Album infos', 'musicbrainz', '_self', '1', '1', 'rw-r--r--');
index 2f760e45a24489ddab2be8a5138068726967cb1f..94b4b7c5c515b1b4f7cae0834658f6157eea5f96 100644 (file)
@@ -1,3 +1,11 @@
+# Copy the following directories and files to your installation folder, overriding the existing ones:
+webclient/config/
+webclient/lib/
+webclient/view/
+webclient/.htaccess
+webclient/api.php
+webclient/index.php
+
 # DB changes. Run each line against your bibliotheca DB.
 # Replace #REPLACEME# with your table prefix. Default is bib
 INSERT INTO `#REPLACEME#_sys_fields` (`id`, `identifier`, `displayname`, `type`, `searchtype`, `createstring`, `inputValidation`, `value`, `apiinfo`, `created`, `modified`, `modificationuser`, `owner`, `group`, `rights`) VALUES (NULL, 'artists', 'Artists', 'lookupmultiple', 'tag', NULL, 'allowSpace', NULL, 'string 64', NOW(), NOW(), NULL, '1', '1', 'rw-r--r--');
index 634e2af098c5aaecfaf4b48184ec81751fabb169..e8521d156bb2f86606739ebc0be45e260d50cd9d 100644 (file)
@@ -1,3 +1,15 @@
+# Copy the following directories and files to your installation folder, overriding the existing ones:
+webclient/config/
+webclient/lib/
+webclient/view/
+webclient/.htaccess
+webclient/api.php
+webclient/index.php
+
+# New syntax in config files
+"define(.." syntax needs to be replace with "const" syntax in all the config files.
+See the default ones about the changes.
+
 # DB changes. Run each line against your bibliotheca DB.
 # Replace #REPLACEME# with your table prefix. Default is bib
 ALTER TABLE `#REPLACEME#_collection` ADD `defaultSortOrder` VARCHAR(4) NOT NULL AFTER `defaultSortField`;