﻿Version 1.0.3
    Fixed:
       - Themerex Addons vulnarability fixed

Version 1.0.2
    Fixed:
       - Update Plugin TRX Addons

Version 1.0.1
    Fixed:
        - Compatibility with WordPress 5.3
        - Update plugins to their latest versions
        - Improve theme styles
     Changed:
        - Replace custom functions with WP functions

Version 1.0.0 (Release)
 1. Removed parameters in
plugins\trx_addons\components\extended-taxonomy\extended-taxonomy.php
    if (!function_exists('trx_addons_extended_taxonomy_options')) {
        .....
        'color_bg' => esc_html__("Background color", 'trx_addons'),
        'color_bg_hover' => esc_html__("Background hover", 'trx_addons'),
        ....
	}
2. Added code in plugins\trx_addons\components\api\gutenberg\gutenberg.php
// Add compatibility with Gutenberg to our taxonomies
if ( ! function_exists( 'trx_addons_gutenberg_enable_taxonomies' ) ) {

    add_filter( 'trx_addons_filter_register_taxonomy', 'trx_addons_gutenberg_enable_taxonomies', 10, 3 );
    function trx_addons_gutenberg_enable_taxonomies($args, $post_type, $taxonomy) {
        if ( trx_addons_exists_gutenberg() && ( ! isset( $args['meta_box_cb'] ) || $args['meta_box_cb'] !== false ) && apply_filters( 'trx_addons_filter_add_taxonomy_to_gutenberg', false, $taxonomy ) ) {
            $args['show_in_rest'] = true;
        }
        return $args;
    }
}