Changeset 3329380
- Timestamp:
- 07/17/2025 05:41:04 AM (9 months ago)
- Location:
- tutor-lms-migration-tool
- Files:
-
- 28 added
- 6 edited
- 1 copied
-
tags/2.3.1 (copied) (copied from tutor-lms-migration-tool/trunk)
-
tags/2.3.1/.github/workflows/build-and-deploy-to-svn.yml (modified) (1 diff)
-
tags/2.3.1/readme.txt (modified) (2 diffs)
-
tags/2.3.1/tutor-lms-migration-tool.php (modified) (2 diffs)
-
tags/2.3.1/vendor (added)
-
tags/2.3.1/vendor/autoload.php (added)
-
tags/2.3.1/vendor/composer (added)
-
tags/2.3.1/vendor/composer/ClassLoader.php (added)
-
tags/2.3.1/vendor/composer/InstalledVersions.php (added)
-
tags/2.3.1/vendor/composer/LICENSE (added)
-
tags/2.3.1/vendor/composer/autoload_classmap.php (added)
-
tags/2.3.1/vendor/composer/autoload_files.php (added)
-
tags/2.3.1/vendor/composer/autoload_namespaces.php (added)
-
tags/2.3.1/vendor/composer/autoload_psr4.php (added)
-
tags/2.3.1/vendor/composer/autoload_real.php (added)
-
tags/2.3.1/vendor/composer/autoload_static.php (added)
-
tags/2.3.1/vendor/composer/installed.json (added)
-
tags/2.3.1/vendor/composer/installed.php (added)
-
trunk/.github/workflows/build-and-deploy-to-svn.yml (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tutor-lms-migration-tool.php (modified) (2 diffs)
-
trunk/vendor (added)
-
trunk/vendor/autoload.php (added)
-
trunk/vendor/composer (added)
-
trunk/vendor/composer/ClassLoader.php (added)
-
trunk/vendor/composer/InstalledVersions.php (added)
-
trunk/vendor/composer/LICENSE (added)
-
trunk/vendor/composer/autoload_classmap.php (added)
-
trunk/vendor/composer/autoload_files.php (added)
-
trunk/vendor/composer/autoload_namespaces.php (added)
-
trunk/vendor/composer/autoload_psr4.php (added)
-
trunk/vendor/composer/autoload_real.php (added)
-
trunk/vendor/composer/autoload_static.php (added)
-
trunk/vendor/composer/installed.json (added)
-
trunk/vendor/composer/installed.php (added)
Legend:
- Unmodified
- Added
- Removed
-
tutor-lms-migration-tool/tags/2.3.1/.github/workflows/build-and-deploy-to-svn.yml
r3327915 r3329380 10 10 - name: Checkout repository 11 11 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 12 22 13 23 - name: WordPress Plugin Deploy -
tutor-lms-migration-tool/tags/2.3.1/readme.txt
r3327915 r3329380 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 2.3. 08 Stable tag: 2.3.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 126 126 127 127 == Changelog == 128 129 = 2.3.1 - 17 July, 2025 = 130 131 Fix: Fixed an issue where the vendor autoload file was missing. 128 132 129 133 = 2.3.0 - 15 July, 2025 = -
tutor-lms-migration-tool/tags/2.3.1/tutor-lms-migration-tool.php
r3327915 r3329380 5 5 * Description: A migration toolkit that allows you to migrate data from other LMS platforms to Tutor LMS. 6 6 * Author: Themeum 7 * Version: 2.3. 07 * Version: 2.3.1 8 8 * Author URI: http://themeum.com 9 9 * Requires at least: 5.3 … … 31 31 */ 32 32 33 define( 'TLMT_VERSION', '2.3. 0' );33 define( 'TLMT_VERSION', '2.3.1' ); 34 34 define( 'TLMT_FILE', __FILE__ ); 35 35 define( 'TLMT_PATH', plugin_dir_path( TLMT_FILE ) ); -
tutor-lms-migration-tool/trunk/.github/workflows/build-and-deploy-to-svn.yml
r3327915 r3329380 10 10 - name: Checkout repository 11 11 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 12 22 13 23 - name: WordPress Plugin Deploy -
tutor-lms-migration-tool/trunk/readme.txt
r3327915 r3329380 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 2.3. 08 Stable tag: 2.3.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 126 126 127 127 == Changelog == 128 129 = 2.3.1 - 17 July, 2025 = 130 131 Fix: Fixed an issue where the vendor autoload file was missing. 128 132 129 133 = 2.3.0 - 15 July, 2025 = -
tutor-lms-migration-tool/trunk/tutor-lms-migration-tool.php
r3327915 r3329380 5 5 * Description: A migration toolkit that allows you to migrate data from other LMS platforms to Tutor LMS. 6 6 * Author: Themeum 7 * Version: 2.3. 07 * Version: 2.3.1 8 8 * Author URI: http://themeum.com 9 9 * Requires at least: 5.3 … … 31 31 */ 32 32 33 define( 'TLMT_VERSION', '2.3. 0' );33 define( 'TLMT_VERSION', '2.3.1' ); 34 34 define( 'TLMT_FILE', __FILE__ ); 35 35 define( 'TLMT_PATH', plugin_dir_path( TLMT_FILE ) );
Note: See TracChangeset
for help on using the changeset viewer.