Changeset 2123335
- Timestamp:
- 07/15/2019 04:24:10 PM (7 years ago)
- Location:
- mediamatic/trunk
- Files:
-
- 5 edited
-
admin/js/hook-add-new-upload.js (modified) (3 diffs)
-
admin/js/hook-post-add-media.js (modified) (2 diffs)
-
inc/mediamatic-cores.php (modified) (1 diff)
-
mediamatic.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mediamatic/trunk/admin/js/hook-add-new-upload.js
r2098277 r2123335 11 11 setTimeout(function() { 12 12 if (uploader) { 13 uploader. on('BeforeUpload', function(uploader, file) {13 uploader.bind('BeforeUpload', function(uploader, file) { 14 14 var params = uploader.settings.multipart_params; 15 15 params.themedoWMCFolder = $('.themedo-mediamatic-editcategory-filter').val(); … … 17 17 }); 18 18 } 19 }. on(this), 500);19 }.bind(this), 500); 20 20 } 21 21 … … 27 27 }); 28 28 })( jQuery ); 29 /*30 * For Media > "Add new"31 *32 * Adds the property to the asyn-upload.php file and modifies the output row while33 * uploading a new file.34 *35 * @see wp-includes/js/plupload/handlers.js36 */ -
mediamatic/trunk/admin/js/hook-post-add-media.js
r2113350 r2123335 43 43 if (this.uploader) { 44 44 45 this.uploader. on('FileFiltered', function( up, file ) {45 this.uploader.bind('FileFiltered', function( up, file ) { 46 46 47 47 }); 48 48 49 this.uploader. on('FilesAdded', function( up, files ) {49 this.uploader.bind('FilesAdded', function( up, files ) { 50 50 51 51 }); 52 52 53 this.uploader. on('BeforeUpload', function(uploader, file) {53 this.uploader.bind('BeforeUpload', function(uploader) { 54 54 var params = uploader.settings.multipart_params; 55 55 //console.log('mediamatic_post_wpfolder_id', mediamatic_post_wpfolder_id) … … 58 58 } 59 59 60 61 }) 60 }); 62 61 63 this.uploader. on('UploadProgress', function(up, file) {62 this.uploader.bind('UploadProgress', function(up, file) { 64 63 65 64 }); 66 65 67 this.uploader. on('UploadComplete', function(up, files) {66 this.uploader.bind('UploadComplete', function(up, files) { 68 67 69 68 -
mediamatic/trunk/inc/mediamatic-cores.php
r2098277 r2123335 14 14 { 15 15 if (!is_user_logged_in()) 16 { 17 return; 18 } 19 20 if (is_front_page()) 16 21 { 17 22 return; -
mediamatic/trunk/mediamatic.php
r2114554 r2123335 5 5 * Plugin URI: https://wordpress.org/plugins/mediamatic/ 6 6 * Description: Get organized with thousands of images. Organize media into folders. 7 * Version: 1. 47 * Version: 1.5 8 8 * Author: plugincraft 9 9 * Author URI: https://codecanyon.net/user/themedo/portfolio … … 40 40 define( 'MEDIAMATIC__FILE__', __FILE__ ); 41 41 define( 'MEDIAMATIC_FOLDER', 'mediamatic_wpfolder' ); 42 define( 'MEDIAMATIC_VERSION', '1. 3' );42 define( 'MEDIAMATIC_VERSION', '1.5' ); 43 43 define( 'MEDIAMATIC_PATH', plugin_dir_path( MEDIAMATIC__FILE__ ) ); 44 44 define( 'MEDIAMATIC_URL', plugins_url( '/', MEDIAMATIC__FILE__ ) ); -
mediamatic/trunk/readme.txt
r2117838 r2123335 7 7 Requires at least: 4.0.0 8 8 Tested up to: 5.2 9 Stable tag: 1.410 9 11 10 Organize thousands of WordPress media files into folders/categories easily using drag&drop interface. … … 96 95 == Changelog == 97 96 97 = 1.5 - July 15, 2019 = 98 - Fixed a file attaching to folder while uploading the file. 99 - Fixed the notice issue. 100 98 101 = 1.4 - June 30, 2019 = 99 102 - Fixed some credential issues.
Note: See TracChangeset
for help on using the changeset viewer.