Plugin Directory

Changeset 3025479


Ignore:
Timestamp:
01/23/2024 03:42:01 AM (2 years ago)
Author:
nigelmoore1
Message:

release version 1.3.1

Location:
the-tech-tribe/trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • the-tech-tribe/trunk/README.txt

    r3019604 r3025479  
    55Requires at least: 5.0
    66Tested up to: 6.4.2
    7 Stable tag: 1.3.0
     7Stable tag: 1.3.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5959
    6060== Changelog ==
     61
     62= 1.3.1 - January 22, 2024 =
     63* Update bootstrap library to version 5.3.2
     64* Maintenance Update
    6165
    6266= 1.3.0 - January 08, 2024 =
  • the-tech-tribe/trunk/admin/class-the-tribal-plugin-admin.php

    r2701685 r3025479  
    7676        if( tttAllowedAdminAssetInclude() ){
    7777            wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/the-tribal-plugin-admin.css', array(), $this->version, 'all' );
    78             wp_enqueue_style( $this->plugin_name . 'bootstrap-5-iso', tttc_get_plugin_dir_url() . 'assets/css/bootstrap-iso-v5.1.3.min.css', array(), '5.1.3', 'all' );
     78            wp_enqueue_style( $this->plugin_name . '-bootstrap-5-iso', tttc_get_plugin_dir_url() . 'assets/css/bootstrap-iso-v5.3.2.min.css', array(), '5.3.2', 'all' );
    7979        }
    8080
     
    101101        if( tttAllowedAdminAssetInclude() ){
    102102            wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/the-tribal-plugin-admin.js', array( 'jquery' ), $this->version, false );
    103             wp_enqueue_script( $this->plugin_name . 'bootstrap-5-iso', tttc_get_plugin_dir_url() . 'assets/js/bootstrap-v5.1.3-.bundle.min.js', array( 'jquery' ), '5.1.3', false );
     103            wp_enqueue_script( $this->plugin_name . '-bootstrap-5-iso', tttc_get_plugin_dir_url() . 'assets/js/bootstrap-v5.3.2.bundle.min.js', array( 'jquery' ), '5.3.2', false );
    104104            wp_localize_script( $this->plugin_name, 'ttt_admin_ajax_object',
    105105                [
  • the-tech-tribe/trunk/the-tribal-plugin.php

    r3019604 r3025479  
    1717 * Plugin URI:        thetechtribe.com
    1818 * Description:       This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc.
    19  * Version:           1.3.0
     19 * Version:           1.3.1
    2020 * Author:            The Tech Tribe
    2121 * Author URI:        https://thetechtribe.com
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3.0' );
     38define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3.1' );
    3939
    4040//date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset for help on using the changeset viewer.