Changeset 3201944
- Timestamp:
- 12/03/2024 08:49:56 PM (15 months ago)
- Location:
- snapshots
- Files:
-
- 16 added
- 13 deleted
- 4 edited
- 1 copied
-
assets/banner-1544x500.png (added)
-
assets/banner-772x250.png (added)
-
assets/banner.png (deleted)
-
assets/icon.png (deleted)
-
assets/screenshot-1.png (deleted)
-
tags/3.0.0 (copied) (copied from snapshots/trunk)
-
tags/3.0.0/README.md (deleted)
-
tags/3.0.0/assets/style.css (modified) (1 diff)
-
tags/3.0.0/cli.php (deleted)
-
tags/3.0.0/common.php (deleted)
-
tags/3.0.0/includes (added)
-
tags/3.0.0/includes/cli.php (added)
-
tags/3.0.0/includes/common.php (added)
-
tags/3.0.0/includes/plugin.php (added)
-
tags/3.0.0/includes/upgrade.php (added)
-
tags/3.0.0/package.json (added)
-
tags/3.0.0/plugin.php (deleted)
-
tags/3.0.0/readme.txt (added)
-
tags/3.0.0/snapshots.php (modified) (3 diffs)
-
tags/3.0.0/upgrade.php (deleted)
-
trunk/README.md (deleted)
-
trunk/assets/style.css (modified) (1 diff)
-
trunk/cli.php (deleted)
-
trunk/common.php (deleted)
-
trunk/includes (added)
-
trunk/includes/cli.php (added)
-
trunk/includes/common.php (added)
-
trunk/includes/plugin.php (added)
-
trunk/includes/upgrade.php (added)
-
trunk/package.json (added)
-
trunk/plugin.php (deleted)
-
trunk/readme.txt (added)
-
trunk/snapshots.php (modified) (3 diffs)
-
trunk/upgrade.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
snapshots/tags/3.0.0/assets/style.css
r3201943 r3201944 35 35 } 36 36 #wp-admin-bar-snapshots .search-snapshot input { 37 all:revert; 37 38 border: 0; 39 font-size: 16px; 38 40 width: 100%; 39 41 background: none; -
snapshots/tags/3.0.0/snapshots.php
r3201943 r3201944 7 7 Author URI: https://xaver.dev 8 8 Text Domain: snapshots 9 Version: 2.8.09 Version: 3.0.0 10 10 */ 11 11 … … 41 41 } 42 42 43 require_once dirname( __FILE__ ) . '/common.php';43 require_once __DIR__ . '/includes/common.php'; 44 44 45 45 if ( defined( 'WP_CLI' ) && WP_CLI ) : 46 46 47 require_once dirname( __FILE__ ) . '/cli.php'; 47 error_reporting( 0 ); 48 49 require_once __DIR__ . '/includes/cli.php'; 48 50 49 51 WP_CLI::add_command( 'snapshot', 'Snapshots' ); … … 51 53 else : 52 54 53 require_once dirname( __FILE__ ) . '/plugin.php';54 require_once dirname( __FILE__ ) . '/upgrade.php';55 require_once __DIR__ . '/includes/plugin.php'; 56 require_once __DIR__ . '/includes/upgrade.php'; 55 57 56 58 Snapshots_Plugin::get_instance(); -
snapshots/trunk/assets/style.css
r3201943 r3201944 35 35 } 36 36 #wp-admin-bar-snapshots .search-snapshot input { 37 all:revert; 37 38 border: 0; 39 font-size: 16px; 38 40 width: 100%; 39 41 background: none; -
snapshots/trunk/snapshots.php
r3201943 r3201944 7 7 Author URI: https://xaver.dev 8 8 Text Domain: snapshots 9 Version: 2.8.09 Version: 3.0.0 10 10 */ 11 11 … … 41 41 } 42 42 43 require_once dirname( __FILE__ ) . '/common.php';43 require_once __DIR__ . '/includes/common.php'; 44 44 45 45 if ( defined( 'WP_CLI' ) && WP_CLI ) : 46 46 47 require_once dirname( __FILE__ ) . '/cli.php'; 47 error_reporting( 0 ); 48 49 require_once __DIR__ . '/includes/cli.php'; 48 50 49 51 WP_CLI::add_command( 'snapshot', 'Snapshots' ); … … 51 53 else : 52 54 53 require_once dirname( __FILE__ ) . '/plugin.php';54 require_once dirname( __FILE__ ) . '/upgrade.php';55 require_once __DIR__ . '/includes/plugin.php'; 56 require_once __DIR__ . '/includes/upgrade.php'; 55 57 56 58 Snapshots_Plugin::get_instance();
Note: See TracChangeset
for help on using the changeset viewer.