Changeset 3400895
- Timestamp:
- 11/22/2025 11:37:43 AM (6 months ago)
- Location:
- mailarchiver
- Files:
-
- 10 edited
- 1 copied
-
tags/4.3.0 (copied) (copied from mailarchiver/trunk)
-
tags/4.3.0/CHANGELOG.md (modified) (1 diff)
-
tags/4.3.0/includes/plugin/class-updater.php (modified) (2 diffs)
-
tags/4.3.0/init.php (modified) (1 diff)
-
tags/4.3.0/mailarchiver.php (modified) (1 diff)
-
tags/4.3.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/mailarchiver.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mailarchiver/tags/4.3.0/CHANGELOG.md
r3272129 r3400895 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **MailArchiver** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [4.3.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 5 10 6 11 ## [4.2.0] - 2025-04-14 -
mailarchiver/tags/4.3.0/includes/plugin/class-updater.php
r3272129 r3400895 208 208 } 209 209 $md = new Markdown(); 210 $res = new \stdClass(); 210 if ( ! is_object( $res ) ) { 211 $res = new \stdClass(); 212 } 211 213 $res->name = $this->name; 212 214 $res->homepage = 'https://perfops.one/' . $this->slug; … … 223 225 $res->download_link = $infos->download_url; 224 226 $res->trunk = $infos->download_url; 225 $res->sections = [ 226 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 227 ]; 228 $res->banners = [ 229 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 230 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 231 ]; 227 if ( isset( $res->sections['changelog'] ) ) { 228 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 229 } else { 230 $res->sections = [ 231 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 232 ]; 233 } 234 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 235 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 236 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 237 } else { 238 $res->banners = [ 239 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 240 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 241 ]; 242 } 232 243 return $res; 233 244 } -
mailarchiver/tags/4.3.0/init.php
r3272129 r3400895 13 13 define( 'MAILARCHIVER_PRODUCT_ABBREVIATION', 'mailarchiver' ); 14 14 define( 'MAILARCHIVER_SLUG', 'mailarchiver' ); 15 define( 'MAILARCHIVER_VERSION', '4. 2.0' );15 define( 'MAILARCHIVER_VERSION', '4.3.0' ); 16 16 define( 'MAILARCHIVER_MONOLOG_VERSION', '2.9.3' ); 17 17 define( 'MAILARCHIVER_CODENAME', '"-"' ); -
mailarchiver/tags/4.3.0/mailarchiver.php
r3272129 r3400895 11 11 * Plugin URI: https://perfops.one/mailarchiver 12 12 * Description: Automatically archive and store all emails sent from your site. 13 * Version: 4. 2.013 * Version: 4.3.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
mailarchiver/tags/4.3.0/readme.txt
r3272129 r3400895 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 4. 2.06 Tested up to: 6.9 7 Stable tag: 4.3.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
mailarchiver/trunk/CHANGELOG.md
r3272129 r3400895 3 3 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and **MailArchiver** adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 5 6 ## [4.3.0] - 2025-11-22 7 8 ### Added 9 - Compatibility with WordPress 6.9. 5 10 6 11 ## [4.2.0] - 2025-04-14 -
mailarchiver/trunk/includes/plugin/class-updater.php
r3272129 r3400895 208 208 } 209 209 $md = new Markdown(); 210 $res = new \stdClass(); 210 if ( ! is_object( $res ) ) { 211 $res = new \stdClass(); 212 } 211 213 $res->name = $this->name; 212 214 $res->homepage = 'https://perfops.one/' . $this->slug; … … 223 225 $res->download_link = $infos->download_url; 224 226 $res->trunk = $infos->download_url; 225 $res->sections = [ 226 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 227 ]; 228 $res->banners = [ 229 "low" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 230 "high" => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 231 ]; 227 if ( isset( $res->sections['changelog'] ) ) { 228 $res->sections['changelog'] = $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>'; 229 } else { 230 $res->sections = [ 231 'changelog' => $md->get_inline( $infos->changelog, [] ) . '<br/><br/><p><a target="_blank" href="' . $res->homepage . '-changelog">CHANGELOG »</a></p>', 232 ]; 233 } 234 if ( isset( $res->banners['low'] ) && isset( $res->banners['high'] )) { 235 $res->banners['low'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg'; 236 $res->banners['high'] = str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg'; 237 } else { 238 $res->banners = [ 239 'low' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-772x250.jpg', 240 'high' => str_replace( 'github.com', 'raw.githubusercontent.com', $this->product ) . '/refs/heads/master/.wordpress-org/banner-1544x500.jpg' 241 ]; 242 } 232 243 return $res; 233 244 } -
mailarchiver/trunk/init.php
r3272129 r3400895 13 13 define( 'MAILARCHIVER_PRODUCT_ABBREVIATION', 'mailarchiver' ); 14 14 define( 'MAILARCHIVER_SLUG', 'mailarchiver' ); 15 define( 'MAILARCHIVER_VERSION', '4. 2.0' );15 define( 'MAILARCHIVER_VERSION', '4.3.0' ); 16 16 define( 'MAILARCHIVER_MONOLOG_VERSION', '2.9.3' ); 17 17 define( 'MAILARCHIVER_CODENAME', '"-"' ); -
mailarchiver/trunk/mailarchiver.php
r3272129 r3400895 11 11 * Plugin URI: https://perfops.one/mailarchiver 12 12 * Description: Automatically archive and store all emails sent from your site. 13 * Version: 4. 2.013 * Version: 4.3.0 14 14 * Requires at least: 6.2 15 15 * Requires PHP: 8.1 -
mailarchiver/trunk/readme.txt
r3272129 r3400895 4 4 Requires at least: 6.2 5 5 Requires PHP: 8.1 6 Tested up to: 6. 87 Stable tag: 4. 2.06 Tested up to: 6.9 7 Stable tag: 4.3.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.
