Changeset 3397904
- Timestamp:
- 11/18/2025 09:45:45 AM (4 months ago)
- Location:
- acymailing
- Files:
-
- 24 edited
- 1 copied
-
tags/10.6.2 (copied) (copied from acymailing/trunk)
-
tags/10.6.2/back/Controllers/DashboardController.php (modified) (1 diff)
-
tags/10.6.2/back/Core/wordpress/extension.php (modified) (6 diffs)
-
tags/10.6.2/back/Helpers/Update/Configuration.php (modified) (1 diff)
-
tags/10.6.2/back/Helpers/Update/Patchv10.php (modified) (2 diffs)
-
tags/10.6.2/back/Helpers/Update/SQLPatch.php (modified) (1 diff)
-
tags/10.6.2/back/Helpers/UpdateHelper.php (modified) (1 diff)
-
tags/10.6.2/back/tables.sql (modified) (1 diff)
-
tags/10.6.2/index.php (modified) (1 diff)
-
tags/10.6.2/language/acymailing.pot (modified) (1 diff)
-
tags/10.6.2/language/en-US.com_acym.ini (modified) (1 diff)
-
tags/10.6.2/readme.txt (modified) (2 diffs)
-
tags/10.6.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/back/Controllers/DashboardController.php (modified) (1 diff)
-
trunk/back/Core/wordpress/extension.php (modified) (6 diffs)
-
trunk/back/Helpers/Update/Configuration.php (modified) (1 diff)
-
trunk/back/Helpers/Update/Patchv10.php (modified) (2 diffs)
-
trunk/back/Helpers/Update/SQLPatch.php (modified) (1 diff)
-
trunk/back/Helpers/UpdateHelper.php (modified) (1 diff)
-
trunk/back/tables.sql (modified) (1 diff)
-
trunk/index.php (modified) (1 diff)
-
trunk/language/acymailing.pot (modified) (1 diff)
-
trunk/language/en-US.com_acym.ini (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
acymailing/tags/10.6.2/back/Controllers/DashboardController.php
r3397294 r3397904 45 45 $splashJson = acym_fileGetContent(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON); 46 46 $version = json_decode($splashJson); 47 if (version_compare($this->config->get('previous_version', '10.6. 1'), $version->max_version, '>=')) {47 if (version_compare($this->config->get('previous_version', '10.6.2'), $version->max_version, '>=')) { 48 48 @unlink(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON); 49 49 $this->listing(); -
acymailing/tags/10.6.2/back/Core/wordpress/extension.php
r3397294 r3397904 31 31 'title' => acym_translation('ACYM_ARTICLE'), 32 32 'folder_name' => 'post', 33 'version' => '10.6. 1',33 'version' => '10.6.2', 34 34 'active' => '1', 35 35 'category' => 'Content management', … … 37 37 'uptodate' => '1', 38 38 'description' => '- Insert WordPress posts in your emails<br/>- Insert the latest posts of a category in an automatic email', 39 'latest_version' => '10.6. 1',39 'latest_version' => '10.6.2', 40 40 'type' => 'CORE', 41 41 ], … … 43 43 'title' => acym_translation('ACYM_PAGE'), 44 44 'folder_name' => 'page', 45 'version' => '10.6. 1',45 'version' => '10.6.2', 46 46 'active' => '1', 47 47 'category' => 'Content management', … … 49 49 'uptodate' => '1', 50 50 'description' => '- Insert pages in your emails', 51 'latest_version' => '10.6. 1',51 'latest_version' => '10.6.2', 52 52 'type' => 'CORE', 53 53 ], … … 55 55 'title' => acym_translation('ACYM_CREATE_USER'), 56 56 'folder_name' => 'createuser', 57 'version' => '10.6. 1',57 'version' => '10.6.2', 58 58 'active' => '1', 59 59 'category' => 'User management', … … 61 61 'uptodate' => '1', 62 62 'description' => '- Automatically creates a site user when an AcyMailing subscriber is created', 63 'latest_version' => '10.6. 1',63 'latest_version' => '10.6.2', 64 64 'type' => 'CORE', 65 65 ], -
acymailing/tags/10.6.2/back/Helpers/Update/Configuration.php
r3397294 r3397904 123 123 $allPref['Essential'] = ACYM_ESSENTIAL; 124 124 $allPref['Enterprise'] = ACYM_ENTERPRISE; 125 $allPref['previous_version'] = '10.6. 1';125 $allPref['previous_version'] = '10.6.2'; 126 126 127 127 $allPref['display_built_by'] = acym_level(ACYM_ESSENTIAL) ? 0 : 1; -
acymailing/tags/10.6.2/back/Helpers/Update/Patchv10.php
r3397048 r3397904 172 172 private function updateFor1050(): void 173 173 { 174 if ($this->isPreviousVersionAtLeast('10.5.0')) { 175 return; 176 } 177 174 178 $this->updateQuery('ALTER TABLE #__acym_automation CHANGE `active` `active` TINYINT(3) NOT NULL DEFAULT 0'); 175 179 } … … 177 181 private function updateFor1060(): void 178 182 { 183 if ($this->isPreviousVersionAtLeast('10.6.0')) { 184 return; 185 } 186 179 187 $this->updateQuery('ALTER TABLE #__acym_scenario_process ADD COLUMN `unsubscribed` TINYINT(1) NOT NULL DEFAULT 0'); 180 188 } 189 190 private function updateFor1062(): void 191 { 192 if ($this->isPreviousVersionAtLeast('10.6.2')) { 193 return; 194 } 195 196 $this->updateQuery('ALTER TABLE #__acym_list CHANGE `access` `access` VARCHAR(150) NOT NULL DEFAULT ""'); 197 } 181 198 } -
acymailing/tags/10.6.2/back/Helpers/Update/SQLPatch.php
r3397048 r3397904 90 90 $this->updateFor1050(); 91 91 $this->updateFor1060(); 92 $this->updateFor1062(); 92 93 } 93 94 -
acymailing/tags/10.6.2/back/Helpers/UpdateHelper.php
r3397294 r3397904 22 22 23 23 private string $level = 'starter'; 24 private string $version = '10.6. 1';24 private string $version = '10.6.2'; 25 25 private string $previousVersion; 26 26 private bool $isUpdating = false; -
acymailing/tags/10.6.2/back/tables.sql
r3397048 r3397904 85 85 `unsubscribe_id` INT NULL, 86 86 `cms_user_id` INT NOT NULL, 87 `access` VARCHAR( 50) NOT NULL DEFAULT '',87 `access` VARCHAR(150) NOT NULL DEFAULT '', 88 88 `description` TEXT NOT NULL, 89 89 `tracking` TINYINT(1) NOT NULL DEFAULT 1, -
acymailing/tags/10.6.2/index.php
r3397294 r3397904 6 6 * Author URI: https://www.acymailing.com 7 7 * License: GPLv3 8 * Version: 10.6. 18 * Version: 10.6.2 9 9 * Text Domain: acymailing 10 10 * Domain Path: /language -
acymailing/tags/10.6.2/language/acymailing.pot
r3397294 r3397904 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: AcyMailing 10.6. 1\n"3 "Project-Id-Version: AcyMailing 10.6.2\n" 4 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing\n" 5 5 "MIME-Version: 1.0\n" 6 6 "Content-Type: text/plain; charset=UTF-8\n" 7 7 "Content-Transfer-Encoding: 8bit\n" 8 "POT-Creation-Date: 2025-11-1 7\n"8 "POT-Creation-Date: 2025-11-18\n" 9 9 "X-Domain: acymailing\n" 10 10 -
acymailing/tags/10.6.2/language/en-US.com_acym.ini
r3397294 r3397904 1 ACYM_VERSION="10.6. 1"1 ACYM_VERSION="10.6.2" 2 2 3 3 -
acymailing/tags/10.6.2/readme.txt
r3397294 r3397904 4 4 Requires at least: 5.5 5 5 Tested up to: 6.8 6 Stable tag: 10.6. 16 Stable tag: 10.6.2 7 7 Requires PHP: 7.4.0 8 8 License: GPLv3 … … 114 114 == Changelog == 115 115 116 = 10.6. 1 - November 17, 2025 =117 * The installation of default rules for automatic bounce handling has been fixed.116 = 10.6.2 - November 18, 2025 = 117 * We improved the v5 data migration script to handle websites with a large number of user groups. 118 118 119 119 [See the whole changelog here.](https://www.acymailing.com/changelog) -
acymailing/tags/10.6.2/vendor/composer/installed.php
r3397294 r3397904 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' 9b2362aeb2248ce3aaaccbf46450599bc45a6498',6 'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-develop', 15 15 'version' => 'dev-develop', 16 'reference' => ' 9b2362aeb2248ce3aaaccbf46450599bc45a6498',16 'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
acymailing/trunk/back/Controllers/DashboardController.php
r3397294 r3397904 45 45 $splashJson = acym_fileGetContent(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON); 46 46 $version = json_decode($splashJson); 47 if (version_compare($this->config->get('previous_version', '10.6. 1'), $version->max_version, '>=')) {47 if (version_compare($this->config->get('previous_version', '10.6.2'), $version->max_version, '>=')) { 48 48 @unlink(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON); 49 49 $this->listing(); -
acymailing/trunk/back/Core/wordpress/extension.php
r3397294 r3397904 31 31 'title' => acym_translation('ACYM_ARTICLE'), 32 32 'folder_name' => 'post', 33 'version' => '10.6. 1',33 'version' => '10.6.2', 34 34 'active' => '1', 35 35 'category' => 'Content management', … … 37 37 'uptodate' => '1', 38 38 'description' => '- Insert WordPress posts in your emails<br/>- Insert the latest posts of a category in an automatic email', 39 'latest_version' => '10.6. 1',39 'latest_version' => '10.6.2', 40 40 'type' => 'CORE', 41 41 ], … … 43 43 'title' => acym_translation('ACYM_PAGE'), 44 44 'folder_name' => 'page', 45 'version' => '10.6. 1',45 'version' => '10.6.2', 46 46 'active' => '1', 47 47 'category' => 'Content management', … … 49 49 'uptodate' => '1', 50 50 'description' => '- Insert pages in your emails', 51 'latest_version' => '10.6. 1',51 'latest_version' => '10.6.2', 52 52 'type' => 'CORE', 53 53 ], … … 55 55 'title' => acym_translation('ACYM_CREATE_USER'), 56 56 'folder_name' => 'createuser', 57 'version' => '10.6. 1',57 'version' => '10.6.2', 58 58 'active' => '1', 59 59 'category' => 'User management', … … 61 61 'uptodate' => '1', 62 62 'description' => '- Automatically creates a site user when an AcyMailing subscriber is created', 63 'latest_version' => '10.6. 1',63 'latest_version' => '10.6.2', 64 64 'type' => 'CORE', 65 65 ], -
acymailing/trunk/back/Helpers/Update/Configuration.php
r3397294 r3397904 123 123 $allPref['Essential'] = ACYM_ESSENTIAL; 124 124 $allPref['Enterprise'] = ACYM_ENTERPRISE; 125 $allPref['previous_version'] = '10.6. 1';125 $allPref['previous_version'] = '10.6.2'; 126 126 127 127 $allPref['display_built_by'] = acym_level(ACYM_ESSENTIAL) ? 0 : 1; -
acymailing/trunk/back/Helpers/Update/Patchv10.php
r3397048 r3397904 172 172 private function updateFor1050(): void 173 173 { 174 if ($this->isPreviousVersionAtLeast('10.5.0')) { 175 return; 176 } 177 174 178 $this->updateQuery('ALTER TABLE #__acym_automation CHANGE `active` `active` TINYINT(3) NOT NULL DEFAULT 0'); 175 179 } … … 177 181 private function updateFor1060(): void 178 182 { 183 if ($this->isPreviousVersionAtLeast('10.6.0')) { 184 return; 185 } 186 179 187 $this->updateQuery('ALTER TABLE #__acym_scenario_process ADD COLUMN `unsubscribed` TINYINT(1) NOT NULL DEFAULT 0'); 180 188 } 189 190 private function updateFor1062(): void 191 { 192 if ($this->isPreviousVersionAtLeast('10.6.2')) { 193 return; 194 } 195 196 $this->updateQuery('ALTER TABLE #__acym_list CHANGE `access` `access` VARCHAR(150) NOT NULL DEFAULT ""'); 197 } 181 198 } -
acymailing/trunk/back/Helpers/Update/SQLPatch.php
r3397048 r3397904 90 90 $this->updateFor1050(); 91 91 $this->updateFor1060(); 92 $this->updateFor1062(); 92 93 } 93 94 -
acymailing/trunk/back/Helpers/UpdateHelper.php
r3397294 r3397904 22 22 23 23 private string $level = 'starter'; 24 private string $version = '10.6. 1';24 private string $version = '10.6.2'; 25 25 private string $previousVersion; 26 26 private bool $isUpdating = false; -
acymailing/trunk/back/tables.sql
r3397048 r3397904 85 85 `unsubscribe_id` INT NULL, 86 86 `cms_user_id` INT NOT NULL, 87 `access` VARCHAR( 50) NOT NULL DEFAULT '',87 `access` VARCHAR(150) NOT NULL DEFAULT '', 88 88 `description` TEXT NOT NULL, 89 89 `tracking` TINYINT(1) NOT NULL DEFAULT 1, -
acymailing/trunk/index.php
r3397294 r3397904 6 6 * Author URI: https://www.acymailing.com 7 7 * License: GPLv3 8 * Version: 10.6. 18 * Version: 10.6.2 9 9 * Text Domain: acymailing 10 10 * Domain Path: /language -
acymailing/trunk/language/acymailing.pot
r3397294 r3397904 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: AcyMailing 10.6. 1\n"3 "Project-Id-Version: AcyMailing 10.6.2\n" 4 4 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing\n" 5 5 "MIME-Version: 1.0\n" 6 6 "Content-Type: text/plain; charset=UTF-8\n" 7 7 "Content-Transfer-Encoding: 8bit\n" 8 "POT-Creation-Date: 2025-11-1 7\n"8 "POT-Creation-Date: 2025-11-18\n" 9 9 "X-Domain: acymailing\n" 10 10 -
acymailing/trunk/language/en-US.com_acym.ini
r3397294 r3397904 1 ACYM_VERSION="10.6. 1"1 ACYM_VERSION="10.6.2" 2 2 3 3 -
acymailing/trunk/readme.txt
r3397294 r3397904 4 4 Requires at least: 5.5 5 5 Tested up to: 6.8 6 Stable tag: 10.6. 16 Stable tag: 10.6.2 7 7 Requires PHP: 7.4.0 8 8 License: GPLv3 … … 114 114 == Changelog == 115 115 116 = 10.6. 1 - November 17, 2025 =117 * The installation of default rules for automatic bounce handling has been fixed.116 = 10.6.2 - November 18, 2025 = 117 * We improved the v5 data migration script to handle websites with a large number of user groups. 118 118 119 119 [See the whole changelog here.](https://www.acymailing.com/changelog) -
acymailing/trunk/vendor/composer/installed.php
r3397294 r3397904 4 4 'pretty_version' => 'dev-develop', 5 5 'version' => 'dev-develop', 6 'reference' => ' 9b2362aeb2248ce3aaaccbf46450599bc45a6498',6 'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-develop', 15 15 'version' => 'dev-develop', 16 'reference' => ' 9b2362aeb2248ce3aaaccbf46450599bc45a6498',16 'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.