Changeset 3118321
- Timestamp:
- 07/15/2024 12:38:43 PM (19 months ago)
- Location:
- peqiapp
- Files:
-
- 10 edited
- 1 copied
-
tags/2.0.1 (copied) (copied from peqiapp/trunk)
-
tags/2.0.1/assets/css/style.css (modified) (1 diff)
-
tags/2.0.1/assets/js/script.js (modified) (2 diffs)
-
tags/2.0.1/includes/functions.php (modified) (1 diff)
-
tags/2.0.1/peqiapp.php (modified) (4 diffs)
-
tags/2.0.1/readme.txt (modified) (2 diffs)
-
trunk/assets/css/style.css (modified) (1 diff)
-
trunk/assets/js/script.js (modified) (2 diffs)
-
trunk/includes/functions.php (modified) (1 diff)
-
trunk/peqiapp.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
peqiapp/tags/2.0.1/assets/css/style.css
r3116615 r3118321 278 278 font-style: normal; 279 279 font-weight: 600; 280 line-height: 2px;281 280 letter-spacing: -0.96px; 282 281 text-align: center; -
peqiapp/tags/2.0.1/assets/js/script.js
r3116615 r3118321 8 8 this.copyToClipboard(); 9 9 this.checkForm(); 10 this.registerClarity();11 10 this.openPaymentLink(); 12 11 this.checkSubscriptionStatus(); 12 this.debugMode(); 13 14 if (!PEQIAPP_VAR.SCRIPT_DEBUG) { 15 this.registerClarity(); 16 this.initGoogleAnalytics(); 17 } 18 } 19 20 /** 21 * Verificar Debug Mode 22 */ 23 debugMode() { 24 if (PEQIAPP_VAR.SCRIPT_DEBUG) { 25 console.log("Debug Mode ativado!"); 26 } 13 27 } 14 28 … … 19 33 document.addEventListener("DOMContentLoaded", function () { 20 34 console.log(`PeqiApp plugin carregado em ${PEQIAPP_VAR.PEQI_WEBSITE}!`); 35 }); 36 } 37 38 /** 39 * Google Analytics 40 */ 41 initGoogleAnalytics() { 42 document.addEventListener("DOMContentLoaded", function () { 43 const gtagScript = document.createElement("script"); 44 gtagScript.async = true; 45 gtagScript.src = 46 "https://www.googletagmanager.com/gtag/js?id=G-SSZMPXFYG9"; 47 document.head.appendChild(gtagScript); 48 49 window.dataLayer = window.dataLayer || []; 50 function gtag() { 51 dataLayer.push(arguments); 52 } 53 gtag("js", new Date()); 54 55 gtag("config", "G-SSZMPXFYG9"); 21 56 }); 22 57 } -
peqiapp/tags/2.0.1/includes/functions.php
r3116615 r3118321 437 437 public static function peqi_activate_plan_form() 438 438 { 439 if (defined('SCRIPT_DEBUG') ) {439 if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true) { 440 440 $plan_trial = "price_1OZdPuJUpNS565Y8EpmNx5fN"; 441 441 } else { -
peqiapp/tags/2.0.1/peqiapp.php
r3116615 r3118321 3 3 /** 4 4 * @package Peqi App 5 * @version 2.0. 05 * @version 2.0.1 6 6 * 7 7 * Plugin Name: Peqi App 8 8 * Plugin URI: http://wordpress.org/plugins/peqiapp/ 9 9 * Description: You can manage your application settings, perform cache cleaning, adjust optimization levels, and view performance metrics. 10 * Version: 2.0. 010 * Version: 2.0.1 11 11 * Requires at least: 4.7 12 12 * Author: Peqi … … 73 73 define('PEQIAPP_PATH', plugin_dir_path(__FILE__)); 74 74 define('PEQIAPP_URL', plugin_dir_url(__FILE__)); 75 define('PEQIAPP_VERSION', '2.0. 0');75 define('PEQIAPP_VERSION', '2.0.1'); 76 76 77 77 if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true) { … … 80 80 define('PEQI_API_URL', 'https://api.peqi.app'); 81 81 } 82 82 83 define('PEQI_ENDPOINT_AUTH', '/v0/auth/token/'); 83 84 define('PEQI_ENDPOINT_TOKEN', '/v0/tokens/'); … … 176 177 public function javascript_variables() 177 178 { 178 wp_localize_script('peqiapp-script', 'PEQIAPP_VAR', array('PEQI_WEBSITE' => PEQI_WEBSITE)); 179 $array = array( 180 'PEQI_WEBSITE' => PEQI_WEBSITE, 181 'SCRIPT_DEBUG' => defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true ? true : false, 182 ); 183 184 wp_localize_script('peqiapp-script', 'PEQIAPP_VAR', $array); 179 185 } 180 186 } -
peqiapp/tags/2.0.1/readme.txt
r3116615 r3118321 4 4 Requires at least: 4.7 5 5 Tested up to: 6.5 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 2.0.1 - 2024-07-15 = 53 * Plan Update 54 55 = 2.0.0 - 2024-07-11 = 56 * Major Release 57 58 = 0.3.0 - 2024-07-03 = 59 * Plans View Update 60 61 = 0.2.0 - 2024-06-24 = 62 * Progress Update 63 52 64 = 0.1.0 - 2024-06-07 = 53 65 * Initial Public Beta Release -
peqiapp/trunk/assets/css/style.css
r3116615 r3118321 278 278 font-style: normal; 279 279 font-weight: 600; 280 line-height: 2px;281 280 letter-spacing: -0.96px; 282 281 text-align: center; -
peqiapp/trunk/assets/js/script.js
r3116615 r3118321 8 8 this.copyToClipboard(); 9 9 this.checkForm(); 10 this.registerClarity();11 10 this.openPaymentLink(); 12 11 this.checkSubscriptionStatus(); 12 this.debugMode(); 13 14 if (!PEQIAPP_VAR.SCRIPT_DEBUG) { 15 this.registerClarity(); 16 this.initGoogleAnalytics(); 17 } 18 } 19 20 /** 21 * Verificar Debug Mode 22 */ 23 debugMode() { 24 if (PEQIAPP_VAR.SCRIPT_DEBUG) { 25 console.log("Debug Mode ativado!"); 26 } 13 27 } 14 28 … … 19 33 document.addEventListener("DOMContentLoaded", function () { 20 34 console.log(`PeqiApp plugin carregado em ${PEQIAPP_VAR.PEQI_WEBSITE}!`); 35 }); 36 } 37 38 /** 39 * Google Analytics 40 */ 41 initGoogleAnalytics() { 42 document.addEventListener("DOMContentLoaded", function () { 43 const gtagScript = document.createElement("script"); 44 gtagScript.async = true; 45 gtagScript.src = 46 "https://www.googletagmanager.com/gtag/js?id=G-SSZMPXFYG9"; 47 document.head.appendChild(gtagScript); 48 49 window.dataLayer = window.dataLayer || []; 50 function gtag() { 51 dataLayer.push(arguments); 52 } 53 gtag("js", new Date()); 54 55 gtag("config", "G-SSZMPXFYG9"); 21 56 }); 22 57 } -
peqiapp/trunk/includes/functions.php
r3116615 r3118321 437 437 public static function peqi_activate_plan_form() 438 438 { 439 if (defined('SCRIPT_DEBUG') ) {439 if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true) { 440 440 $plan_trial = "price_1OZdPuJUpNS565Y8EpmNx5fN"; 441 441 } else { -
peqiapp/trunk/peqiapp.php
r3116615 r3118321 3 3 /** 4 4 * @package Peqi App 5 * @version 2.0. 05 * @version 2.0.1 6 6 * 7 7 * Plugin Name: Peqi App 8 8 * Plugin URI: http://wordpress.org/plugins/peqiapp/ 9 9 * Description: You can manage your application settings, perform cache cleaning, adjust optimization levels, and view performance metrics. 10 * Version: 2.0. 010 * Version: 2.0.1 11 11 * Requires at least: 4.7 12 12 * Author: Peqi … … 73 73 define('PEQIAPP_PATH', plugin_dir_path(__FILE__)); 74 74 define('PEQIAPP_URL', plugin_dir_url(__FILE__)); 75 define('PEQIAPP_VERSION', '2.0. 0');75 define('PEQIAPP_VERSION', '2.0.1'); 76 76 77 77 if (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true) { … … 80 80 define('PEQI_API_URL', 'https://api.peqi.app'); 81 81 } 82 82 83 define('PEQI_ENDPOINT_AUTH', '/v0/auth/token/'); 83 84 define('PEQI_ENDPOINT_TOKEN', '/v0/tokens/'); … … 176 177 public function javascript_variables() 177 178 { 178 wp_localize_script('peqiapp-script', 'PEQIAPP_VAR', array('PEQI_WEBSITE' => PEQI_WEBSITE)); 179 $array = array( 180 'PEQI_WEBSITE' => PEQI_WEBSITE, 181 'SCRIPT_DEBUG' => defined('SCRIPT_DEBUG') && SCRIPT_DEBUG === true ? true : false, 182 ); 183 184 wp_localize_script('peqiapp-script', 'PEQIAPP_VAR', $array); 179 185 } 180 186 } -
peqiapp/trunk/readme.txt
r3116615 r3118321 4 4 Requires at least: 4.7 5 5 Tested up to: 6.5 6 Stable tag: 2.0. 06 Stable tag: 2.0.1 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 50 50 == Changelog == 51 51 52 = 2.0.1 - 2024-07-15 = 53 * Plan Update 54 55 = 2.0.0 - 2024-07-11 = 56 * Major Release 57 58 = 0.3.0 - 2024-07-03 = 59 * Plans View Update 60 61 = 0.2.0 - 2024-06-24 = 62 * Progress Update 63 52 64 = 0.1.0 - 2024-06-07 = 53 65 * Initial Public Beta Release
Note: See TracChangeset
for help on using the changeset viewer.