Changeset 3400915
- Timestamp:
- 11/22/2025 11:56:01 AM (6 months ago)
- Location:
- htaccess-server-info-server-status
- Files:
-
- 14 edited
- 1 copied
-
tags/3.3.0 (copied) (copied from htaccess-server-info-server-status/trunk)
-
tags/3.3.0/CHANGELOG.md (modified) (1 diff)
-
tags/3.3.0/htaccess-server-info-server-status.php (modified) (1 diff)
-
tags/3.3.0/includes/features/class-statusinsights.php (modified) (1 diff)
-
tags/3.3.0/includes/plugin/class-updater.php (modified) (2 diffs)
-
tags/3.3.0/includes/system/class-option.php (modified) (1 diff)
-
tags/3.3.0/init.php (modified) (1 diff)
-
tags/3.3.0/readme.txt (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/htaccess-server-info-server-status.php (modified) (1 diff)
-
trunk/includes/features/class-statusinsights.php (modified) (1 diff)
-
trunk/includes/plugin/class-updater.php (modified) (2 diffs)
-
trunk/includes/system/class-option.php (modified) (1 diff)
-
trunk/init.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
htaccess-server-info-server-status/tags/3.3.0/CHANGELOG.md
r3272126 r3400915 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Apache Status & Info** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 5 6 ## [3.3.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 10 6 11 ## [3.2.0] - 2025-04-14 7 12 8 13 ### Added 9 - Compatibility with WordPress 6.8. 14 - Compatibility with WordPress 6.8. 10 15 11 16 ### Fixed -
htaccess-server-info-server-status/tags/3.3.0/htaccess-server-info-server-status.php
r3272126 r3400915 11 11 * Plugin URI: https://perfops.one/htaccess-server-info-server-status 12 12 * Description: Apache server-info and server-status monitoring right in your WordPress admin. 13 * Version: 3. 2.013 * Version: 3.3.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
htaccess-server-info-server-status/tags/3.3.0/includes/features/class-statusinsights.php
r3195134 r3400915 336 336 $result .= '</table>'; 337 337 $result .= '</table>'; 338 $result .= '<div style="text-align: center;margin-top: 20px;"><img style="height: 140px;opacity:0.4;" src="' . Databeam::get_base64_banner() . '"/></div>';339 338 return $result; 340 339 } -
htaccess-server-info-server-status/tags/3.3.0/includes/plugin/class-updater.php
r3272126 r3400915 204 204 } 205 205 $md = new Markdown(); 206 $res = new \stdClass(); 206 if ( ! is_object( $res ) ) { 207 $res = new \stdClass(); 208 } 207 209 $res->name = $this->name; 208 210 $res->homepage = 'https://perfops.one/' . $this->slug; … … 219 221 $res->download_link = $infos->download_url; 220 222 $res->trunk = $infos->download_url; 221 $res->sections = [ 222 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 223 ]; 224 $res->banners = [ 225 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 226 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 227 ]; 223 if ( isset( $res->sections['changelog'] ) ) { 224 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 225 } else { 226 $res->sections = [ 227 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 228 ]; 229 } 230 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 231 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 232 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 233 } else { 234 $res->banners = [ 235 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 236 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 237 ]; 238 } 228 239 return $res; 229 240 } -
htaccess-server-info-server-status/tags/3.3.0/includes/system/class-option.php
r2658578 r3400915 77 77 self::$defaults['status'] = true; 78 78 self::$defaults['info'] = true; 79 self::$defaults['databeam'] = true; 80 self::$network = [ 'version', 'use_cdn', 'use_apcu', 'script_in_footer', 'display_nag', 'analytics', 'history', 'status', 'info', 'databeam' ]; 79 self::$network = [ 'version', 'use_cdn', 'use_apcu', 'script_in_footer', 'display_nag', 'analytics', 'history', 'status', 'info' ]; 81 80 } 82 81 -
htaccess-server-info-server-status/tags/3.3.0/init.php
r3272126 r3400915 13 13 define( 'HSISS_PRODUCT_ABBREVIATION', 'htaccess-server-info-server-status' ); 14 14 define( 'HSISS_SLUG', 'htaccess-server-info-server-status' ); 15 define( 'HSISS_VERSION', '3. 2.0' );15 define( 'HSISS_VERSION', '3.3.0' ); 16 16 define( 'HSISS_CODENAME', '"-"' ); 17 17 -
htaccess-server-info-server-status/tags/3.3.0/readme.txt
r3272126 r3400915 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 3. 2.06 Tested up to: 6.9 7 Stable tag: 3.3.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
htaccess-server-info-server-status/trunk/CHANGELOG.md
r3272126 r3400915 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Apache Status & Info** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 5 6 ## [3.3.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 10 6 11 ## [3.2.0] - 2025-04-14 7 12 8 13 ### Added 9 - Compatibility with WordPress 6.8. 14 - Compatibility with WordPress 6.8. 10 15 11 16 ### Fixed -
htaccess-server-info-server-status/trunk/htaccess-server-info-server-status.php
r3272126 r3400915 11 11 * Plugin URI: https://perfops.one/htaccess-server-info-server-status 12 12 * Description: Apache server-info and server-status monitoring right in your WordPress admin. 13 * Version: 3. 2.013 * Version: 3.3.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
htaccess-server-info-server-status/trunk/includes/features/class-statusinsights.php
r3195134 r3400915 336 336 $result .= '</table>'; 337 337 $result .= '</table>'; 338 $result .= '<div style="text-align: center;margin-top: 20px;"><img style="height: 140px;opacity:0.4;" src="' . Databeam::get_base64_banner() . '"/></div>';339 338 return $result; 340 339 } -
htaccess-server-info-server-status/trunk/includes/plugin/class-updater.php
r3272126 r3400915 204 204 } 205 205 $md = new Markdown(); 206 $res = new \stdClass(); 206 if ( ! is_object( $res ) ) { 207 $res = new \stdClass(); 208 } 207 209 $res->name = $this->name; 208 210 $res->homepage = 'https://perfops.one/' . $this->slug; … … 219 221 $res->download_link = $infos->download_url; 220 222 $res->trunk = $infos->download_url; 221 $res->sections = [ 222 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 223 ]; 224 $res->banners = [ 225 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 226 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 227 ]; 223 if ( isset( $res->sections['changelog'] ) ) { 224 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 225 } else { 226 $res->sections = [ 227 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 228 ]; 229 } 230 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 231 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 232 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 233 } else { 234 $res->banners = [ 235 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 236 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 237 ]; 238 } 228 239 return $res; 229 240 } -
htaccess-server-info-server-status/trunk/includes/system/class-option.php
r2658578 r3400915 77 77 self::$defaults['status'] = true; 78 78 self::$defaults['info'] = true; 79 self::$defaults['databeam'] = true; 80 self::$network = [ 'version', 'use_cdn', 'use_apcu', 'script_in_footer', 'display_nag', 'analytics', 'history', 'status', 'info', 'databeam' ]; 79 self::$network = [ 'version', 'use_cdn', 'use_apcu', 'script_in_footer', 'display_nag', 'analytics', 'history', 'status', 'info' ]; 81 80 } 82 81 -
htaccess-server-info-server-status/trunk/init.php
r3272126 r3400915 13 13 define( 'HSISS_PRODUCT_ABBREVIATION', 'htaccess-server-info-server-status' ); 14 14 define( 'HSISS_SLUG', 'htaccess-server-info-server-status' ); 15 define( 'HSISS_VERSION', '3. 2.0' );15 define( 'HSISS_VERSION', '3.3.0' ); 16 16 define( 'HSISS_CODENAME', '"-"' ); 17 17 -
htaccess-server-info-server-status/trunk/readme.txt
r3272126 r3400915 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 3. 2.06 Tested up to: 6.9 7 Stable tag: 3.3.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.
