Plugin Directory

Changeset 3086147


Ignore:
Timestamp:
05/14/2024 02:19:31 AM (23 months ago)
Author:
Tim Scheman
Message:

commiting version 1.5.1

Location:
artistpress/trunk
Files:
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • artistpress/trunk/Includes/ArtistPress.php

    r3086143 r3086147  
    2020            $this->version = ARTISTPRESS_VERSION;
    2121        } else {
    22             $this->version = '1.5.0';
     22            $this->version = '1.5.1';
    2323        }
    2424        $this->name = 'artistpress';
     
    8080    private function defineAdminHooks()
    8181    {
    82         $updater = new \ArtistPress\Admin\Update\V122($this->getPluginName(), $this->getVersion());
     82        $updater = new \ArtistPress\Administration\Update\V122($this->getPluginName(), $this->getVersion());
    8383        $updater->run();
    8484
    85         $updater = new \ArtistPress\Admin\Update\V151($this->getPluginName(), $this->getVersion());
     85        $updater = new \ArtistPress\Administration\Update\V151($this->getPluginName(), $this->getVersion());
    8686        $updater->run();
    8787       
     
    9090
    9191        $adminViews     =   [];
    92         $adminViews[]   =   new \ArtistPress\Admin\View\Dashboard($this->getPluginName(), $this->getVersion());
    93         $adminViews[]   =   new \ArtistPress\Admin\View\Settings($this->getPluginName(), $this->getVersion());
     92        $adminViews[]   =   new \ArtistPress\Administration\View\Dashboard($this->getPluginName(), $this->getVersion());
     93        $adminViews[]   =   new \ArtistPress\Administration\View\Settings($this->getPluginName(), $this->getVersion());
    9494
    9595        foreach ($adminViews as $adminView) {
     
    101101
    102102        $contentViews = [];
    103         $contentViews[] =   new \ArtistPress\Admin\View\Artist($this->getPluginName(), $this->getVersion());
    104         $contentViews[] =   new \ArtistPress\Admin\View\Venue($this->getPluginName(), $this->getVersion());
    105         $contentViews[] =   new \ArtistPress\Admin\View\Show($this->getPluginName(), $this->getVersion());
    106         $contentViews[] =   new \ArtistPress\Admin\View\Gallery($this->getPluginName(), $this->getVersion());
     103        $contentViews[] =   new \ArtistPress\Administration\View\Artist($this->getPluginName(), $this->getVersion());
     104        $contentViews[] =   new \ArtistPress\Administration\View\Venue($this->getPluginName(), $this->getVersion());
     105        $contentViews[] =   new \ArtistPress\Administration\View\Show($this->getPluginName(), $this->getVersion());
     106        $contentViews[] =   new \ArtistPress\Administration\View\Gallery($this->getPluginName(), $this->getVersion());
    107107
    108108        foreach ($contentViews as $contentView) {
     
    120120
    121121        $metaBoxes = [];
    122         $metaBoxes[] = new \ArtistPress\Admin\Meta\Artist(
     122        $metaBoxes[] = new \ArtistPress\Administration\Meta\Artist(
    123123            'artist_info',
    124124            __('Artist Information', 'artistpress'),
    125125            'artist'
    126126        );
    127         $metaBoxes[] = new \ArtistPress\Admin\Meta\Venue(
     127        $metaBoxes[] = new \ArtistPress\Administration\Meta\Venue(
    128128            'venue_details',
    129129            __('Venue Details', 'artistpress'),
    130130            'venue'
    131131        );
    132         $metaBoxes[] = new \ArtistPress\Admin\Meta\Show(
     132        $metaBoxes[] = new \ArtistPress\Administration\Meta\Show(
    133133            'show_details',
    134134            __('Show Details', 'artistpress'),
    135135            'show'
    136136        );
    137         $metaBoxes[] = new \ArtistPress\Admin\Meta\Gallery(
     137        $metaBoxes[] = new \ArtistPress\Administration\Meta\Gallery(
    138138            'gallery_content',
    139139            __('Gallery Images', 'artistpress'),
     
    147147       
    148148        $settingsSection = [];
    149         $settingsSection[]  = new \ArtistPress\Admin\Settings\Artist(
     149        $settingsSection[]  = new \ArtistPress\Administration\Settings\Artist(
    150150            $this->getPluginName(),
    151151            $this->getVersion(),
     
    155155        );
    156156
    157         $settingsSection[] = new \ArtistPress\Admin\Settings\ShowList(
     157        $settingsSection[] = new \ArtistPress\Administration\Settings\ShowList(
    158158            $this->getPluginName(),
    159159            $this->getVersion(),
     
    163163        );
    164164
    165         $settingsSection[] = new \ArtistPress\Admin\Settings\Show(
     165        $settingsSection[] = new \ArtistPress\Administration\Settings\Show(
    166166            $this->getPluginName(),
    167167            $this->getVersion(),
     
    171171        );
    172172
    173         $settingsSection[] = new \ArtistPress\Admin\Settings\Gallery(
     173        $settingsSection[] = new \ArtistPress\Administration\Settings\Gallery(
    174174            $this->getPluginName(),
    175175            $this->getVersion(),
     
    179179        );
    180180
    181         $settingsSection[] = new \ArtistPress\Admin\Settings\Upgrade(
     181        $settingsSection[] = new \ArtistPress\Administration\Settings\Upgrade(
    182182            $this->getPluginName(),
    183183            $this->getVersion(),
  • artistpress/trunk/artist-press.php

    r3086137 r3086147  
    66* Author: Tim Scheman
    77* Author URI: http;//timscheman.com
    8 * Version: 1.5.0
     8* Version: 1.5.1
    99* License: GPLv2  //look into this to make sure you have ther right license listed.
    1010*
     
    2121 * Currently plugin version.
    2222 */
    23 define('ARTISTPRESS_VERSION', '1.5.0' );
     23define('ARTISTPRESS_VERSION', '1.5.1' );
    2424define('ARTISTPRESS_DIR_PATH', plugin_dir_path(__FILE__));
    2525define('ARTISTPRESS_DIR_URL', plugin_dir_url(__DIR__) . 'artistpress');
  • artistpress/trunk/readme.txt

    r3086137 r3086147  
    55Tested up to: 6.5.3
    66Requires PHP: 8.0
    7 Stable tag: 1.5.0
     7Stable tag: 1.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393== Changelog ==
    9494
     95= 1.5.1 =
     96* Fix: Conflict with namespacing and previous version directory structure.
     97
    9598= 1.5.0 =
    9699* Major release with possible breaking changes, please be sure to back-up your site before upgrading.
Note: See TracChangeset for help on using the changeset viewer.