Plugin Directory

Changeset 3465461


Ignore:
Timestamp:
02/20/2026 01:34:03 AM (3 weeks ago)
Author:
codepeople2
Message:

New version 1.8.0
Modifications in the changelogs.

Location:
music-player-for-woocommerce
Files:
118 added
2 edited

Legend:

Unmodified
Added
Removed
  • music-player-for-woocommerce/trunk/readme.txt

    r3453905 r3465461  
    55Requires at least: 3.5.0
    66Tested up to: 6.9
    7 Stable tag: 1.7.9
     7Stable tag: 1.8.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    266266== Changelog ==
    267267
     268= 1.8.0 =
     269
     270* Updates the .htaccess file within the wcmp directory to resolve conflicts caused by certain server configurations.
     271
    268272= 1.7.9 =
    269273
  • music-player-for-woocommerce/trunk/wcmp.php

    r3453905 r3465461  
    33Plugin Name: Music Player for WooCommerce
    44Plugin URI: https://wcmp.dwbooster.com
    5 Version: 1.7.9
     5Version: 1.8.0
    66Text Domain: music-player-for-woocommerce
    77Author: CodePeople
     
    4242define( 'WCMP_DEFAULT_PlAYER_TITLE', 1 );
    4343define( 'WCMP_REMOTE_TIMEOUT', 120 );
    44 define( 'WCMP_VERSION', '1.7.9' );
     44define( 'WCMP_VERSION', '1.8.0' );
    4545
    4646// Load Tools
     
    18101810                if ( ! file_exists( $this->_files_directory_path . '.htaccess' ) ) {
    18111811                    try {
    1812                         file_put_contents( $this->_files_directory_path . '.htaccess', 'Options -Indexes' );
     1812                        $_htaccess_content = 'Options -Indexes' . "\n\n" . '<FilesMatch "\.(mp3|mp4|ogg|m4a|mpga|wav)$">' . "\n" . '    FileETag None' . "\n" . '    Header unset ETag' . "\n" . '    Header set Cache-Control "public, must-revalidate"' . "\n" . '</FilesMatch>' . "\n";
     1813                        file_put_contents( $this->_files_directory_path . '.htaccess', $_htaccess_content );
    18131814                    } catch ( Exception $err ) {}
    18141815                }
Note: See TracChangeset for help on using the changeset viewer.