Changeset 2899723
- Timestamp:
- 04/16/2023 12:57:45 PM (3 years ago)
- Location:
- dark-mode
- Files:
-
- 8 edited
- 1 copied
-
tags/4.1.5 (copied) (copied from dark-mode/trunk)
-
tags/4.1.5/dark-mode.php (modified) (2 diffs)
-
tags/4.1.5/includes/class-dark-mode.php (modified) (1 diff)
-
tags/4.1.5/includes/wppool/class-plugin.php (modified) (2 diffs)
-
tags/4.1.5/readme.txt (modified) (2 diffs)
-
trunk/dark-mode.php (modified) (2 diffs)
-
trunk/includes/class-dark-mode.php (modified) (1 diff)
-
trunk/includes/wppool/class-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dark-mode/tags/4.1.5/dark-mode.php
r2892109 r2899723 7 7 * Author URI: https://wppool.dev 8 8 * Text Domain: dark-mode 9 * Version: 4.1. 49 * Version: 4.1.5 10 10 * 11 11 * @package WP_Markdown … … 15 15 16 16 if ( ! class_exists( 'Dark_Mode' ) ) { 17 define( 'DARK_MODE_VERSION', '4.1. 4' );17 define( 'DARK_MODE_VERSION', '4.1.5' ); 18 18 define( 'DARK_MODE_FILE', __FILE__ ); 19 19 define( 'DARK_MODE_PATH', plugin_dir_path( DARK_MODE_FILE ) ); 20 20 define( 'DARK_MODE_INCLUDES', DARK_MODE_PATH . '/includes' ); 21 21 define( 'DARK_MODE_URL', plugin_dir_url( DARK_MODE_FILE ) ); 22 23 $mark_basename = basename( __FILE__ ); 24 $plugin_basename = plugin_basename( __FILE__ ); 25 $plugin_dir = str_replace( $mark_basename, '', $plugin_basename ); 26 $plugin_dir_name = preg_replace( '/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $plugin_dir ); 27 28 define( 'PLUGIN_DIR_NAME', $plugin_dir_name ); 22 29 23 30 register_activation_hook( -
dark-mode/tags/4.1.5/includes/class-dark-mode.php
r2892109 r2899723 186 186 // Initialize WPPOOL SDK. 187 187 if ( function_exists( 'wppool_plugin_init' ) ) { 188 wppool_plugin_init( 'wp_markdown' ); 188 if ( 'wp-markdown' === PLUGIN_DIR_NAME ) { 189 wppool_plugin_init( 'wp_markdown' ); 190 } elseif ( 'dark-mode' === PLUGIN_DIR_NAME ) { 191 wppool_plugin_init( 'dark_mode' ); 192 } 189 193 } 190 194 } -
dark-mode/tags/4.1.5/includes/wppool/class-plugin.php
r2892109 r2899723 58 58 public $plugins = [ 59 59 'wp_markdown' => [ 60 'list_id' => 19, 61 'button_link' => 'https://go.wppool.dev/wme', 62 'button_text' => 'Get Premium', 63 'color' => '#f1c40f', 64 ], 65 'dark_mode' => [ 60 66 'list_id' => 19, 61 67 'button_link' => 'https://go.wppool.dev/wme', … … 1279 1285 } 1280 1286 } 1281 -
dark-mode/tags/4.1.5/readme.txt
r2892117 r2899723 4 4 Requires at least: 5.0.0 5 5 Tested up to: 6.2 6 Stable tag: 4.1. 46 Stable tag: 4.1.5 7 7 Requires PHP: 5.6 8 8 License: GNU GPL v2 or later … … 87 87 == Changelog == 88 88 89 = 4.1.5 = 90 * Fix: Fixed FluentCRM not collect leads 91 89 92 = 4.1.4 = 90 93 * Improvement: Updated Appsero client -
dark-mode/trunk/dark-mode.php
r2892109 r2899723 7 7 * Author URI: https://wppool.dev 8 8 * Text Domain: dark-mode 9 * Version: 4.1. 49 * Version: 4.1.5 10 10 * 11 11 * @package WP_Markdown … … 15 15 16 16 if ( ! class_exists( 'Dark_Mode' ) ) { 17 define( 'DARK_MODE_VERSION', '4.1. 4' );17 define( 'DARK_MODE_VERSION', '4.1.5' ); 18 18 define( 'DARK_MODE_FILE', __FILE__ ); 19 19 define( 'DARK_MODE_PATH', plugin_dir_path( DARK_MODE_FILE ) ); 20 20 define( 'DARK_MODE_INCLUDES', DARK_MODE_PATH . '/includes' ); 21 21 define( 'DARK_MODE_URL', plugin_dir_url( DARK_MODE_FILE ) ); 22 23 $mark_basename = basename( __FILE__ ); 24 $plugin_basename = plugin_basename( __FILE__ ); 25 $plugin_dir = str_replace( $mark_basename, '', $plugin_basename ); 26 $plugin_dir_name = preg_replace( '/[^a-zA-Z0-9_ %\[\]\.\(\)%&-]/s', '', $plugin_dir ); 27 28 define( 'PLUGIN_DIR_NAME', $plugin_dir_name ); 22 29 23 30 register_activation_hook( -
dark-mode/trunk/includes/class-dark-mode.php
r2892109 r2899723 186 186 // Initialize WPPOOL SDK. 187 187 if ( function_exists( 'wppool_plugin_init' ) ) { 188 wppool_plugin_init( 'wp_markdown' ); 188 if ( 'wp-markdown' === PLUGIN_DIR_NAME ) { 189 wppool_plugin_init( 'wp_markdown' ); 190 } elseif ( 'dark-mode' === PLUGIN_DIR_NAME ) { 191 wppool_plugin_init( 'dark_mode' ); 192 } 189 193 } 190 194 } -
dark-mode/trunk/includes/wppool/class-plugin.php
r2892109 r2899723 58 58 public $plugins = [ 59 59 'wp_markdown' => [ 60 'list_id' => 19, 61 'button_link' => 'https://go.wppool.dev/wme', 62 'button_text' => 'Get Premium', 63 'color' => '#f1c40f', 64 ], 65 'dark_mode' => [ 60 66 'list_id' => 19, 61 67 'button_link' => 'https://go.wppool.dev/wme', … … 1279 1285 } 1280 1286 } 1281 -
dark-mode/trunk/readme.txt
r2892117 r2899723 4 4 Requires at least: 5.0.0 5 5 Tested up to: 6.2 6 Stable tag: 4.1. 46 Stable tag: 4.1.5 7 7 Requires PHP: 5.6 8 8 License: GNU GPL v2 or later … … 87 87 == Changelog == 88 88 89 = 4.1.5 = 90 * Fix: Fixed FluentCRM not collect leads 91 89 92 = 4.1.4 = 90 93 * Improvement: Updated Appsero client
Note: See TracChangeset
for help on using the changeset viewer.