Changeset 1706370
- Timestamp:
- 08/01/2017 02:00:24 PM (9 years ago)
- Location:
- custom-post-type-maker
- Files:
-
- 4 edited
- 6 copied
-
tags/1.1.3 (copied) (copied from custom-post-type-maker/trunk)
-
tags/1.1.3/CHANGELOG.md (copied) (copied from custom-post-type-maker/trunk/CHANGELOG.md) (1 diff)
-
tags/1.1.3/README.md (copied) (copied from custom-post-type-maker/trunk/README.md) (1 diff)
-
tags/1.1.3/custom-post-type-maker.php (copied) (copied from custom-post-type-maker/trunk/custom-post-type-maker.php) (4 diffs)
-
tags/1.1.3/lang (copied) (copied from custom-post-type-maker/trunk/lang)
-
tags/1.1.3/readme.txt (copied) (copied from custom-post-type-maker/trunk/readme.txt) (2 diffs)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/custom-post-type-maker.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-type-maker/tags/1.1.3/CHANGELOG.md
r1706357 r1706370 1 1 ## Changelog 2 3 ### 1.1.3 4 - Removed forgotten development dump. Sorry about that. 2 5 3 6 ### 1.1.2 -
custom-post-type-maker/tags/1.1.3/README.md
r1706357 r1706370 23 23 24 24 ## Changelog 25 26 ### 1.1.3 27 - Removed forgotten development dump. Sorry about that. 25 28 26 29 ### 1.1.2 -
custom-post-type-maker/tags/1.1.3/custom-post-type-maker.php
r1706357 r1706370 4 4 Plugin URI: https://github.com/Graffino/custom-post-type-maker-ui 5 5 Description: Custom Post Type Maker lets you create Custom Post Types and custom Taxonomies in a user friendly way. 6 Version: 1.1. 26 Version: 1.1.3 7 7 Author: Graffino 8 8 Author URI: http://www.graffino.com/ … … 25 25 * @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2 26 26 * @package Custom_Post_Types_Maker 27 * @version 1.1. 227 * @version 1.1.3 28 28 */ 29 29 … … 59 59 $this->dir = plugins_url( '', __FILE__ ); 60 60 $this->path = plugin_dir_path( __FILE__ ); 61 $this->version = '1.1. 2';61 $this->version = '1.1.3'; 62 62 63 63 // actions … … 339 339 'taxonomies' => $cptm_post_type['cptm_builtin_taxonomies'] 340 340 ); 341 var_dump($args); //die();342 341 if ( $cptm_post_type['cptm_name'] != 'no_name' ) 343 342 register_post_type( $cptm_post_type['cptm_name'], $args); -
custom-post-type-maker/tags/1.1.3/readme.txt
r1706357 r1706370 67 67 == Changelog == 68 68 69 = 1.1.3 70 - Removed forgotten development dump. Sorry about that. 71 69 72 = 1.1.2 = 70 73 - [Bugfix] Make `with_front` available in `register_post` when set to `false` (Credit: @cmerrick). Closes: [#7](https://github.com/Graffino/Custom-Post-Type-Maker/issues/7) … … 97 100 == Upgrade Notice == 98 101 102 = 1.1.3 = 103 - Removed forgotten development dump in v1.1.2. Sorry about that. 104 99 105 = 1.1.1 = 100 106 - Important upgrade: this fixes permalink errors after upgrading to v1.1.0 on existing installations. -
custom-post-type-maker/trunk/CHANGELOG.md
r1706357 r1706370 1 1 ## Changelog 2 3 ### 1.1.3 4 - Removed forgotten development dump. Sorry about that. 2 5 3 6 ### 1.1.2 -
custom-post-type-maker/trunk/README.md
r1706357 r1706370 23 23 24 24 ## Changelog 25 26 ### 1.1.3 27 - Removed forgotten development dump. Sorry about that. 25 28 26 29 ### 1.1.2 -
custom-post-type-maker/trunk/custom-post-type-maker.php
r1706357 r1706370 4 4 Plugin URI: https://github.com/Graffino/custom-post-type-maker-ui 5 5 Description: Custom Post Type Maker lets you create Custom Post Types and custom Taxonomies in a user friendly way. 6 Version: 1.1. 26 Version: 1.1.3 7 7 Author: Graffino 8 8 Author URI: http://www.graffino.com/ … … 25 25 * @license http://www.gnu.org/licenses/gpl-2.0.html GPLv2 26 26 * @package Custom_Post_Types_Maker 27 * @version 1.1. 227 * @version 1.1.3 28 28 */ 29 29 … … 59 59 $this->dir = plugins_url( '', __FILE__ ); 60 60 $this->path = plugin_dir_path( __FILE__ ); 61 $this->version = '1.1. 2';61 $this->version = '1.1.3'; 62 62 63 63 // actions … … 339 339 'taxonomies' => $cptm_post_type['cptm_builtin_taxonomies'] 340 340 ); 341 var_dump($args); //die();342 341 if ( $cptm_post_type['cptm_name'] != 'no_name' ) 343 342 register_post_type( $cptm_post_type['cptm_name'], $args); -
custom-post-type-maker/trunk/readme.txt
r1706357 r1706370 67 67 == Changelog == 68 68 69 = 1.1.3 70 - Removed forgotten development dump. Sorry about that. 71 69 72 = 1.1.2 = 70 73 - [Bugfix] Make `with_front` available in `register_post` when set to `false` (Credit: @cmerrick). Closes: [#7](https://github.com/Graffino/Custom-Post-Type-Maker/issues/7) … … 97 100 == Upgrade Notice == 98 101 102 = 1.1.3 = 103 - Removed forgotten development dump in v1.1.2. Sorry about that. 104 99 105 = 1.1.1 = 100 106 - Important upgrade: this fixes permalink errors after upgrading to v1.1.0 on existing installations.
Note: See TracChangeset
for help on using the changeset viewer.