Plugin Directory

Changeset 3397904


Ignore:
Timestamp:
11/18/2025 09:45:45 AM (4 months ago)
Author:
acyba
Message:

10.6.2 - minor fixes

Location:
acymailing
Files:
24 edited
1 copied

Legend:

Unmodified
Added
Removed
  • acymailing/tags/10.6.2/back/Controllers/DashboardController.php

    r3397294 r3397904  
    4545        $splashJson = acym_fileGetContent(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON);
    4646        $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, '>=')) {
    4848            @unlink(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON);
    4949            $this->listing();
  • acymailing/tags/10.6.2/back/Core/wordpress/extension.php

    r3397294 r3397904  
    3131            'title' => acym_translation('ACYM_ARTICLE'),
    3232            'folder_name' => 'post',
    33             'version' => '10.6.1',
     33            'version' => '10.6.2',
    3434            'active' => '1',
    3535            'category' => 'Content management',
     
    3737            'uptodate' => '1',
    3838            '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',
    4040            'type' => 'CORE',
    4141        ],
     
    4343            'title' => acym_translation('ACYM_PAGE'),
    4444            'folder_name' => 'page',
    45             'version' => '10.6.1',
     45            'version' => '10.6.2',
    4646            'active' => '1',
    4747            'category' => 'Content management',
     
    4949            'uptodate' => '1',
    5050            'description' => '- Insert pages in your emails',
    51             'latest_version' => '10.6.1',
     51            'latest_version' => '10.6.2',
    5252            'type' => 'CORE',
    5353        ],
     
    5555            'title' => acym_translation('ACYM_CREATE_USER'),
    5656            'folder_name' => 'createuser',
    57             'version' => '10.6.1',
     57            'version' => '10.6.2',
    5858            'active' => '1',
    5959            'category' => 'User management',
     
    6161            'uptodate' => '1',
    6262            'description' => '- Automatically creates a site user when an AcyMailing subscriber is created',
    63             'latest_version' => '10.6.1',
     63            'latest_version' => '10.6.2',
    6464            'type' => 'CORE',
    6565        ],
  • acymailing/tags/10.6.2/back/Helpers/Update/Configuration.php

    r3397294 r3397904  
    123123        $allPref['Essential'] = ACYM_ESSENTIAL;
    124124        $allPref['Enterprise'] = ACYM_ENTERPRISE;
    125         $allPref['previous_version'] = '10.6.1';
     125        $allPref['previous_version'] = '10.6.2';
    126126
    127127        $allPref['display_built_by'] = acym_level(ACYM_ESSENTIAL) ? 0 : 1;
  • acymailing/tags/10.6.2/back/Helpers/Update/Patchv10.php

    r3397048 r3397904  
    172172    private function updateFor1050(): void
    173173    {
     174        if ($this->isPreviousVersionAtLeast('10.5.0')) {
     175            return;
     176        }
     177
    174178        $this->updateQuery('ALTER TABLE #__acym_automation CHANGE `active` `active` TINYINT(3) NOT NULL DEFAULT 0');
    175179    }
     
    177181    private function updateFor1060(): void
    178182    {
     183        if ($this->isPreviousVersionAtLeast('10.6.0')) {
     184            return;
     185        }
     186
    179187        $this->updateQuery('ALTER TABLE #__acym_scenario_process ADD COLUMN `unsubscribed` TINYINT(1) NOT NULL DEFAULT 0');
    180188    }
     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    }
    181198}
  • acymailing/tags/10.6.2/back/Helpers/Update/SQLPatch.php

    r3397048 r3397904  
    9090        $this->updateFor1050();
    9191        $this->updateFor1060();
     92        $this->updateFor1062();
    9293    }
    9394
  • acymailing/tags/10.6.2/back/Helpers/UpdateHelper.php

    r3397294 r3397904  
    2222
    2323    private string $level = 'starter';
    24     private string $version = '10.6.1';
     24    private string $version = '10.6.2';
    2525    private string $previousVersion;
    2626    private bool $isUpdating = false;
  • acymailing/tags/10.6.2/back/tables.sql

    r3397048 r3397904  
    8585    `unsubscribe_id` INT NULL,
    8686    `cms_user_id` INT NOT NULL,
    87     `access` VARCHAR(50) NOT NULL DEFAULT '',
     87    `access` VARCHAR(150) NOT NULL DEFAULT '',
    8888    `description` TEXT NOT NULL,
    8989    `tracking` TINYINT(1) NOT NULL DEFAULT 1,
  • acymailing/tags/10.6.2/index.php

    r3397294 r3397904  
    66 * Author URI: https://www.acymailing.com
    77 * License: GPLv3
    8  * Version: 10.6.1
     8 * Version: 10.6.2
    99 * Text Domain: acymailing
    1010 * Domain Path: /language
  • acymailing/tags/10.6.2/language/acymailing.pot

    r3397294 r3397904  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: AcyMailing 10.6.1\n"
     3"Project-Id-Version: AcyMailing 10.6.2\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing\n"
    55"MIME-Version: 1.0\n"
    66"Content-Type: text/plain; charset=UTF-8\n"
    77"Content-Transfer-Encoding: 8bit\n"
    8 "POT-Creation-Date: 2025-11-17\n"
     8"POT-Creation-Date: 2025-11-18\n"
    99"X-Domain: acymailing\n"
    1010
  • acymailing/tags/10.6.2/language/en-US.com_acym.ini

    r3397294 r3397904  
    1 ACYM_VERSION="10.6.1"
     1ACYM_VERSION="10.6.2"
    22
    33
  • acymailing/tags/10.6.2/readme.txt

    r3397294 r3397904  
    44Requires at least: 5.5
    55Tested up to: 6.8
    6 Stable tag: 10.6.1
     6Stable tag: 10.6.2
    77Requires PHP: 7.4.0
    88License: GPLv3
     
    114114== Changelog ==
    115115
    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.
    118118
    119119[See the whole changelog here.](https://www.acymailing.com/changelog)
  • acymailing/tags/10.6.2/vendor/composer/installed.php

    r3397294 r3397904  
    44        'pretty_version' => 'dev-develop',
    55        'version' => 'dev-develop',
    6         'reference' => '9b2362aeb2248ce3aaaccbf46450599bc45a6498',
     6        'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-develop',
    1515            'version' => 'dev-develop',
    16             'reference' => '9b2362aeb2248ce3aaaccbf46450599bc45a6498',
     16            'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • acymailing/trunk/back/Controllers/DashboardController.php

    r3397294 r3397904  
    4545        $splashJson = acym_fileGetContent(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON);
    4646        $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, '>=')) {
    4848            @unlink(ACYM_NEW_FEATURES_SPLASHSCREEN_JSON);
    4949            $this->listing();
  • acymailing/trunk/back/Core/wordpress/extension.php

    r3397294 r3397904  
    3131            'title' => acym_translation('ACYM_ARTICLE'),
    3232            'folder_name' => 'post',
    33             'version' => '10.6.1',
     33            'version' => '10.6.2',
    3434            'active' => '1',
    3535            'category' => 'Content management',
     
    3737            'uptodate' => '1',
    3838            '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',
    4040            'type' => 'CORE',
    4141        ],
     
    4343            'title' => acym_translation('ACYM_PAGE'),
    4444            'folder_name' => 'page',
    45             'version' => '10.6.1',
     45            'version' => '10.6.2',
    4646            'active' => '1',
    4747            'category' => 'Content management',
     
    4949            'uptodate' => '1',
    5050            'description' => '- Insert pages in your emails',
    51             'latest_version' => '10.6.1',
     51            'latest_version' => '10.6.2',
    5252            'type' => 'CORE',
    5353        ],
     
    5555            'title' => acym_translation('ACYM_CREATE_USER'),
    5656            'folder_name' => 'createuser',
    57             'version' => '10.6.1',
     57            'version' => '10.6.2',
    5858            'active' => '1',
    5959            'category' => 'User management',
     
    6161            'uptodate' => '1',
    6262            'description' => '- Automatically creates a site user when an AcyMailing subscriber is created',
    63             'latest_version' => '10.6.1',
     63            'latest_version' => '10.6.2',
    6464            'type' => 'CORE',
    6565        ],
  • acymailing/trunk/back/Helpers/Update/Configuration.php

    r3397294 r3397904  
    123123        $allPref['Essential'] = ACYM_ESSENTIAL;
    124124        $allPref['Enterprise'] = ACYM_ENTERPRISE;
    125         $allPref['previous_version'] = '10.6.1';
     125        $allPref['previous_version'] = '10.6.2';
    126126
    127127        $allPref['display_built_by'] = acym_level(ACYM_ESSENTIAL) ? 0 : 1;
  • acymailing/trunk/back/Helpers/Update/Patchv10.php

    r3397048 r3397904  
    172172    private function updateFor1050(): void
    173173    {
     174        if ($this->isPreviousVersionAtLeast('10.5.0')) {
     175            return;
     176        }
     177
    174178        $this->updateQuery('ALTER TABLE #__acym_automation CHANGE `active` `active` TINYINT(3) NOT NULL DEFAULT 0');
    175179    }
     
    177181    private function updateFor1060(): void
    178182    {
     183        if ($this->isPreviousVersionAtLeast('10.6.0')) {
     184            return;
     185        }
     186
    179187        $this->updateQuery('ALTER TABLE #__acym_scenario_process ADD COLUMN `unsubscribed` TINYINT(1) NOT NULL DEFAULT 0');
    180188    }
     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    }
    181198}
  • acymailing/trunk/back/Helpers/Update/SQLPatch.php

    r3397048 r3397904  
    9090        $this->updateFor1050();
    9191        $this->updateFor1060();
     92        $this->updateFor1062();
    9293    }
    9394
  • acymailing/trunk/back/Helpers/UpdateHelper.php

    r3397294 r3397904  
    2222
    2323    private string $level = 'starter';
    24     private string $version = '10.6.1';
     24    private string $version = '10.6.2';
    2525    private string $previousVersion;
    2626    private bool $isUpdating = false;
  • acymailing/trunk/back/tables.sql

    r3397048 r3397904  
    8585    `unsubscribe_id` INT NULL,
    8686    `cms_user_id` INT NOT NULL,
    87     `access` VARCHAR(50) NOT NULL DEFAULT '',
     87    `access` VARCHAR(150) NOT NULL DEFAULT '',
    8888    `description` TEXT NOT NULL,
    8989    `tracking` TINYINT(1) NOT NULL DEFAULT 1,
  • acymailing/trunk/index.php

    r3397294 r3397904  
    66 * Author URI: https://www.acymailing.com
    77 * License: GPLv3
    8  * Version: 10.6.1
     8 * Version: 10.6.2
    99 * Text Domain: acymailing
    1010 * Domain Path: /language
  • acymailing/trunk/language/acymailing.pot

    r3397294 r3397904  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: AcyMailing 10.6.1\n"
     3"Project-Id-Version: AcyMailing 10.6.2\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acymailing\n"
    55"MIME-Version: 1.0\n"
    66"Content-Type: text/plain; charset=UTF-8\n"
    77"Content-Transfer-Encoding: 8bit\n"
    8 "POT-Creation-Date: 2025-11-17\n"
     8"POT-Creation-Date: 2025-11-18\n"
    99"X-Domain: acymailing\n"
    1010
  • acymailing/trunk/language/en-US.com_acym.ini

    r3397294 r3397904  
    1 ACYM_VERSION="10.6.1"
     1ACYM_VERSION="10.6.2"
    22
    33
  • acymailing/trunk/readme.txt

    r3397294 r3397904  
    44Requires at least: 5.5
    55Tested up to: 6.8
    6 Stable tag: 10.6.1
     6Stable tag: 10.6.2
    77Requires PHP: 7.4.0
    88License: GPLv3
     
    114114== Changelog ==
    115115
    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.
    118118
    119119[See the whole changelog here.](https://www.acymailing.com/changelog)
  • acymailing/trunk/vendor/composer/installed.php

    r3397294 r3397904  
    44        'pretty_version' => 'dev-develop',
    55        'version' => 'dev-develop',
    6         'reference' => '9b2362aeb2248ce3aaaccbf46450599bc45a6498',
     6        'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-develop',
    1515            'version' => 'dev-develop',
    16             'reference' => '9b2362aeb2248ce3aaaccbf46450599bc45a6498',
     16            'reference' => 'f2f434263502f5a8ce4608dbadbc3604835229a0',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.