Changeset 3400899
- Timestamp:
- 11/22/2025 11:42:58 AM (6 months ago)
- Location:
- keys-master
- Files:
-
- 10 edited
- 1 copied
-
tags/2.4.0 (copied) (copied from keys-master/trunk)
-
tags/2.4.0/CHANGELOG.md (modified) (1 diff)
-
tags/2.4.0/includes/plugin/class-updater.php (modified) (2 diffs)
-
tags/2.4.0/init.php (modified) (1 diff)
-
tags/2.4.0/keys-master.php (modified) (1 diff)
-
tags/2.4.0/readme.txt (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/includes/plugin/class-updater.php (modified) (2 diffs)
-
trunk/init.php (modified) (1 diff)
-
trunk/keys-master.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
keys-master/tags/2.4.0/CHANGELOG.md
r3272121 r3400899 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Keys Master** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [2.4.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 5 10 6 11 ## [2.3.0] - 2025-04-14 -
keys-master/tags/2.4.0/includes/plugin/class-updater.php
r3272121 r3400899 207 207 } 208 208 $md = new Markdown(); 209 $res = new \stdClass(); 209 if ( ! is_object( $res ) ) { 210 $res = new \stdClass(); 211 } 210 212 $res->name = $this->name; 211 213 $res->homepage = 'https://perfops.one/' . $this->slug; … … 222 224 $res->download_link = $infos->download_url; 223 225 $res->trunk = $infos->download_url; 224 $res->sections = [ 225 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 226 ]; 227 $res->banners = [ 228 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 229 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 230 ]; 226 if ( isset( $res->sections['changelog'] ) ) { 227 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 228 } else { 229 $res->sections = [ 230 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 231 ]; 232 } 233 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 234 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 235 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 236 } else { 237 $res->banners = [ 238 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 239 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 240 ]; 241 } 231 242 return $res; 232 243 } -
keys-master/tags/2.4.0/init.php
r3272121 r3400899 13 13 define( 'POKM_PRODUCT_ABBREVIATION', 'keysmaster' ); 14 14 define( 'POKM_SLUG', 'keys-master' ); 15 define( 'POKM_VERSION', '2. 3.0' );15 define( 'POKM_VERSION', '2.4.0' ); 16 16 define( 'POKM_CODENAME', '"-"' ); 17 17 define( 'POKM_CDN_AVAILABLE', true ); -
keys-master/tags/2.4.0/keys-master.php
r3272121 r3400899 11 11 * Plugin URI: https://perfops.one/keys-master 12 12 * Description: Powerful application passwords manager for WordPress with role-based usage control and full analytics reporting capabilities. 13 * Version: 2. 3.013 * Version: 2.4.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
keys-master/tags/2.4.0/readme.txt
r3272121 r3400899 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 2. 3.06 Tested up to: 6.9 7 Stable tag: 2.4.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
keys-master/trunk/CHANGELOG.md
r3272121 r3400899 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **Keys Master** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [2.4.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 5 10 6 11 ## [2.3.0] - 2025-04-14 -
keys-master/trunk/includes/plugin/class-updater.php
r3272121 r3400899 207 207 } 208 208 $md = new Markdown(); 209 $res = new \stdClass(); 209 if ( ! is_object( $res ) ) { 210 $res = new \stdClass(); 211 } 210 212 $res->name = $this->name; 211 213 $res->homepage = 'https://perfops.one/' . $this->slug; … … 222 224 $res->download_link = $infos->download_url; 223 225 $res->trunk = $infos->download_url; 224 $res->sections = [ 225 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 226 ]; 227 $res->banners = [ 228 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 229 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 230 ]; 226 if ( isset( $res->sections['changelog'] ) ) { 227 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 228 } else { 229 $res->sections = [ 230 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 231 ]; 232 } 233 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 234 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 235 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 236 } else { 237 $res->banners = [ 238 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 239 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 240 ]; 241 } 231 242 return $res; 232 243 } -
keys-master/trunk/init.php
r3272121 r3400899 13 13 define( 'POKM_PRODUCT_ABBREVIATION', 'keysmaster' ); 14 14 define( 'POKM_SLUG', 'keys-master' ); 15 define( 'POKM_VERSION', '2. 3.0' );15 define( 'POKM_VERSION', '2.4.0' ); 16 16 define( 'POKM_CODENAME', '"-"' ); 17 17 define( 'POKM_CDN_AVAILABLE', true ); -
keys-master/trunk/keys-master.php
r3272121 r3400899 11 11 * Plugin URI: https://perfops.one/keys-master 12 12 * Description: Powerful application passwords manager for WordPress with role-based usage control and full analytics reporting capabilities. 13 * Version: 2. 3.013 * Version: 2.4.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
keys-master/trunk/readme.txt
r3272121 r3400899 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 2. 3.06 Tested up to: 6.9 7 Stable tag: 2.4.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.
