Skip to content

Commit a66efbc

Browse files
author
joelworsham
committed
Versioning and push build for 1.1-beta-1
1 parent 7937abd commit a66efbc

31 files changed

Lines changed: 155 additions & 153 deletions

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Render
2-
### v1.1-alpha-3
2+
### v1.1-beta-1
33

44
Render is a powerful plugin which enables you to insert useful and powerful functionality into your content. All without writing or even seeing any code.
55

@@ -35,7 +35,8 @@ Simply download the master zip (the button on the right that says "Download ZIP"
3535

3636
## Changelog
3737

38-
### [1.1-alpha-3](https://github.com/brashrebel/render/releases/tag/v1.1-alpha-3)
38+
### [1.1-beta-1](https://github.com/brashrebel/render/releases/tag/v1.1-beta-1)
39+
* UPDATE: Removing a wrapping shortcode now strips off the shortcode and leaves the content.
3940
* UPDATE: Conditional visibility and population for attributes.
4041
* UPDATE: Delete database options on uninstall now available from Settings.
4142
* UPDATE: Shift + enter submits modal when in text area.
@@ -45,13 +46,14 @@ Simply download the master zip (the button on the right that says "Download ZIP"
4546
* UPDATE: Revised and improved columns shortcode.
4647
* UPDATE: Accordion shortcode.
4748
* UPDATE: Shortcodes no longer return default attribute values.
49+
* UPDATE: User opt-in tracking data.
4850
* DEVELOPERS: Nesting shortcode "type" now available!
4951

5052
### [1.1-beta-1](https://github.com/brashrebel/render/releases/tag/v1.1-beta-1)
5153
* FIX: Users drop-down was un-populated.
5254
* FIX: Repeater attribute fields adding extra, unused attributes to shortcode output.
5355

54-
### [1.0.4](https://github.com/brashrebel/render/releases/tag/v1.0.4)
56+
### [1.1-beta-1](https://github.com/brashrebel/render/releases/tag/v1.1-beta-1)
5557
* FIX: Styling messed up in Customizer.
5658
* UPDATE: Can close Render Modal by clicking off of it.
5759

build/assets/js/source/admin/admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
/**
7575
* Shows an error in the console.
7676
*
77-
* @since 1.1-alpha-3
77+
* @since 1.1-beta-1
7878
*
7979
* @param {string} message The message to log.
8080
*/

build/assets/js/source/admin/modal.js

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ var Render_Modal;
979979
/**
980980
* Disables the shortcode from being used.
981981
*
982-
* @since 1.1-alpha-3
982+
* @since 1.1-beta-1
983983
*
984984
* @param {jQuery} $shortcode The shortcode element to disable.
985985
* @param {string} new_message The message to display when clicked.
@@ -997,7 +997,7 @@ var Render_Modal;
997997
/**
998998
* Enables the shortcode.
999999
*
1000-
* @since 1.1-alpha-3
1000+
* @since 1.1-beta-1
10011001
*
10021002
* @param {jQuery} $shortcode The shortcode element to enable.
10031003
*/
@@ -1015,7 +1015,7 @@ var Render_Modal;
10151015
/**
10161016
* Shows the disabled message.
10171017
*
1018-
* @since 1.1-alpha-3
1018+
* @since 1.1-beta-1
10191019
*
10201020
* @param {jQuery} $shortcode The shortcode element to show the disabled message.
10211021
* @param {bool} show Whether to show or hide the message.
@@ -1703,7 +1703,7 @@ var Render_Modal;
17031703
/**
17041704
* Attribute fiend conditionals.
17051705
*
1706-
* @since 1.1-alpha-3
1706+
* @since 1.1-beta-1
17071707
*
17081708
* @type {object|bool}
17091709
*/
@@ -1712,7 +1712,7 @@ var Render_Modal;
17121712
/**
17131713
* Whether or not this attribute is hidden (used for conditionals).
17141714
*
1715-
* @since 1.1-alpha-3
1715+
* @since 1.1-beta-1
17161716
*
17171717
* @type {boolean}
17181718
*/
@@ -1765,7 +1765,7 @@ var Render_Modal;
17651765
/**
17661766
* Sets up the attribute's conditionals.
17671767
*
1768-
* @since 1.1-alpha-3
1768+
* @since 1.1-beta-1
17691769
*
17701770
* @private
17711771
*/
@@ -1816,7 +1816,7 @@ var Render_Modal;
18161816
/**
18171817
* Performs conditional checks and actions.
18181818
*
1819-
* @since 1.1-alpha-3
1819+
* @since 1.1-beta-1
18201820
*/
18211821
this.performConditionals = function () {
18221822

@@ -1913,7 +1913,7 @@ var Render_Modal;
19131913
/**
19141914
* Compares all existing conditions and shows or hides the attribute row.
19151915
*
1916-
* @since 1.1-alpha-3
1916+
* @since 1.1-beta-1
19171917
*
19181918
* @param {object} atts The conditional properties.
19191919
*/
@@ -2155,7 +2155,7 @@ var Render_Modal;
21552155
/**
21562156
* Rebuilds the available option(s).
21572157
*
2158-
* @since 1.1-alpha-3
2158+
* @since 1.1-beta-1
21592159
*
21602160
* @param {object} response The AJAX response.
21612161
*/
@@ -2182,7 +2182,7 @@ var Render_Modal;
21822182
/**
21832183
* Customizable post-init function.
21842184
*
2185-
* @since 1.1-alpha-3
2185+
* @since 1.1-beta-1
21862186
*/
21872187
this.postInit = function () {
21882188
};
@@ -2217,7 +2217,7 @@ var Render_Modal;
22172217
/**
22182218
* The input mask properties.
22192219
*
2220-
* @since 1.1-alpha-3
2220+
* @since 1.1-beta-1
22212221
*
22222222
* @type {boolean|object}
22232223
*/
@@ -2229,7 +2229,7 @@ var Render_Modal;
22292229
/**
22302230
* Sets up the textbox
22312231
*
2232-
* @since 1.1-alpha-3
2232+
* @since 1.1-beta-1
22332233
*/
22342234
this.postInit = function () {
22352235

@@ -2288,7 +2288,7 @@ var Render_Modal;
22882288
*
22892289
* Causes mask to take effect, if there is one.
22902290
*
2291-
* @since 1.1-alpha-3
2291+
* @since 1.1-beta-1
22922292
*
22932293
* @param {*} value The value to set to.
22942294
*/
@@ -2311,7 +2311,7 @@ var Render_Modal;
23112311
/**
23122312
* Applies a mask to the input field.
23132313
*
2314-
* @since 1.1-alpha-3
2314+
* @since 1.1-beta-1
23152315
*/
23162316
this.applyMask = function () {
23172317

@@ -2379,7 +2379,7 @@ var Render_Modal;
23792379
/**
23802380
* Sets up the textarea.
23812381
*
2382-
* @since 1.1-alpha-3
2382+
* @since 1.1-beta-1
23832383
*
23842384
* @param {{jQuery}} $container The current attribute row.
23852385
*/
@@ -2467,7 +2467,7 @@ var Render_Modal;
24672467
/**
24682468
* Sets up the checkbox.
24692469
*
2470-
* @since 1.1-alpha-3
2470+
* @since 1.1-beta-1
24712471
*
24722472
* @param {{jQuery}} $container The current attribute row.
24732473
*/
@@ -2607,7 +2607,7 @@ var Render_Modal;
26072607
/**
26082608
* Rebuilds the available options.
26092609
*
2610-
* @since 1.1-alpha-3
2610+
* @since 1.1-beta-1
26112611
*
26122612
* @param {object} response The AJAX response.
26132613
*/
@@ -2648,7 +2648,7 @@ var Render_Modal;
26482648
/**
26492649
* Constructs the Chosen input.
26502650
*
2651-
* @since 1.1-alpha-3
2651+
* @since 1.1-beta-1
26522652
*
26532653
* @param {{jQuery}} $container The current attribute row.
26542654
*/
@@ -2934,7 +2934,7 @@ var Render_Modal;
29342934
/**
29352935
* Rebuilds the available options.
29362936
*
2937-
* @since 1.1-alpha-3
2937+
* @since 1.1-beta-1
29382938
*
29392939
* @param {object} response The AJAX response.
29402940
*/
@@ -2986,7 +2986,7 @@ var Render_Modal;
29862986
/**
29872987
* Sets up the colorpicker object.
29882988
*
2989-
* @since 1.1-alpha-3
2989+
* @since 1.1-beta-1
29902990
*
29912991
* @param {{jQuery}} $container The current attribute row.
29922992
*/
@@ -3048,7 +3048,7 @@ var Render_Modal;
30483048
/**
30493049
* Constructs the jQuery UI Slider object.
30503050
*
3051-
* @since 1.1-alpha-3
3051+
* @since 1.1-beta-1
30523052
*
30533053
* @param {{jQuery}} $container The current attribute row.
30543054
*/
@@ -3208,7 +3208,7 @@ var Render_Modal;
32083208
*
32093209
* For this one, it changes the available min and max.
32103210
*
3211-
* @since 1.1-alpha-3
3211+
* @since 1.1-beta-1
32123212
*
32133213
* @param {object} response The AJAX response.
32143214
*/
@@ -3255,7 +3255,7 @@ var Render_Modal;
32553255
/**
32563256
* Sets up the WP Media integration.
32573257
*
3258-
* @since 1.1-alpha-3
3258+
* @since 1.1-beta-1
32593259
*
32603260
* @param {{jQuery}} $container The current attribute row.
32613261
*/
@@ -3360,7 +3360,7 @@ var Render_Modal;
33603360
/**
33613361
* Sets up the counter object.
33623362
*
3363-
* @since 1.1-alpha-3
3363+
* @since 1.1-beta-1
33643364
*
33653365
* @param {{jQuery}} $container The current attribute row.
33663366
*/
@@ -3527,7 +3527,7 @@ var Render_Modal;
35273527
*
35283528
* For this one, it changes the available min and max.
35293529
*
3530-
* @since 1.1-alpha-3
3530+
* @since 1.1-beta-1
35313531
*
35323532
* @param {object} response The AJAX response.
35333533
*/
@@ -3568,7 +3568,7 @@ var Render_Modal;
35683568
/**
35693569
* Sets up repeater fields.
35703570
*
3571-
* @since 1.1-alpha-3
3571+
* @since 1.1-beta-1
35723572
*
35733573
* @param {{jQuery}} $container The current attribute row.
35743574
*/
@@ -3757,7 +3757,7 @@ var Render_Modal;
37573757
/**
37583758
* Run the value through various sanitation methods to prepare for being a shortcode attribute.
37593759
*
3760-
* @since 1.1-alpha-3
3760+
* @since 1.1-beta-1
37613761
* @global sc_attr_escapes
37623762
*
37633763
* @param {string} value The value to escape.
@@ -3782,7 +3782,7 @@ var Render_Modal;
37823782
/**
37833783
* Un-escapes the shortcode attribute.
37843784
*
3785-
* @since 1.1-alpha-3
3785+
* @since 1.1-beta-1
37863786
* @global sc_attr_escapes
37873787
*
37883788
* @param {string} value The value to un-escape.
@@ -3807,7 +3807,7 @@ var Render_Modal;
38073807
/**
38083808
* Escapes a string for use as a regular expression.
38093809
*
3810-
* @since 1.1-alpha-3
3810+
* @since 1.1-beta-1
38113811
*
38123812
* @param {string} string The string to be escaped.
38133813
* @returns {string} The escaped string.
@@ -3895,7 +3895,7 @@ var Render_Modal;
38953895
/**
38963896
* Parses the attribute output of a repeater field.
38973897
*
3898-
* @since 1.1-alpha-3
3898+
* @since 1.1-beta-1
38993899
*
39003900
* @param object The repeater field "object"
39013901
* @returns {Array} Sorted fields

build/assets/js/source/admin/pointers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Adds WP pointers.
33
*
4-
* @since 1.1-alpha-3
4+
* @since 1.1-beta-1
55
*
66
* @global Render_Data
77
* @global ajaxurl

build/assets/js/source/shortcodes/accordion.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Accordion shortcode functionality.
33
*
4-
* @since 1.1-alpha-3
4+
* @since 1.1-beta-1
55
*
66
* @package Render
77
* @subpackage Scripts

build/assets/js/source/shortcodes/tabs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Tabs shortcode functionality.
33
*
4-
* @since 1.1-alpha-3
4+
* @since 1.1-beta-1
55
*
66
* @package Render
77
* @subpackage Scripts

build/core/functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function render_esc_atts( $atts ) {
9494
/**
9595
* Un-escapes the escaped shortcode attributes in the content.
9696
*
97-
* @since 1.1-alpha-3
97+
* @since 1.1-beta-1
9898
*
9999
* @param string $content The attribute to be escaped.
100100
* @return string The escaped attribute.
@@ -684,7 +684,7 @@ function render_setup_license( $extension, $name, $version, $file_path, $author
684684
/**
685685
* Adds a licensing nag if the license is not valid.
686686
*
687-
* @since 1.1-alpha-3
687+
* @since 1.1-beta-1
688688
*/
689689
add_action( 'after_plugin_row_' . plugin_basename( $file_path ), function () use( $extension, $name ) {
690690

@@ -753,7 +753,7 @@ function render_disable_tinymce_media_button( $hook_name, $label, $priority = 10
753753
*
754754
* Loosely based on how the Modal outputs the selectbox.
755755
*
756-
* @since 1.1-alpha-3
756+
* @since 1.1-beta-1
757757
* @see Render_Modal::att_type_selectbox()
758758
*
759759
* @param array $options The options.

build/core/modal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public static function admin_scripts() {
111111
/**
112112
* Provides translations for the modal.
113113
*
114-
* @since 1.1-alpha-3
114+
* @since 1.1-beta-1
115115
* @access private
116116
*
117117
* @param array $data The current localization data.
@@ -1113,7 +1113,7 @@ class="render-modal-att-section-break render-modal-show-advanced-atts hidden">
11131113
/**
11141114
* AJAX callback for populating conditional shortcode attributes.
11151115
*
1116-
* @since 1.1-alpha-3
1116+
* @since 1.1-beta-1
11171117
*/
11181118
add_action( 'wp_ajax_render_conditional_att_populate', function () {
11191119

0 commit comments

Comments
 (0)