Plugin Directory

Changeset 3171616


Ignore:
Timestamp:
10/18/2024 04:58:18 PM (18 months ago)
Author:
dougwollison
Message:

Marking as abandoned.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quickstart/trunk/readme.txt

    r1445996 r3171616  
    22Contributors: dougwollison
    33Tags: development, function, utility, utilities, framework, code, coding
    4 Requires at least: 4.0
    5 Tested up to: 4.5.3
    6 Stable tag: 1.13.0
     4Requires at least: 99.99.99
     5Tested up to: 0.0.0
     6Stable tag: 0.0.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
    99
    10 A utility kit for quick development of WordPress themes (and plugins).
    11 
    1210== Description ==
    1311
    14 QuickStart is an ever expanding utility kit of handy functions, callbacks and tools for setting up various features of your theme, namely the backend stuff like custom post types, meta boxes, style/script registration, tinyMCE features, and much more.
    15 
    16 == Installation ==
    17 
    18 1. Upload the contents of `quickstart.tar.gz` to your `/wp-content/plugins/` directory.
    19 2. Activate the plugin through the 'Plugins' menu in WordPress.
    20 3. In your theme's functions.php folder, call QuickStart(), passing a configuration array, and an optional defaults array.
    21 
    22 == Changelog ==
    23 
    24 **Details on each release can be found [on the GitHub releases page](https://github.com/dougwollison/quickstart/releases) for this project.**
    25 
    26 = 1.13.0 =
    27 New "Unpublish" helper. Various bug fixes, improved option support/handling.
    28 
    29 = 1.12.1 =
    30 Fixed conflict with WordPress 4.4 (**The functions `get/the_post_thumbnail_url` have been renamed to `get/the_post_attachment_image_url`**).
    31 
    32 = 1.12.0 =
    33 New Walkers helper (WIP collection of custom Walker classes), numeric_values option on select/list fields, various bug fixes and framework tweaks.
    34 
    35 = 1.11.1 =
    36 Bug fixes regarding index_page feature, and added some better sanity checks to shorthand processing. Hiding wp_head will now also remove emoji stuff. A few other tweaks for future proofing as well.
    37 
    38 = 1.11.0 =
    39 New Section Manager feature; tie non-public section posts to a page or other post for more flexible content management. Meta boxes, post types, taxonomies, fields and field types now support various shorthand forms for a variety of settings in a single string. Also added special select field types, widget loading tools, and the usual tweaks and fixes to the code.
    40 
    41 = 1.10.1 =
    42 Improvements to index page feature, including date archive link utilities and custom rewrites (via new add_rewrites tool method). Also added is_login, is_ajax and is_frontend utilities, reworked MCE button registration, and fixed bug with Tools::upload().
    43 
    44 = 1.10.0 =
    45 Added term meta data support, along with custom fields for terms (as well as users); as such, the order manager feature now works for posts and terms. New wpedit helper now available, for inserting "Edit This" buttons onto the front end. Also added specialized handling of "hidden" input type, blanket "all" option available for load_helpers, and hide_comments now forcibly disables comments, pings, and XML RPC. Numerous bug fixes, internal structure enhancements, and some additional utilities have been added as well.
    46 
    47 = 1.9.2 =
    48 Bug fixes; relabel_posts issues, added jquery-ui-sortable dependency for qs-helpers.js, fixed arguments list for Template::ga_code().
    49 
    50 = 1.9.1 =
    51 Minor bug fix to get_index(), added qs_helper_is_index_page filter.
    52 
    53 = 1.9.0 =
    54 Code restructuring, supports can be passed as a list now, merged `Hooks` with `Tools` (backwards-compatible though), ditched fill_array (use array_pad instead), added filter option to `Template::title()`, and reworked handling of features for better extensibility.
    55 
    56 = 1.8.0 =
    57 Major updates; numerous new features, bug fixes, and extensibility improvements. [Details on GitHub](https://github.com/dougwollison/quickstart/releases/tag/v1.8.0).
    58 
    59 = 1.7.0 =
    60 Added description option to field settings (prints a description paragraph after the field), also further refined input attribute filtering/escaping.
    61 
    62 = 1.6.2 =
    63 Added Google Analytics code helper to QuickStart\Template, minor bug fixes to addFile field.
    64 
    65 = 1.6.1 =
    66 Fixed bug with addFile not loading selected attachment in single mode, restructured files and added auto loading.
    67 
    68 = 1.6.0 =
    69 Quick sort buttons for sortables, post type index feature, smarter checklists, index helper, lots of stuff.
    70 
    71 = 1.5.0 =
    72 New repeater field capabilities, static option on taxonomies, taxonomy option on meta_box.
    73 
    74 = 1.4.2 =
    75 Added get_value and post_field options for fields. Also fixed bug with multi-value select fields.
    76 
    77 = 1.4.1 =
    78 Bug fixes for child page registration and field building. Also updated styling on file adders.
    79 
    80 = 1.4.0 =
    81 Forms upgrading, QS.helpers CSS/JS, and now using SASS.
    82 
    83 = 1.3.5 =
    84 Added smarter handling of metaboxes that use only 1 field, fixed typo that breaks get_values usage.
    85 
    86 = 1.3.4 =
    87 Fixed bug caused by v1.3.3 with taxonomies and meta boxes not registering.
    88 
    89 = 1.3.3 =
    90 Added addfile field type, minor bug fixes with submenus and metaboxes.
    91 
    92 = 1.3.2 =
    93 Fixed bug with sidebars not being registered.
    94 
    95 = 1.3.1 =
    96 Updated post_type_count, dropped taxonomy_count.
    97 
    98 = 1.3.0 =
    99 Revisions to custom page/settings handling, field building, and metabox building. Added disable_quickedit.
    100 
    101 = 1.2.0 =
    102 New php/js tools, metabox saving and plugin registration fixes.
    103 
    104 = 1.1.4 =
    105 Fixed issue with custom page registration.
    106 
    107 = 1.1.3 =
    108 Fixed issue with wrap_with_label setting, also cleaned up QuickStart\Form.
    109 
    110 = 1.1.2 =
    111 Fixed preloading when passing a numeric array of terms.
    112 
    113 = 1.1.1 =
    114 Fixed save_meta_box issue when saving field data.
    115 
    116 = 1.1.0 =
    117 Bug fixes, key changes, documented example code.
    118 
    119 = 1.0.0 =
    120 Initial public release.
    121 
    122 == Upgrade Notice ==
    123 
    124 = 1.12.1 =
    125 **INCOMPATIBILITY NOTICE:** Due to WordPress 4.4 finally implementing their own `get/the_post_thumbnail_url()` function, the one added by the Attachment helper has been renamed to `get/the_post_attachment_image_url()`. Please update your theme files to use this new name for the function.
     12**This plugin is no longer being developed.**
Note: See TracChangeset for help on using the changeset viewer.