Changeset 2456745 – WordPress Plugin Repository
- ️Fri Jan 15 2021
Legend:
- Unmodified
- Added
- Removed
-
wp-media-pro/assets/icon-128x128.jpg
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/jpeg
-
Property
svn:mime-type
changed from
-
wp-media-pro/assets/icon-256x256.jpg
-
Property
svn:mime-type
changed from
application/octet-stream
toimage/jpeg
-
Property
svn:mime-type
changed from
-
wp-media-pro/tags/1.1/README.md
r2338758 r2456745 3 3 WP Media Pro is the must-have toolkit for all WordPress websites that seriously use media. Currently the plugin offers the following functionality: 4 4 5 * Edit individual image sizes empowering editors can optimizes images shown to viewers at different screen sizes. 5 6 * Media folders - Organize your media files into folders in the media library. 6 7 * Media tags - Tag your media files. … … 8 9 * Single media views - Disable single post type view for media files improving SEO. 9 10 11 10 12 ## Issues 13 11 14 If you identify any errors or have an idea for improving the plugin, please [open an issue](https://github.com/tlovett1/wp-media-pro/issues?state=open). 12 15 -
wp-media-pro/tags/1.1/assets/css/folders/base.css
r2338403 r2456745 7 7 .media-frame-router { 8 8 left: 280px; 9 } 10 11 .upload-php .update-nag, 12 .upload-php .wrap > .notice { 13 margin-left: 290px; 9 14 } 10 15 -
wp-media-pro/tags/1.1/assets/css/folders/library.css
r2340643 r2456745 27 27 body.upload-php .media-menu { 28 28 border-right: 0; 29 background-color: #f1f1f1; 29 30 } 30 31 … … 33 34 } 34 35 36 body.upload-php .wpmp-folders-app-shell { 37 position: fixed; 38 width: 280px; 39 } -
wp-media-pro/tags/1.1/inc/classes/Modules/Credits/Credits.php
r2338403 r2456745 25 25 add_filter( 'attachment_fields_to_edit', [ $this, 'attachment_fields' ], 10, 2 ); 26 26 add_filter( 'attachment_fields_to_save', [ $this, 'save_fields' ], 10, 2 ); 27 add_action( 'enqueue_block_editor_assets', [ $this, 'register_block' ] ); 28 } 29 30 public function register_block() { 31 wp_enqueue_script( 32 'wpmp-credits-block', 33 WPMP_URL . '/dist/js/credits.js', 34 [ 35 'wp-blocks', 36 'wp-i18n', 37 'wp-element', 38 'wp-editor', 39 ], 40 WPMP_VERSION, 41 true 42 ); 27 43 } 28 44 … … 54 70 public function attachment_fields( $form_fields, $post ) { 55 71 $form_fields['wpmp_credits'] = [ 56 'label' => esc_html__( 'Credits' ), 72 'label' => esc_html__( 'Credits', 'wpmp' ), 57 73 'class' => 'widefat', 58 74 'value' => sanitize_text_field( get_post_meta( $post->ID, 'wpmp_credits', true ) ), -
wp-media-pro/tags/1.1/plugin.php
r2338758 r2456745 4 4 * Plugin URI: https://wordpress.org/plugins/wp-media-pro 5 5 * Description: The must have media toolkit for WordPress. Organize media and images into folders, media tags, image credits, and much more. 6 * Version: 1.0 6 * Version: 1.1 7 7 * Author: Taylor Lovett 8 8 * Author URI: https://taylorlovett.com … … 20 20 21 21 // Useful global constants. 22 define( 'WPMP_VERSION', '1.0' ); 22 define( 'WPMP_VERSION', '1.1' ); 23 23 define( 'WPMP_URL', plugin_dir_url( __FILE__ ) ); 24 24 define( 'WPMP_PATH', plugin_dir_path( __FILE__ ) ); … … 69 69 Modules\Credits\Credits::instance(); 70 70 Modules\SingleView\SingleView::instance(); 71 Modules\Edit\Edit::instance(); 71 72 72 73 Core\setup(); -
wp-media-pro/tags/1.1/readme.txt
r2338758 r2456745 3 3 Author URI: https://taylorlovett.com 4 4 Plugin URI: https://github.com/tlovett1/wp-media-pro 5 Tags: media, images, image tags, media categories, media folders, image folders, media organization 6 Requires at least: 5.0 7 Tested up to: 5.5 5 Tags: media, images, image tags, media categories, media folders, image folders, media organization, edit image sizes, srcset 6 Requires at least: 5.3 7 Tested up to: 5.7 8 8 Stable tag: trunk 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 The must have media toolkit for WordPress. Organize media and images into folders, media tags, image credits, and much more. 12 The must have media toolkit for WordPress. Edit individual image for specific screen sizes, organize media and images into folders, media tags, image credits, and much more. 13 13 14 14 == Description == 15 15 WP Media Pro is the must-have toolkit for all WordPress websites that seriously use media. Currently the plugin offers the following functionality: 16 16 17 * Edit individual image sizes empowering editors can optimizes images shown to viewers at different screen sizes. 17 18 * Media folders - Organize your media files into folders in the media library. 18 19 * Media tags - Tag your media files. … … 26 27 == Changelog == 27 28 29 = 1.1 = 30 31 * Add edit image size functionality 32 * Bug fixes 33 28 34 = 1.0 = 29 35 -
wp-media-pro/trunk/README.md
r2338758 r2456745 3 3 WP Media Pro is the must-have toolkit for all WordPress websites that seriously use media. Currently the plugin offers the following functionality: 4 4 5 * Edit individual image sizes empowering editors can optimizes images shown to viewers at different screen sizes. 5 6 * Media folders - Organize your media files into folders in the media library. 6 7 * Media tags - Tag your media files. … … 8 9 * Single media views - Disable single post type view for media files improving SEO. 9 10 11 10 12 ## Issues 13 11 14 If you identify any errors or have an idea for improving the plugin, please [open an issue](https://github.com/tlovett1/wp-media-pro/issues?state=open). 12 15 -
wp-media-pro/trunk/assets/css/folders/base.css
r2338403 r2456745 7 7 .media-frame-router { 8 8 left: 280px; 9 } 10 11 .upload-php .update-nag, 12 .upload-php .wrap > .notice { 13 margin-left: 290px; 9 14 } 10 15 -
wp-media-pro/trunk/assets/css/folders/library.css
r2340643 r2456745 27 27 body.upload-php .media-menu { 28 28 border-right: 0; 29 background-color: #f1f1f1; 29 30 } 30 31 … … 33 34 } 34 35 36 body.upload-php .wpmp-folders-app-shell { 37 position: fixed; 38 width: 280px; 39 } -
wp-media-pro/trunk/inc/classes/Modules/Credits/Credits.php
r2338403 r2456745 25 25 add_filter( 'attachment_fields_to_edit', [ $this, 'attachment_fields' ], 10, 2 ); 26 26 add_filter( 'attachment_fields_to_save', [ $this, 'save_fields' ], 10, 2 ); 27 add_action( 'enqueue_block_editor_assets', [ $this, 'register_block' ] ); 28 } 29 30 public function register_block() { 31 wp_enqueue_script( 32 'wpmp-credits-block', 33 WPMP_URL . '/dist/js/credits.js', 34 [ 35 'wp-blocks', 36 'wp-i18n', 37 'wp-element', 38 'wp-editor', 39 ], 40 WPMP_VERSION, 41 true 42 ); 27 43 } 28 44 … … 54 70 public function attachment_fields( $form_fields, $post ) { 55 71 $form_fields['wpmp_credits'] = [ 56 'label' => esc_html__( 'Credits' ), 72 'label' => esc_html__( 'Credits', 'wpmp' ), 57 73 'class' => 'widefat', 58 74 'value' => sanitize_text_field( get_post_meta( $post->ID, 'wpmp_credits', true ) ), -
wp-media-pro/trunk/plugin.php
r2338758 r2456745 4 4 * Plugin URI: https://wordpress.org/plugins/wp-media-pro 5 5 * Description: The must have media toolkit for WordPress. Organize media and images into folders, media tags, image credits, and much more. 6 * Version: 1.0 6 * Version: 1.1 7 7 * Author: Taylor Lovett 8 8 * Author URI: https://taylorlovett.com … … 20 20 21 21 // Useful global constants. 22 define( 'WPMP_VERSION', '1.0' ); 22 define( 'WPMP_VERSION', '1.1' ); 23 23 define( 'WPMP_URL', plugin_dir_url( __FILE__ ) ); 24 24 define( 'WPMP_PATH', plugin_dir_path( __FILE__ ) ); … … 69 69 Modules\Credits\Credits::instance(); 70 70 Modules\SingleView\SingleView::instance(); 71 Modules\Edit\Edit::instance(); 71 72 72 73 Core\setup(); -
wp-media-pro/trunk/readme.txt
r2338758 r2456745 3 3 Author URI: https://taylorlovett.com 4 4 Plugin URI: https://github.com/tlovett1/wp-media-pro 5 Tags: media, images, image tags, media categories, media folders, image folders, media organization 6 Requires at least: 5.0 7 Tested up to: 5.5 5 Tags: media, images, image tags, media categories, media folders, image folders, media organization, edit image sizes, srcset 6 Requires at least: 5.3 7 Tested up to: 5.7 8 8 Stable tag: trunk 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html 11 11 12 The must have media toolkit for WordPress. Organize media and images into folders, media tags, image credits, and much more. 12 The must have media toolkit for WordPress. Edit individual image for specific screen sizes, organize media and images into folders, media tags, image credits, and much more. 13 13 14 14 == Description == 15 15 WP Media Pro is the must-have toolkit for all WordPress websites that seriously use media. Currently the plugin offers the following functionality: 16 16 17 * Edit individual image sizes empowering editors can optimizes images shown to viewers at different screen sizes. 17 18 * Media folders - Organize your media files into folders in the media library. 18 19 * Media tags - Tag your media files. … … 26 27 == Changelog == 27 28 29 = 1.1 = 30 31 * Add edit image size functionality 32 * Bug fixes 33 28 34 = 1.0 = 29 35
Note: See TracChangeset for help on using the changeset viewer.