Plugin Directory

Changeset 3465466


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

New version 1.4.3
Modifications in the changelogs.

Location:
music-player-for-easy-digital-downloads
Files:
89 added
2 edited

Legend:

Unmodified
Added
Removed
  • music-player-for-easy-digital-downloads/trunk/eddmp.php

    r3454198 r3465466  
    33Plugin Name: Music Player for Easy Digital Downloads
    44Plugin URI: http://wordpress.dwbooster.com/content-tools/music-player-for-easy-digital-downloads
    5 Version: 1.4.2
     5Version: 1.4.3
    66Text Domain: music-player-for-easy-digital-downloads
    77Author: CodePeople
     
    3333
    3434// CONSTANTS
    35 define( 'EDDMP_PLUGIN_VERSION', '1.4.2' );
     35define( 'EDDMP_PLUGIN_VERSION', '1.4.3' );
    3636define( 'EDDMP_PLUGIN_PATH', __FILE__ );
    3737define( 'EDDMP_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
     
    10741074                if ( ! file_exists( $this->_files_directory_path . '.htaccess' ) ) {
    10751075                    try {
    1076                         file_put_contents( $this->_files_directory_path . '.htaccess', 'Options -Indexes' );
     1076                        $_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";
     1077                        file_put_contents( $this->_files_directory_path . '.htaccess', $_htaccess_content );
    10771078                    } catch ( Exception $err ) {}
    10781079                }
  • music-player-for-easy-digital-downloads/trunk/readme.txt

    r3454198 r3465466  
    55Requires at least: 3.5.0
    66Tested up to: 6.9
    7 Stable tag: 1.4.2
     7Stable tag: 1.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    206206== Changelog ==
    207207
     208= 1.4.3 =
     209
     210* Updates the .htaccess file within the wcmp directory to resolve conflicts caused by certain server configurations.
     211
    208212= 1.4.2 =
    209213
Note: See TracChangeset for help on using the changeset viewer.