Changeset 3201948
- Timestamp:
- 12/03/2024 09:00:37 PM (15 months ago)
- Location:
- snapshots
- Files:
-
- 14 added
- 10 deleted
- 8 edited
- 1 copied
-
assets/banner-1544x500.png (modified) (previous)
-
assets/banner-772x250.png (modified) (previous)
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
tags/2.8.1 (copied) (copied from snapshots/trunk)
-
tags/2.8.1/README.md (deleted)
-
tags/2.8.1/assets/style.css (modified) (1 diff)
-
tags/2.8.1/cli.php (deleted)
-
tags/2.8.1/common.php (deleted)
-
tags/2.8.1/includes (added)
-
tags/2.8.1/includes/cli.php (added)
-
tags/2.8.1/includes/common.php (added)
-
tags/2.8.1/includes/plugin.php (added)
-
tags/2.8.1/includes/upgrade.php (added)
-
tags/2.8.1/package.json (added)
-
tags/2.8.1/plugin.php (deleted)
-
tags/2.8.1/readme.txt (added)
-
tags/2.8.1/snapshots.php (modified) (3 diffs)
-
tags/2.8.1/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/2.8.1/assets/style.css
r3201947 r3201948 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/2.8.1/snapshots.php
r3201947 r3201948 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
r3201947 r3201948 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
r3201947 r3201948 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.