Plugin Directory

Changeset 3201944


Ignore:
Timestamp:
12/03/2024 08:49:56 PM (15 months ago)
Author:
everpress
Message:

Update to version 3.0.0 from GitHub

Location:
snapshots
Files:
16 added
13 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • snapshots/tags/3.0.0/assets/style.css

    r3201943 r3201944  
    3535}
    3636#wp-admin-bar-snapshots .search-snapshot input {
     37    all:revert;
    3738    border: 0;
     39    font-size: 16px;
    3840    width: 100%;
    3941    background: none;
  • snapshots/tags/3.0.0/snapshots.php

    r3201943 r3201944  
    77Author URI:      https://xaver.dev
    88Text Domain:     snapshots
    9 Version:         2.8.0
     9Version:         3.0.0
    1010 */
    1111
     
    4141}
    4242
    43 require_once dirname( __FILE__ ) . '/common.php';
     43require_once __DIR__ . '/includes/common.php';
    4444
    4545if ( defined( 'WP_CLI' ) && WP_CLI ) :
    4646
    47     require_once dirname( __FILE__ ) . '/cli.php';
     47    error_reporting( 0 );
     48
     49    require_once __DIR__ . '/includes/cli.php';
    4850
    4951    WP_CLI::add_command( 'snapshot', 'Snapshots' );
     
    5153else :
    5254
    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';
    5557
    5658    Snapshots_Plugin::get_instance();
  • snapshots/trunk/assets/style.css

    r3201943 r3201944  
    3535}
    3636#wp-admin-bar-snapshots .search-snapshot input {
     37    all:revert;
    3738    border: 0;
     39    font-size: 16px;
    3840    width: 100%;
    3941    background: none;
  • snapshots/trunk/snapshots.php

    r3201943 r3201944  
    77Author URI:      https://xaver.dev
    88Text Domain:     snapshots
    9 Version:         2.8.0
     9Version:         3.0.0
    1010 */
    1111
     
    4141}
    4242
    43 require_once dirname( __FILE__ ) . '/common.php';
     43require_once __DIR__ . '/includes/common.php';
    4444
    4545if ( defined( 'WP_CLI' ) && WP_CLI ) :
    4646
    47     require_once dirname( __FILE__ ) . '/cli.php';
     47    error_reporting( 0 );
     48
     49    require_once __DIR__ . '/includes/cli.php';
    4850
    4951    WP_CLI::add_command( 'snapshot', 'Snapshots' );
     
    5153else :
    5254
    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';
    5557
    5658    Snapshots_Plugin::get_instance();
Note: See TracChangeset for help on using the changeset viewer.