Changeset 3025479
- Timestamp:
- 01/23/2024 03:42:01 AM (2 years ago)
- Location:
- the-tech-tribe/trunk
- Files:
-
- 2 added
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/class-the-tribal-plugin-admin.php (modified) (2 diffs)
-
assets/css/bootstrap-iso-v5.3.2.min.css (added)
-
assets/js/bootstrap-v5.3.2.bundle.min.js (added)
-
the-tribal-plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
the-tech-tribe/trunk/README.txt
r3019604 r3025479 5 5 Requires at least: 5.0 6 6 Tested up to: 6.4.2 7 Stable tag: 1.3. 07 Stable tag: 1.3.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 59 59 60 60 == Changelog == 61 62 = 1.3.1 - January 22, 2024 = 63 * Update bootstrap library to version 5.3.2 64 * Maintenance Update 61 65 62 66 = 1.3.0 - January 08, 2024 = -
the-tech-tribe/trunk/admin/class-the-tribal-plugin-admin.php
r2701685 r3025479 76 76 if( tttAllowedAdminAssetInclude() ){ 77 77 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' ); 79 79 } 80 80 … … 101 101 if( tttAllowedAdminAssetInclude() ){ 102 102 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 ); 104 104 wp_localize_script( $this->plugin_name, 'ttt_admin_ajax_object', 105 105 [ -
the-tech-tribe/trunk/the-tribal-plugin.php
r3019604 r3025479 17 17 * Plugin URI: thetechtribe.com 18 18 * Description: This plugin is for members of The Tech Tribe to manage features such as Automated Blog Posting etc. 19 * Version: 1.3. 019 * Version: 1.3.1 20 20 * Author: The Tech Tribe 21 21 * Author URI: https://thetechtribe.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3. 0' );38 define( 'THE_TRIBAL_PLUGIN_VERSION', '1.3.1' ); 39 39 40 40 //date_default_timezone_set(wp_timezone_string());
Note: See TracChangeset
for help on using the changeset viewer.