Changeset 1967947
- Timestamp:
- 11/02/2018 06:15:55 PM (7 years ago)
- Location:
- jarvis/trunk
- Files:
-
- 1 deleted
- 5 edited
-
README.md (modified) (1 diff)
-
assets (deleted)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/php/models/post.php (modified) (1 diff)
-
src/php/plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jarvis/trunk/README.md
r1967327 r1967947 75 75 9. 1.0.1 76 76 * Fix an installation issue some users were reporting 77 10. 1.0.2 78 * Send attachment suggestions to the 'Edit more details' page instead of the grid view as wp.media-grid throws an error if the item is not already loaded in the grid 77 79 78 80 ## Develop -
jarvis/trunk/package.json
r1967327 r1967947 1 1 { 2 2 "name": "jarvis", 3 "version": "1.0. 1",3 "version": "1.0.2", 4 4 "description": " Jarvis is your admin assistant, putting WordPress at your fingertips via a quicksearch interface.", 5 5 "main": "index.js", -
jarvis/trunk/readme.txt
r1967327 r1967947 8 8 Requires at least: 4.8 9 9 Tested up to: 4.9.8 10 Stable tag: 1.0. 111 Version: 1.0. 110 Stable tag: 1.0.2 11 Version: 1.0.2 12 12 License: GPLv2 or later 13 13 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 == Changelog == 67 67 68 = 1.0.2 = 69 * Send attachment suggestions to the 'Edit more details' page instead of the grid view as wp.media-grid throws an error if the item is not already loaded in the grid 70 68 71 = 1.0.1 = 69 72 * Fix an installation issue some users were reporting -
jarvis/trunk/src/php/models/post.php
r1966854 r1967947 14 14 $this->kind = 'post'; 15 15 $this->iconKey = $post->post_type; 16 $this->href = admin_url( sprintf( 'post.php?post=%d&action=edit', $this->id ) ); 16 17 17 18 if ( 'attachment' === $this->type ) { 18 19 19 $this->href = admin_url( sprintf( 'upload.php?item=%d', $this->id ) );20 20 $this->iconType = 'image'; 21 21 $this->icon = wp_get_attachment_image_src( $this->id, 'thumbnail' )[0]; 22 22 23 23 } else { 24 25 $this->href = admin_url( sprintf( 'post.php?post=%d&action=edit', $this->id ) );26 24 27 25 if ( has_post_thumbnail( $this->id ) ) { -
jarvis/trunk/src/php/plugin.php
r1967327 r1967947 8 8 * Le version of le plugin 9 9 */ 10 const VERSION = '1.0. 1';10 const VERSION = '1.0.2'; 11 11 12 12 /**
Note: See TracChangeset
for help on using the changeset viewer.