wp/wp-content/plugins/option-tree/readme.txt
changeset 5 5e2f62d02dcd
parent 0 d970ebf37754
child 7 cf61fcea0001
--- a/wp/wp-content/plugins/option-tree/readme.txt	Mon Jun 08 16:11:51 2015 +0000
+++ b/wp/wp-content/plugins/option-tree/readme.txt	Tue Jun 09 03:35:32 2015 +0200
@@ -1,37 +1,122 @@
 === OptionTree ===
 Contributors: valendesigns
 Donate link: http://bit.ly/NuXI3T
-Tags: admin, theme options, meta boxes, options, admin interface, ajax
-Requires at least: 3.5
-Tested up to: 3.6
-Stable tag: 2.1.4
+Tags: options, theme options, meta boxes
+Requires at least: 3.8
+Tested up to: 4.2
+Stable tag: 2.5.5
 License: GPLv3
 
 Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
 
 == Description ==
 
-Theme Options are what make a WordPress Theme truly custom. OptionTree attempts to bridge the gap between developers, designers and end-users by solving the admin User Interface issues that arise when creating a custom theme. Designers shouldn't have to be limited to what they can create visually because their programming skills aren't as developed as they would like. Also, programmers shouldn't have to recreate the wheel for every new project, so in walks OptionTree.
+OptionTree attempts to bridge the gap between WordPress developers, designers and end-users by creating fully responsive option panels and meta boxes with an ease unlike any other plugin. OptionTree has many advanced features with well placed hooks and filters to adjust every aspect of the user experience. 
+
+Build your Theme Options panel locally with an easy to use drag & drop interface and then export a functioning `theme-options.php` file for production use that is i18n translation ready, with your custom text domain automatically inserted. 
+
+And, in just a few simple lines of code, save settings to the database with a unique array ID so none of your Theme Options conflict with other themes that use OptionTree. 
+
+Also, OptionTree now takes full advantage of the new color schemes introduced in WordPress 3.8, it looks and feels built-in.
 
