Changeset 608975
- Timestamp:
- 10/06/2012 09:42:52 PM (13 years ago)
- Location:
- wp-pde
- Files:
-
- 2 edited
-
tags/1.0/readme.txt (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-pde/tags/1.0/readme.txt
r608972 r608975 6 6 Tested up to: 3.4.2 7 7 Stable tag: 1.0 8 License: GPLv2 8 9 9 10 A development environment for creating plugins with support for widgets, actions and hooks. … … 91 92 == Changelog == 92 93 94 93 95 = 1.0 = 94 96 95 Features: 96 97 1. When a PDE Plugin is enabled/disabled, the page is refreshed. Any errors in the enabled plugin are displayed in the message area. 98 2. Using the external files metabox, you can add a new empty file now. 99 3. Text areas support full-width option. 100 4. An action button component is available. WpPDE Pro menu pages add an action hook for the same. In widgets and metaboxes you need to use markup component to add appropriate ajax code and use wp_ajax/wp_ajax_nopriv hooks on the backend. 101 5. A raw option is added for markup. The markup contents as is are copied into the generated code. 102 6. Dropdown list supports multiple selection now. 103 7. Dropdown list supports a php code fragment in the options. Use this to call a php method that generates the appropriate markup for the option list. 104 8. A pde-widget-defaults hook is added. You can update the defaults for the widget for using this. 105 9. Ace editor support is enhanced: you can select vim/emacs key binding. display indent option is also added. A editor keybindings help is added as a metabox. We use ace editor bundle from acebuilds project. 106 10. Checkbox supports a label now. 107 11. WpPDE supports FirePHP which is bundled along with it. You can use firephp classes/methods. See the help. 108 12. Ace editor hooks to Command/Control+B for updating the project. 109 13. The action/filter selection uses select2 dropdown which allows for search in the list. You need to populate the hooks table. See help. 110 14. Save on change option for text area editor - useful with itsalltext plugin. 111 15. Multi file uploader 112 113 Bug Fixes: 114 115 1. The php-markdown folder is added to generated plugins. Needed to support help. 116 2. Added License: to readme.txt 117 3. When textarea editor is choosen the plugin duplicate functionality was not active. 118 4. Editor change contents (text area) not setting dirty flag. 119 5. The form editor supports upto 10 levels now. Due to a bug, this was only 4 levels earlier. 120 6. Textarea component was not saving the number of rows. 121 7. External files copied into the plugin folder have a '/' prefixed. 122 8. The save editor contents, add form item etc. ajax calls shows proper error messages when failed now. 123 9. A markup form item when added also creates a form field. Useful for adding hidden fields. 124 10. Multiple color pickers not working in a single form. 125 11. The zip contents do not have a version tag prefix now. Followed normal Wordpress custom. 97 * When a PDE Plugin is enabled/disabled, the page is refreshed. Any errors in the enabled plugin are displayed in the message area. 98 * Using the external files metabox, you can add a new empty file now. 99 * Text areas support full-width option. 100 * An action button component is available. WpPDE Pro menu pages add an action hook for the same. In widgets and metaboxes you need to use markup component to add appropriate ajax code and use wp_ajax/wp_ajax_nopriv hooks on the backend. 101 * A raw option is added for markup. The markup contents as is are copied into the generated code. 102 * Dropdown list supports multiple selection now. 103 * Dropdown list supports a php code fragment in the options. Use this to call a php method that generates the appropriate markup for the option list. 104 * A pde-widget-defaults hook is added. You can update the defaults for the widget for using this. 105 * Ace editor support is enhanced: you can select vim/emacs key binding. display indent option is also added. A editor keybindings help is added as a metabox. We use ace editor bundle from acebuilds project. 106 * Checkbox supports a label now. 107 * WpPDE supports FirePHP which is bundled along with it. You can use firephp classes/methods. See the help. 108 * Ace editor hooks to Command/Control+B for updating the project. 109 * The action/filter selection uses select2 dropdown which allows for search in the list. You need to populate the hooks table. See help. 110 * Save on change option for text area editor - useful with itsalltext plugin. 111 * Multi file uploader 112 * The php-markdown folder is added to generated plugins. Needed to support help. 113 * Added License: to readme.txt 114 * When textarea editor is choosen the plugin duplicate functionality was not active. 115 * Editor change contents (text area) not setting dirty flag. 116 * The form editor supports upto 10 levels now. Due to a bug, this was only 4 levels earlier. 117 * Textarea component was not saving the number of rows. 118 * External files copied into the plugin folder have a '/' prefixed. 119 * The save editor contents, add form item etc. ajax calls shows proper error messages when failed now. 120 * A markup form item when added also creates a form field. Useful for adding hidden fields. 121 * Multiple color pickers not working in a single form. 122 * The zip contents do not have a version tag prefix now. Followed normal Wordpress custom. 126 123 127 124 = 0.9.4 = … … 170 167 = 0.9 = 171 168 * First release 172 -
wp-pde/trunk/readme.txt
r608965 r608975 6 6 Tested up to: 3.4.2 7 7 Stable tag: 1.0 8 License: GPLv2 8 9 9 10 A development environment for creating plugins with support for widgets, actions and hooks. … … 91 92 == Changelog == 92 93 94 93 95 = 1.0 = 94 96 95 Features: 96 97 1. When a PDE Plugin is enabled/disabled, the page is refreshed. Any errors in the enabled plugin are displayed in the message area. 98 2. Using the external files metabox, you can add a new empty file now. 99 3. Text areas support full-width option. 100 4. An action button component is available. WpPDE Pro menu pages add an action hook for the same. In widgets and metaboxes you need to use markup component to add appropriate ajax code and use wp_ajax/wp_ajax_nopriv hooks on the backend. 101 5. A raw option is added for markup. The markup contents as is are copied into the generated code. 102 6. Dropdown list supports multiple selection now. 103 7. Dropdown list supports a php code fragment in the options. Use this to call a php method that generates the appropriate markup for the option list. 104 8. A pde-widget-defaults hook is added. You can update the defaults for the widget for using this. 105 9. Ace editor support is enhanced: you can select vim/emacs key binding. display indent option is also added. A editor keybindings help is added as a metabox. We use ace editor bundle from acebuilds project. 106 10. Checkbox supports a label now. 107 11. WpPDE supports FirePHP which is bundled along with it. You can use firephp classes/methods. See the help. 108 12. Ace editor hooks to Command/Control+B for updating the project. 109 13. The action/filter selection uses select2 dropdown which allows for search in the list. You need to populate the hooks table. See help. 110 14. Save on change option for text area editor - useful with itsalltext plugin. 111 15. Multi file uploader 112 113 Bug Fixes: 114 115 1. The php-markdown folder is added to generated plugins. Needed to support help. 116 2. Added License: to readme.txt 117 3. When textarea editor is choosen the plugin duplicate functionality was not active. 118 4. Editor change contents (text area) not setting dirty flag. 119 5. The form editor supports upto 10 levels now. Due to a bug, this was only 4 levels earlier. 120 6. Textarea component was not saving the number of rows. 121 7. External files copied into the plugin folder have a '/' prefixed. 122 8. The save editor contents, add form item etc. ajax calls shows proper error messages when failed now. 123 9. A markup form item when added also creates a form field. Useful for adding hidden fields. 124 10. Multiple color pickers not working in a single form. 125 11. The zip contents do not have a version tag prefix now. Followed normal Wordpress custom. 97 * When a PDE Plugin is enabled/disabled, the page is refreshed. Any errors in the enabled plugin are displayed in the message area. 98 * Using the external files metabox, you can add a new empty file now. 99 * Text areas support full-width option. 100 * An action button component is available. WpPDE Pro menu pages add an action hook for the same. In widgets and metaboxes you need to use markup component to add appropriate ajax code and use wp_ajax/wp_ajax_nopriv hooks on the backend. 101 * A raw option is added for markup. The markup contents as is are copied into the generated code. 102 * Dropdown list supports multiple selection now. 103 * Dropdown list supports a php code fragment in the options. Use this to call a php method that generates the appropriate markup for the option list. 104 * A pde-widget-defaults hook is added. You can update the defaults for the widget for using this. 105 * Ace editor support is enhanced: you can select vim/emacs key binding. display indent option is also added. A editor keybindings help is added as a metabox. We use ace editor bundle from acebuilds project. 106 * Checkbox supports a label now. 107 * WpPDE supports FirePHP which is bundled along with it. You can use firephp classes/methods. See the help. 108 * Ace editor hooks to Command/Control+B for updating the project. 109 * The action/filter selection uses select2 dropdown which allows for search in the list. You need to populate the hooks table. See help. 110 * Save on change option for text area editor - useful with itsalltext plugin. 111 * Multi file uploader 112 * The php-markdown folder is added to generated plugins. Needed to support help. 113 * Added License: to readme.txt 114 * When textarea editor is choosen the plugin duplicate functionality was not active. 115 * Editor change contents (text area) not setting dirty flag. 116 * The form editor supports upto 10 levels now. Due to a bug, this was only 4 levels earlier. 117 * Textarea component was not saving the number of rows. 118 * External files copied into the plugin folder have a '/' prefixed. 119 * The save editor contents, add form item etc. ajax calls shows proper error messages when failed now. 120 * A markup form item when added also creates a form field. Useful for adding hidden fields. 121 * Multiple color pickers not working in a single form. 122 * The zip contents do not have a version tag prefix now. Followed normal Wordpress custom. 126 123 127 124 = 0.9.4 = … … 170 167 = 0.9 = 171 168 * First release 172
Note: See TracChangeset
for help on using the changeset viewer.