Plugin Directory

Changeset 2123335


Ignore:
Timestamp:
07/15/2019 04:24:10 PM (7 years ago)
Author:
plugincraft
Message:

readme.txt

Location:
mediamatic/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • mediamatic/trunk/admin/js/hook-add-new-upload.js

    r2098277 r2123335  
    1111        setTimeout(function() {
    1212            if (uploader) {
    13                 uploader.on('BeforeUpload', function(uploader, file) {
     13                uploader.bind('BeforeUpload', function(uploader, file) {
    1414                    var params = uploader.settings.multipart_params;
    1515                    params.themedoWMCFolder = $('.themedo-mediamatic-editcategory-filter').val();
     
    1717                });
    1818            }
    19         }.on(this), 500);
     19        }.bind(this), 500);
    2020    }
    2121
     
    2727    });
    2828})( jQuery );
    29 /*
    30  * For Media > "Add new"
    31  *
    32  * Adds the property to the asyn-upload.php file and modifies the output row while
    33  * uploading a new file.
    34  *
    35  * @see wp-includes/js/plupload/handlers.js
    36  */
  • mediamatic/trunk/admin/js/hook-post-add-media.js

    r2113350 r2123335  
    4343                    if (this.uploader) {
    4444
    45                         this.uploader.on('FileFiltered', function( up, file ) {
     45                        this.uploader.bind('FileFiltered', function( up, file ) {
    4646                           
    4747                        });
    4848
    49                        this.uploader.on('FilesAdded', function( up, files ) {
     49                       this.uploader.bind('FilesAdded', function( up, files ) {
    5050                           
    5151                        });   
    5252
    53                         this.uploader.on('BeforeUpload', function(uploader, file) {
     53                        this.uploader.bind('BeforeUpload', function(uploader) {
    5454                            var params = uploader.settings.multipart_params;
    5555                             //console.log('mediamatic_post_wpfolder_id', mediamatic_post_wpfolder_id)
     
    5858                            }
    5959                       
    60                            
    61                         })
     60                        });
    6261
    63                         this.uploader.on('UploadProgress', function(up, file) {
     62                        this.uploader.bind('UploadProgress', function(up, file) {
    6463                         
    6564                        });
    6665
    67                         this.uploader.on('UploadComplete', function(up, files) {
     66                        this.uploader.bind('UploadComplete', function(up, files) {
    6867
    6968                           
  • mediamatic/trunk/inc/mediamatic-cores.php

    r2098277 r2123335  
    1414{
    1515    if (!is_user_logged_in())
     16    {
     17        return;
     18    }
     19   
     20    if (is_front_page())
    1621    {
    1722        return;
  • mediamatic/trunk/mediamatic.php

    r2114554 r2123335  
    55 * Plugin URI:  https://wordpress.org/plugins/mediamatic/
    66 * Description: Get organized with thousands of images. Organize media into folders.
    7  * Version:     1.4
     7 * Version:     1.5
    88 * Author:      plugincraft
    99 * Author URI:  https://codecanyon.net/user/themedo/portfolio
     
    4040define( 'MEDIAMATIC__FILE__', __FILE__ );
    4141define( 'MEDIAMATIC_FOLDER', 'mediamatic_wpfolder' );
    42 define( 'MEDIAMATIC_VERSION', '1.3' );
     42define( 'MEDIAMATIC_VERSION', '1.5' );
    4343define( 'MEDIAMATIC_PATH', plugin_dir_path( MEDIAMATIC__FILE__ ) );
    4444define( 'MEDIAMATIC_URL', plugins_url( '/', MEDIAMATIC__FILE__ ) );
  • mediamatic/trunk/readme.txt

    r2117838 r2123335  
    77Requires at least: 4.0.0
    88Tested up to: 5.2
    9 Stable tag: 1.4
    109
    1110Organize thousands of WordPress media files into folders/categories easily using drag&drop interface.
     
    9695== Changelog ==
    9796
     97= 1.5 - July 15, 2019 =
     98- Fixed a file attaching to folder while uploading the file.
     99- Fixed the notice issue.
     100
    98101= 1.4 - June 30, 2019 =
    99102- Fixed some credential issues.
Note: See TracChangeset for help on using the changeset viewer.