-With OptionTree you can create as many Theme Options as your project requires and use them how you see fit. When you add a option to the Settings page, it will be available on the Theme Options page for use in your theme. 
+#### Theme Integration
+If you're like me, you want to know how everything works. Download and activate the [OptionTree Theme](https://github.com/valendesigns/option-tree-theme) and see first hand how to integrate OptionTree into your own project. I'll walk you through installing OptionTree and you'll get a chance to see all the various options and filters first hand and in the wild.
+
+#### Contributing
+To contribute or report bugs, please go to the [OptionTree Github](https://github.com/valendesigns/option-tree) repository.
+
+#### Sponsorship
+OptionTree is a project partly sponsored by <a href="http://themeforest.net/?ref=valendesigns">ThemeForest</a>, the largest WordPress theme marketplace on the web.
+
+#### Option Types
+This is a complete list of all the available option types that come shipped with OptionTree.
 
-Included is the ability to Import/Export all the theme options and data for packaging with custom themes or local development. With the Import/Export feature you can get a theme set up on a live server in minutes. Theme authors can now create different version of their themes and include them with the download. It makes setting up different theme styles & options easier than ever because a theme user installs the plugin and theme and either adds their own settings or imports your defaults.
-
-A new feature in OptionTree 2.0 is the ability to include the plugin directly in your themes root directory. Not only does that mean your theme is guaranteed to have the plugin installed you also get the ability to interact directly with OptionTree through settings and meta box arrays. You can now tell OptionTree what settings you want and know that nobody will break your theme by changing settings through the UI Builder. It's just a better plugin now!
-
-OptionTree is a project sponsored by <a href="http://themeforest.net/?ref=valendesigns">ThemeForest</a>, the largest WordPress theme marketplace on the web, and was originally conceived to help ThemeForest authors quickly power up their themes. But it's here for the benefit of one and all, so option up folks!
+* Background
+* Border
+* Box Shadow
+* Category Checkbox
+* Category Select
+* Checkbox
+* Colorpicker
+* Colorpicker Opacity
+* CSS
+* Custom Post Type Checkbox
+* Custom Post Type Select
+* Date Picker
+* Date Time Picker
+* Dimension
+* Gallery
+* Google Fonts
+* JavaScript
+* Link Color
+* List Item
+* Measurement
+* Numeric Slider
+* On/Off
+* Page Checkbox
+* Page Select
+* Post Checkbox
+* Post Select
+* Radio
+* Radio Image
+* Select
+* Sidebar Select
+* Slider
+* Social Links
+* Spacing
+* Tab
+* Tag Checkbox
+* Tag Select
+* Taxonomy Checkbox
+* Taxonomy Select
+* Text
+* Textarea
+* Textarea Simple
+* Textblock
+* Textblock Titled
+* Typography
+* Upload
 
 == Installation ==
 
+**Plugin Mode**
+
 1. Upload `option-tree` to the `/wp-content/plugins/` directory
-1. Activate the plugin through the 'Plugins' menu in WordPress
+1. Activate the plugin through the `Plugins` menu in WordPress
 1. Click the `OptionTree->Documentation` link in the WordPress admin sidebar menu for further setup assistance.
 
+**Theme Mode**
+
+1. Download the latest version of OptionTree and unarchive the `.zip` directory.
+1. Put the `option-tree` directory in the root of your theme. For example, the server path would be `/wp-content/themes/theme-name/option-tree/`.
+1. You must deactivate and/or delete the plugin version of OptionTree.
+1. Add the following code to the beginning of your `functions.php`.
+
+`/**
+ * Required: set 'ot_theme_mode' filter to true.
+ */
+add_filter( 'ot_theme_mode', '__return_true' );
+
+/**
+ * Required: include OptionTree.
+ */
+require( trailingslashit( get_template_directory() ) . 'option-tree/ot-loader.php' );`
+
+For a list of all the OptionTree UI display filters refer to the `demo-functions.php` file found in the `/assets/theme-mode/` directory of this plugin. This file is the starting point for developing themes with Theme Mode.
+
 == Frequently Asked Questions ==
 
-= Is this plugin PHP5 only? =
+= Is there a demo theme I can install? =
+
+There sure is, and I'm glad you asked. Download and activate the [OptionTree Theme](https://github.com/valendesigns/option-tree-theme) and get some experience setting up OptionTree on your own with detailed directions and tips.
+
+= Why are my translation files not loading? =
 
-Yes. OptionTree & WordPress both require PHP5.
+It is important to note that when you use OptionTree as a plugin, you must store your language files in the `option-tree/languages` directory and use file names like `option-tree-es_ES.mo` & `option-tree-es_ES.po`. However, when using OptionTree in Theme Mode you must also create a `theme-mode` directory inside the `option-tree/languages` directory and store your files there with names like `es_ES.mo` & `es_ES.po`. This is due to the different naming conventions of the `load_plugin_textdomain()` and `load_theme_textdomain()` functions.
+
+= I get errors or a blank screen when I activate the plugin. What's the deal? =
+
+The most likely scenario is your theme already has OptionTree installed in Theme Mode. And since the plugin and theme version can't both be active at the same time without the sky falling on your head, your site has decided to throw in the towel. If that's not your issue, open up a support request and we'll figure it out together. UPDATE: As of OptionTree 2.4.0 the plugin version will not conflict with the Theme Mode version if they are both 2.4.0 or higher.
 
 == Screenshots ==
 
@@ -41,6 +126,229 @@
 
 == Changelog ==
 
+= 2.5.5 =
+* Hotfix - Allow a `0` value to be saved with certain option types. Contributors via github @BassemN.
+* Hotfix - Stop media from being attached to the OptionTree post type when uploaded from the media manager or customizer. Contributors via github @earnjam, and @valendesigns.
+* Hotfix - Added filter `ot_load_dynamic_css` to explicitly turn the feature off if desired.
+* Hotfix - Stopped `dynamic.css` created with other themes from being loaded elsewhere.
+
+= 2.5.4 =
+* Hotfix - Support for WordPress 4.2 term splitting.
+* Hotfix - Removed any potential XSS security issues with `add_query_arg` by escaping it.
+* Hotfix - Fixed an issue where Visual Composer was indirectly destroying OptionTree meta box values.
+* Hotfix - Fixed an issue where the select field value was not visible. Contributors via github @sabbirk15.
+
+= 2.5.3 =
+* Hotfix - Added `inherit` fallback to the `border` option type in dynamic.css.
+* Hotfix - Added `none` fallback to the `box-shadow` option type in dynamic.css.
+* Hotfix - Added `inherit` fallback to the `colorpicker` option type in dynamic.css.
+* Hotfix - Added `inherit` fallback to the `colorpicker-opacity` option type in dynamic.css.
+* Hotfix - Added filter `ot_insert_css_with_markers_fallback` to filter the `dynamic.css` fallback value.
+* Hotfix - Added filter `ot_type_radio_image_attributes` to filter the image attributes for each radio choice. Contributors via github @BassemN, and @valendesigns.
+* Hotfix - Refactored `ot_insert_css_with_markers` to remove confusing & unnecessary PHP statements and fix whitespace.
+* Hotfix - Fixed an issue in `ot_insert_css_with_markers` where the `$option_type` variable was not being set properly.
+* Hotfix - Fixed an issue where having multiple Google Fonts option types caused the "Add Google Font" button to insert multiple dropdowns.
+
+= 2.5.2 =
+* Hotfix - Added `inherit` fallback to the `link-color` option type in dynamic.css.
+* Hotfix - Remove `$.browser.msie` JS error caused by function being deprecated.
+* Hotfix - Change `hover` to `mouseenter mouseleave` to stop jQuery migrate error message.
+* Hotfix - Don't allow duplicate Google Fonts in the `ot-google-fonts-css` enqueue.
+* Hotfix - Fixed an issue with the CSS and JavaScript option types not being initiating inside of tabs.
+* Hotfix - Fixed metabox tab styles for mobile.
+* Hotfix - Separate the post formats JS so it does not interfere with the default behavior and loads only as needed.
+* Hotfix - Adding the `not-sortable` class to the List Item option type will remove the sortable feature for that option.
+
+= 2.5.1 =
+* Hotfix - Overhaul the Colorpicker Opacity option type so it saves rgba values, not arrays.
+* Hotfix - Added the ability to set opacity on any colorpicker with the `ot-colorpicker-opacity` class.
+* Hotfix - Don't use `esc_url_raw` to filter the Upload option type when it's saving an attachment ID. Contributors via github @RistoNiinemets.
+* Hotfix - Show an error message to user if unable to write to the `dynamic.css` file. Contributors via github @johnh10, and @valendesigns.
+* Hotfix - Force the `ot_google_fonts` array to be rebuilt when switching between themes.
+* Hotfix - Stop theme check from nagging about using `add_menu_page` in `ot-cleanup-api.php`.
+
+= 2.5.0 =
+* Added the Google Fonts option type. Contributors via github @maimairel, and @valendesigns.
+* Added the Border option type. Contributors via github @doitmax, and @valendesigns.
+* Added the Box Shadow option type. Contributors via github @doitmax, and @valendesigns.
+* Added the Colorpicker Opacity option type. Contributors via github @doitmax, and @valendesigns.
+* Added the Dimension option type. Contributors via github @doitmax, and @valendesigns.
+* Added the JavaScript option type.
+* Added the Link Color option type. Contributors via github @doitmax, and @valendesigns.
+* Added the Spacing option type. Contributors via github @doitmax, and @valendesigns.
+* Fixed an issue where the Colorpicker was not parsing conditions on `change` or `clear`.
+* Fixed the Colorpicker styles on mobile devices.
+* Show the Colorpicker setting ID inside the error message string when the value is invalid.
+* Added an 'on change' trigger to the Numeric Slider's hidden input. Contributors via github @cubell.
+* Stop Theme Check from complaining about the `register_post_type()` function being used in Theme Mode.
+* Added styles that clean up the appearance of the included Font Awesome icons in section tabs.
+* Fixed jQuery UI style conflicts created by the WP Review plugin.
+* Changed the sanitization function from `sanitize_text_field` to `esc_url_raw` for the Upload option type.
+* Added filter `ot_dequeue_jquery_ui_css_screen_ids` to dequeue `jquery-ui-css` by screen ID.
+* Added filter `ot_on_off_switch_on_value` to filter the value of the On button. Contributors via github @BassemN, and @valendesigns.
+* Added filter `ot_on_off_switch_on_label` to filter the label of the On button. Contributors via github @BassemN, and @valendesigns.
+* Added filter `ot_on_off_switch_off_value` to filter the value of the Off button. Contributors via github @BassemN, and @valendesigns.
+* Added filter `ot_on_off_switch_off_label` to filter the label of the Off button. Contributors via github @BassemN, and @valendesigns.
+* Added filter `ot_on_off_switch_width` to filter the width of the On/Off switch.
+* Added filter `ot_type_date_picker_readonly` to filter the addition of the readonly attribute.
+* Added filter `ot_type_date_time_picker_readonly` to filter the addition of the readonly attribute.
+* Added filter `ot_admin_menu_priority` to filter the `admin_menu` action hook priority.
+* Added Estonian translation. Contributors via github @tjuris, and @RistoNiinemets.
+* Fixed an issue where changes to `theme-options.php` required a second page load.
+* Fixed the clean up script, it only displays when there's something to clean up. No more menu item!
+* Update demo files with the latest option types.
+* Changed where `ot_css_file_paths` is saved when `is_multisite` for better `dynamic.css` file support.
+* Changed the default `dynamic.css` file path in multisite to be `dynamic-{current-blog-id}.css`.
+
+= 2.4.6 =
+* Hotfix - Added a clean up script to consolidate orphaned media posts and remove the old and unused `wp_option_tree` table.
+* Hotfix - Fixed an issue where `ot_get_media_post_ID()` was never able to set the value of the `ot_media_post_ID` option because it was already set to empty. Causing the `ot_create_media_post()` function to create multiple media posts.
+
+= 2.4.5 =
+* Hotfix - Fixed an issue where `ot_get_media_post_ID()` was setting the value of the `ot_media_post_ID` option to `null`. Causing the `ot_create_media_post()` function to create multiple media posts. A clean up script will be added to `2.5.0`.
+
+= 2.4.4 =
+* Hotfix - Fixed undefined index caused by shorthand conditional.
+* Hotfix - Fixed jQuery UI style conflicts created by the Easy Digital Downloads plugin.
+* Hotfix - Added placeholder to background-image. Contributors via github @BassemN.
+
+= 2.4.3 =
+* Hotfix - WordPress 4.0 compatible.
+* Hotfix - Fixed an issue where all media was being attached to the default OptionTree media post.
+* Hotfix - Removed the deprecated `screen_icon()` function.
+* Hotfix - Fixed the `ot_line_height_range_interval` filter being misnamed as `ot_line_height_unit_type`. Contributors via github @youri--.
+* Hotfix - Fixed a conflict with "Frontend Publishing Pro" when using the media uploader on the front-end.
+* Hotfix - Increase condition performance. Contributors via github @designst.
+* Hotfix - Add custom style classes to list-item settings. Contributors via github @designst.
+* Hotfix - Check for `post_title` instead of `post_name` in `ot_get_media_post_ID()`. Contributors via github @clifgriffin.
+* Hotfix - Store the return value of `ot_get_media_post_ID()` in the options table as `ot_media_post_ID`.
+* Hotfix - Added padding to List Items options to reflect the same UI as individual options. Contributors via github @valendesigns and @designst.
+* Hotfix - Fixed a bug that caused the Social Links option type to not properly import.
+
+= 2.4.2 =
+* Hotfix - Fixed a PHP notice that was created when `background-size` in the Background option type is undefined.
+* Hotfix - Fixed an issue with the Upload option type, in attachment ID mode, not storing its value.
+* Hotfix - Replaced `load_template` with `require` throught the documentation.
+* Hotfix - Added a settings ID auto-fill that is based on the text of the settings label in the Theme Options UI Builder. Contributors via github @valendesigns and @Ore4444.
+* Hotfix - Added filter `ot_override_forced_textarea_simple` to allow the Textarea option type to be moved in the DOM and not replaced with the Textarea Simple option type in meta boxes and list items.
+
+= 2.4.1 =
+* Hotfix - Fixed a typo in the demo Theme Options related to the `social-links`.
+* Hotfix - Fixed the language directory path conflict between IIS and Linux while in Theme Mode.
+* Hotfix - Fixed a style issue where select fields would overflow their parent elements.
+* Hotfix - Fixed a PHP notice that was created when the Measurement option type did not have a saved value.
+
+= 2.4.0 =
+* Added filter 'ot_post_formats' which loads meta boxes specifically for post formats.
+* Added the Social Links option type.
+* Fixed OptionTree being conflicted due to having both the plugin and theme version activated. Contributors via github @valendesigns and @bitcommit.
+* Added an admin notice when the UI Builder is being overridden by custom theme options.
+* Allow the Upload option type to be stored as an attachment ID by adding `ot-upload-attachment-id` to the elements `class` attribute. Contributors via github @valendesigns and @krisarsov.
+* Fixed an issue with the CSS option type not showing the Ace editor in a metabox that is broken into tabbed content.
+* Fixed missing option type translation strings. Contributors via github @RistoNiinemets.
+* Replaced mysql functions with the wpdb equivalent. Contributors via github @joshlevinson.
+* Fixed search order of the `contains` condition string. Contributors via github @designst.
+* Added meta box field wrapper class if a custom field class is defined in the settings. Contributors via github @designst.
+* Added filter 'ot_type_select_choices' to dynamically change select choices. Contributors via github @maimairel and @valendesigns.
+* Fixed a bug that added an unnecessary directory separator to the `load_theme_textdomain()` `$path` variable. Contributors via github @PatrickDelancy and @valendesigns.
+* Fixed the state of metabox radio buttons after a Drag & Drop event. Contributors via github @themovation and @valendesigns.
+* Fixed conditions not working correctly within list items.
+* Fixed the min-height issue when using tabs in metaboxes.
+* Added filter `ot_recognized_font_sizes` to dynamically change the font sizes by field ID.
+* Added filter `ot_recognized_letter_spacing` to dynamically change the letter spacing by field ID.
+* Added filter `ot_recognized_line_heights` to dynamically change the line heights by field ID.
+* Fixed a style issue where list item labels in metaboxes were not displaying correctly.
+* Fixed an issue where the WooCommerce plugin would alter the style of metabox tabs on product pages.
+
+= 2.3.4 =
+* Hotfix - Fixed an issue where condition number values were being treated like strings and not returning a correct boolean response.
+
+= 2.3.3 =
+* Hotfix - Fixed subfolder compatibility with versions of Windows that use backslashes instead of forward slashes. Contributors via github @primozcigler and @valendesigns.
+* Hotfix - Fixed missing text domain in demo files. Contributors via github @jetonr.
+* Hotfix - Added filter `ot_migrate_settings_id` to migrate themes that used `option_tree_settings` and now use a custom settings ID.
+* Hotfix - Added filter `ot_migrate_options_id` to migrate themes that used `option_tree` and now use a custom options ID.
+* Hotfix - Added filter `ot_migrate_layouts_id` to migrate themes that used `option_tree_layouts` and now use a custom layouts ID.
+
+= 2.3.2 =
+* Hotfix - Fixed an issue with the `ot_create_media_post` function creating multiple `option-tree` posts.
+* Hotfix - Change the icon used by the layout management option type to differentiate it from the edit button.
+* Hotfix - Suppress PHP warning in the Background option type "Invalid argument supplied for foreach()". Contributors via github @tomkwok.
+* Hotfix - Added filter `ot_type_date_picker_date_format` to change the date format of the Date Picker option type.
+* Hotfix - Added filter `ot_type_date_time_picker_date_format` to change the date format of the Date Time Picker option type.
+
+= 2.3.1 =
+* Hotfix - Fixed a bug with the Gallery option type that would show attachments in the media window when none had been added yet.
+* Hotfix - Added the option to save the Gallery as a shortcode by adding `ot-gallery-shortcode` to the elements `class` attribute.
+* Hotfix - Fixed conditions not being effective in List Items directly after clicking "Add New". Contributors via github @bitcommit.
+
+= 2.3.0 =
+* Added the Tab option type.
+* Added Ace Editor to the CSS option type. Contributors via github @imangm and @valendesigns.
+* Added support for WordPress 3.8 color schemes.
+* Added support for RTL languages. Contributors via github @omid-khd and @valendesigns.
+* Added actions before and after the enqueue styles and scripts.
+* Added Date Picker option type. Contributors via github @jetonr and @valendesigns.
+* Added Date Time Picker option type. Contributors via github @jetonr and @valendesigns.
+* Added filter 'ot_list_item_title_label' to change the label for a List Item's required title field.
+* Added filter 'ot_list_item_title_desc' to change the description for a List Item's required title field.
+* Added filter 'ot_options_id' to change the 'option_tree' option ID to a unique value.
+* Added filter 'ot_settings_id' to change the 'option_tree_settings' option ID to a unique value.
+* Added filter 'ot_layouts_id' to change the 'option_tree_layouts' option ID to a unique value.
+* Added filter 'ot_header_logo_link' to change the logo link inside the header of OptionTree.
+* Added filter 'ot_header_version_text' to change the version text inside the header of OptionTree.
+* Added action 'ot_header_list' to add additional theme specific list items to the header of OptionTree.
+* Added filter 'ot_upload_text' to change the "Send to OptionTree" text.
+* Added the CSS Class field value to the parent `.format-settings` div in addition to the class being added to the element. Each class is now appended with `-wrap`.
+* Added support for [Composer](https://github.com/composer/composer). Contributors via github @designst.
+* Added support for adding I18n text domains to the exported `theme-options.php` file.
+* Fixed a bug that kept the UI from displaying when using the `ot_type_background_size_choices` filter.
+* Fixed a bug that caused the Gallery option type to save a single space instead of `null`.
+* Fixed the return value of the Background, Measurement, and Typography option types. They now return `null` if no values are saved to the array.
+* Fixed a bug that resulted in a PHP warning if the choices array was set to an empty string.
+* Updated the documentation, including this `readme.txt` and a new demo [OptionTree Theme](https://github.com/valendesigns/option-tree-theme) to parallel OptionTree.
+* Added filter 'ot_type_radio_image_src' which allows the Radio Image option type source URI to be changed. Contributors via github @bitcommit.
+
+= 2.2.3 =
+* Hotfix - Allow empty condition values. For example, `field_id:is()` or `field_id:not()` would now be valid syntax.
+* Hotfix - Fixed a bug in the `init_upload_fix` JavaScript method.
+* Hotfix - Fixed a bug in the `url_exists` javaScript method. The code will no longer will check if a URL exists on another domain.
+
+= 2.2.2 =
+* Hotfix - Added support for both upper and lower case conditions operator.
+* Hotfix - Updated the color and font size of inline code.
+* Hotfix - Fix an issue with IE filter and updated the style of the On/Off option type.
+* Hotfix - Added opacity to radio images to improve distinction. Contributors via github @jetonr.
+
+= 2.2.1 =
+* Hotfix - Fixed a UI bug that caused the layouts input to cover the wp menu.
+* Hotfix - Moved the screen shots to the WordPress SVN assets directory.
+
+= 2.2.0 =
+* Added the Gallery option type.
+* Added the On/Off option type.
+* Replaced the old Color Picker with the default WP Color Picker.
+* Added UI support for WordPress 3.8. Contributors via github @AlxMedia, and @valendesigns.
+* Added support for conditional toggling of settings fields. Contributors via github @maimairel, @valendesigns, @doitmax, and @imangm.
+* Replaced the OptionTree image icon with a font version.
+* Added 'background-size' to the Background option type.
+* Added fallback text when displaying posts without titles in various option types.
+* Added filter 'ot_recognized_background_fields' to show/hide fields for background option types.
+* Added filter 'ot_filter_description' that allows the theme option descriptions to be filtered before being displayed.
+* Added subfolder compatibility in theme mode. Contributors via github @doitmax, and @valendesigns.
+* Fixed a bug caused by using 'home_url' when loading dynamic CSS files.
+* Fixed an issue where you could not save metabox text field values as "0". Contributors via github @sparkdevelopment, and @valendesigns.
+* Fixed the broken localization directory path in theme mode. Contributors via github @youri--, and @valendesigns.
+* Fixed missing custom class for the Numeric Slider. Contributors via github @doitmax.
+* Added filter 'ot_type_category_checkbox_query' which allows you to filter the get_categories() args for Category Checkbox.
+* Added filter 'ot_type_category_select_query' which allows you to filter the get_categories() args for Category Select.
+* Added filter 'ot_type_taxonomy_checkbox_query' which allows you to filter the get_categories() args for Taxonomy Checkbox.
+* Added filter 'ot_type_taxonomy_select_query' which allows you to filter the get_categories() args for Taxonomy Select.
+* Added the 'ot_echo_option' function. Contributors via github @joshlevinson.
+* Added filter 'ot_theme_options_contextual_help' which allows you to filter the Contextual Help on the Theme Options page.
+* Added filter 'ot_theme_options_sections' which allows you to filter the Sections on the Theme Options page. Contributors via github @joshlevinson.
+* Added filter 'ot_theme_options_settings' which allows you to filter the Settings on the Theme Options page. Contributors via github @joshlevinson.
+
 = 2.1.4 =
 * Hotfix - Fixed the Numeric Slider not work inside of a newly added List item.
 * Hotfix - Fixed the numeric slider fallback value being set to 0, it now becomes the minimum value if no standard is set.
@@ -287,6 +595,9 @@
 
 == Upgrade Notice ==
 
+= 2.3.0 =
+As with each major release, please install OptionTree on a test server before upgrading your live site.
+
 = 2.1.4 =
 If you're not the developer of this theme, please ask them to test compatibility with version 2.1 before upgrading. If you are the developer, I urge you to do the same in a controlled environment.
 
@@ -312,4 +623,4 @@
 Having multiple sliders caused a naming collision in the JavaScript and is now fixed. Upgrade ASAP to have multiple sliders available in the UI.
 
 = 1.1.4 =
-Fixed the returned value of the get_option_tree() function when $is_array is set to false. If you have created any slider or measurement option types please read the updated documentation for examples on how to use them in your theme.
+Fixed the returned value of the get_option_tree() function when $is_array is set to false. If you have created any slider or measurement option types please read the updated documentation for examples on how to use them in your theme.
\ No newline at end of file