﻿Version 1.0.15
    Added:
        - WP 6.8.1 compatibility

    Fixed:
        - Improve theme styles
        - Update plugins to their latest version

    Changed:
        - Update demo data

Version 1.0.14
    Added:
        - WP 6.7.1 compatibility

    Fixed:
        - Improve theme styles
        - Update plugins to their latest version

    Changed:
        - Update demo data

Version 1.0.13
    Added:
        - WP 6.6.2 compatibility

    Fixed:
        - Improve theme styles
        - Update plugins to their latest version
        - Scripts libraries are updated

    Changed:
        - Update demo data

Version 1.0.12
    Added:
        - WP 6.5.4 compatibility
        - Compatibility with The GDPR Framework plugin

    Fixed:
        - Improve theme styles
        - Update plugins to their latest version
        - Scripts libraries are updated

    Changed:
        - Update demo data
    
    Removed:
        - Cookie Information plugin

Version 1.0.11
    Added:
        - WP 6.4.3 compatibility

    Fixed:
        - Improve theme styles
        - Update plugins to their latest version
        - Scripts libraries are updated

    Changed:
        - Update demo data

Version 1.0.10
	Added:
		- WP 6.3.1 compatibility
		- TikTok & Twitter (x) icons

	Fixed:
		- Update plugins to their latest versions

	Changed:
		- Update demo data

Version 1.0.9
    Added:
        - WP 6.1.0 compatibility
        - Elementor 3.8.0 compatibility
        - The Events Calendar 6.0.3.1 compatibility
    Fixed:
        - Improve theme styles
        - Update plugins to their latest versions
    Changed:
        - Update demo data

Version 1.0.8
    Added:
        - WP 6.0.1 compatibility
        - Elementor 3.7.2 compatibility
        - ThemeREX Socials plugin
    Fixed:
        - Update plugins to their latest versions
        - Improve theme styles
    Changed:
        - Update demo data

Version 1.0.7
    Added:
    - WP 5.9 compatibility
    - Compatibility with The Events Calendar 5.14+

    Fixed:
    - Theme styles

    Changed:
    - Theme content

Version 1.0.6
    Added:
        - WP 5.8.2 compatibility
        - PHP 8 compatibility

    Fixed:
        - Update plugins to their latest versions

    Changed:
        - Update demo data

Version 1.0.5
    Added:
        - WP 5.5.3 compatibility
        - PHP 7.4 compatibility

    Fixed:
        - Update plugins to their latest versions

    Changed:
        - Update demo data

Version 1.0.4
    Added: 
        - WP 5.5 compatibility
    Fixed:
		- Update plugins to their latest versions

Version 1.0.3
    Fixed:
       - Themerex Addons vulnarability fixed

Version 1.0.2
    Fixed:
       - Update Plugin TRX Addons

Version 1.0.1
    Added:
        - Compatibility with WordPress 5.8.2
        - Compatibility with PHP 8
        - Update plugins to their latest versions
        - Improve theme styles

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;
    }
}