X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fextensions%2Fsql_patches%2Fmode-update.php;h=d5562501e80ad07479b36f09c6447988b1e95ddf;hb=55ffbd0926d1a420226e02b0c171f0cc1ce67169;hp=afe6ec9a6d8c4a5b00129f0331c301ebed06976c;hpb=f40ee6b3fe47308625f3490dedb1c52174ddf9f1;p=mailer.git diff --git a/inc/extensions/sql_patches/mode-update.php b/inc/extensions/sql_patches/mode-update.php index afe6ec9a6d..d5562501e8 100644 --- a/inc/extensions/sql_patches/mode-update.php +++ b/inc/extensions/sql_patches/mode-update.php @@ -179,7 +179,7 @@ if (!defined('__SECURITY')) { break; case '0.2.1': // SQL queries for v0.2.1 - addConfigAddSql('css_php', "ENUM('DIRECT','FILE','INLINE') NOT NULL DEFAULT 'FILE'"); + addConfigAddSql('css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'"); // Update notes (these will be set as task text!) setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php oder sie sind direkt eingebunden."); @@ -587,7 +587,7 @@ UNIQUE INDEX `name_function` (`filter_name`, `filter_function`)", break; case '0.6.5': // SQL queries for v0.6.5 - addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE') NOT NULL DEFAULT 'FILE'"); + addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'"); // Update notes (these will be set as task text!) setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php oder sie sind direkt eingebunden."); @@ -927,6 +927,18 @@ INDEX (`history_last_used` DESC)", // Update notes (these will be set as task text!) setExtensionUpdateNotes("Dieses Feature wurde nach ext-server_name verschoben, damit dies klappt, muss zuvor der Filter manuell aus der Datenbank gelöscht werden, da sonst ein Auto-Unregister erfolgt, was auskommentiert ist. Dies gilt nur für bestehende Installationen, nicht neue."); break; + + case '1.0.4': // SQL queries for v1.0.4 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("jQuery aktualisiert."); + break; + + case '1.0.5': // SQL queries for v1.0.5 + addConfigChangeSql('css_php', 'css_php', "ENUM('DIRECT','FILE','INLINE','ASSET') NOT NULL DEFAULT 'FILE'"); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Ausgabe der CSS-Dateien entweder per css.php, als style-Tag, als minifiziertes Asset "kompiliert" oder sie sind direkt eingebunden."); + break; } // END - switch // [EOF]