Plugin Directory

Changeset 3329380


Ignore:
Timestamp:
07/17/2025 05:41:04 AM (9 months ago)
Author:
themeum
Message:

Update to version 2.3.1 from GitHub

Location:
tutor-lms-migration-tool
Files:
28 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tutor-lms-migration-tool/tags/2.3.1/.github/workflows/build-and-deploy-to-svn.yml

    r3327915 r3329380  
    1010      - name: Checkout repository
    1111        uses: actions/checkout@v4
     12
     13      - name: Install PHP and Composer
     14        run: |
     15          sudo apt-get update
     16          sudo apt-get install -y php-cli unzip curl php-mbstring php-xml
     17          curl -sS https://getcomposer.org/installer | php
     18          sudo mv composer.phar /usr/local/bin/composer
     19
     20      - name: Install Composer Dependencies
     21        run: composer install --no-dev --prefer-dist --optimize-autoloader
    1222
    1323      - name: WordPress Plugin Deploy
  • tutor-lms-migration-tool/tags/2.3.1/readme.txt

    r3327915 r3329380  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 2.3.0
     8Stable tag: 2.3.1
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    126126
    127127== Changelog ==
     128
     129= 2.3.1 - 17 July, 2025 =
     130
     131Fix: Fixed an issue where the vendor autoload file was missing.
    128132
    129133= 2.3.0 - 15 July, 2025 =
  • tutor-lms-migration-tool/tags/2.3.1/tutor-lms-migration-tool.php

    r3327915 r3329380  
    55 * Description: A migration toolkit that allows you to migrate data from other LMS platforms to Tutor LMS.
    66 * Author: Themeum
    7  * Version: 2.3.0
     7 * Version: 2.3.1
    88 * Author URI: http://themeum.com
    99 * Requires at least: 5.3
     
    3131 */
    3232
    33 define( 'TLMT_VERSION', '2.3.0' );
     33define( 'TLMT_VERSION', '2.3.1' );
    3434define( 'TLMT_FILE', __FILE__ );
    3535define( 'TLMT_PATH', plugin_dir_path( TLMT_FILE ) );
  • tutor-lms-migration-tool/trunk/.github/workflows/build-and-deploy-to-svn.yml

    r3327915 r3329380  
    1010      - name: Checkout repository
    1111        uses: actions/checkout@v4
     12
     13      - name: Install PHP and Composer
     14        run: |
     15          sudo apt-get update
     16          sudo apt-get install -y php-cli unzip curl php-mbstring php-xml
     17          curl -sS https://getcomposer.org/installer | php
     18          sudo mv composer.phar /usr/local/bin/composer
     19
     20      - name: Install Composer Dependencies
     21        run: composer install --no-dev --prefer-dist --optimize-autoloader
    1222
    1323      - name: WordPress Plugin Deploy
  • tutor-lms-migration-tool/trunk/readme.txt

    r3327915 r3329380  
    66Tested up to: 6.8
    77Requires PHP: 7.4
    8 Stable tag: 2.3.0
     8Stable tag: 2.3.1
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    126126
    127127== Changelog ==
     128
     129= 2.3.1 - 17 July, 2025 =
     130
     131Fix: Fixed an issue where the vendor autoload file was missing.
    128132
    129133= 2.3.0 - 15 July, 2025 =
  • tutor-lms-migration-tool/trunk/tutor-lms-migration-tool.php

    r3327915 r3329380  
    55 * Description: A migration toolkit that allows you to migrate data from other LMS platforms to Tutor LMS.
    66 * Author: Themeum
    7  * Version: 2.3.0
     7 * Version: 2.3.1
    88 * Author URI: http://themeum.com
    99 * Requires at least: 5.3
     
    3131 */
    3232
    33 define( 'TLMT_VERSION', '2.3.0' );
     33define( 'TLMT_VERSION', '2.3.1' );
    3434define( 'TLMT_FILE', __FILE__ );
    3535define( 'TLMT_PATH', plugin_dir_path( TLMT_FILE ) );
Note: See TracChangeset for help on using the changeset viewer.