Plugin Directory

Changeset 3188549


Ignore:
Timestamp:
11/14/2024 10:28:51 AM (17 months ago)
Author:
amirition
Message:

Update to version 1.1.1 from GitHub

Location:
document-library-lite
Files:
4 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • document-library-lite/tags/1.1.1/changelog.txt

    r3157590 r3188549  
     1= 1.1.1 =
     2Release date 15 November 2024
     3
     4* Dev: Tested up to WordPress 6.7
     5* Dev: Added the promo protect
     6
    17= 1.1.0 =
    28Release date 10 September 2024
  • document-library-lite/tags/1.1.1/document-library-lite.php

    r3157590 r3188549  
    1212 * Plugin URI:      https://wordpress.org/plugins/document-library-lite/
    1313 * Description:     Add documents and display them in a searchable document library.
    14  * Version:         1.1.0
     14 * Version:         1.1.1
    1515 * Author:          Barn2 Plugins
    1616 * Author URI:      https://barn2.com
     
    3333}
    3434
    35 const PLUGIN_VERSION = '1.1.0';
     35const PLUGIN_VERSION = '1.1.1';
    3636const PLUGIN_FILE    = __FILE__;
    3737
  • document-library-lite/tags/1.1.1/readme.txt

    r3157665 r3188549  
    44Tags: document library, file manager, download manager, document management, media library
    55Requires at least: 6.1
    6 Tested up to: 6.6
     6Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl.html
     
    206206== Changelog ==
    207207
    208 = 1.1.0 =
    209 Release date 25 September 2024
    210 
    211 * New: Added the link style option
    212 * New: Added the lazy load option
    213 * Dev: Added the E2E tests
    214 * Dev: Tested up to WordPress 6.6.2
    215 * Dev: Updated internal libraries
     208= 1.1.1 =
     209Release date 14 November 2024
     210
     211* Dev: Tested up to WordPress 6.7
     212* Dev: Added the promo protect
    216213
    217214See changelog.txt for more details.
  • document-library-lite/tags/1.1.1/src/Admin/Admin_Controller.php

    r3157590 r3188549  
    5050        $this->add_service( 'page/settings', new Page\Settings( $this->plugin ) );
    5151        $this->add_service( 'page/import', new Page\Import( $this->plugin ) );
     52        $this->add_service( 'page/protect', new Page\Protect( $this->plugin ) );
    5253        $this->add_service( 'page_list', new Page_List() );
    5354        $this->add_service( 'metabox/document_link', new Metabox\Document_Link() );
     
    106107        }
    107108
    108         // Import Page
    109         if ( $this->str_ends_with( $hook, 'page_dlp_import' ) ) {
     109        // Import and Protect Page
     110        if ( $this->str_ends_with( $hook, 'page_dlp_import' ) || $this->str_ends_with( $hook, 'page_dll_protect' ) ) {
    110111            wp_enqueue_style( 'dlw-admin-import', plugins_url( 'assets/css/admin/document-library-import.css', $this->plugin->get_file() ), [], $this->plugin->get_version(), 'all' );
    111112        }
  • document-library-lite/trunk/changelog.txt

    r3157590 r3188549  
     1= 1.1.1 =
     2Release date 15 November 2024
     3
     4* Dev: Tested up to WordPress 6.7
     5* Dev: Added the promo protect
     6
    17= 1.1.0 =
    28Release date 10 September 2024
  • document-library-lite/trunk/document-library-lite.php

    r3157590 r3188549  
    1212 * Plugin URI:      https://wordpress.org/plugins/document-library-lite/
    1313 * Description:     Add documents and display them in a searchable document library.
    14  * Version:         1.1.0
     14 * Version:         1.1.1
    1515 * Author:          Barn2 Plugins
    1616 * Author URI:      https://barn2.com
     
    3333}
    3434
    35 const PLUGIN_VERSION = '1.1.0';
     35const PLUGIN_VERSION = '1.1.1';
    3636const PLUGIN_FILE    = __FILE__;
    3737
  • document-library-lite/trunk/readme.txt

    r3157665 r3188549  
    44Tags: document library, file manager, download manager, document management, media library
    55Requires at least: 6.1
    6 Tested up to: 6.6
     6Tested up to: 6.7
    77Requires PHP: 7.4
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl.html
     
    206206== Changelog ==
    207207
    208 = 1.1.0 =
    209 Release date 25 September 2024
    210 
    211 * New: Added the link style option
    212 * New: Added the lazy load option
    213 * Dev: Added the E2E tests
    214 * Dev: Tested up to WordPress 6.6.2
    215 * Dev: Updated internal libraries
     208= 1.1.1 =
     209Release date 14 November 2024
     210
     211* Dev: Tested up to WordPress 6.7
     212* Dev: Added the promo protect
    216213
    217214See changelog.txt for more details.
  • document-library-lite/trunk/src/Admin/Admin_Controller.php

    r3157590 r3188549  
    5050        $this->add_service( 'page/settings', new Page\Settings( $this->plugin ) );
    5151        $this->add_service( 'page/import', new Page\Import( $this->plugin ) );
     52        $this->add_service( 'page/protect', new Page\Protect( $this->plugin ) );
    5253        $this->add_service( 'page_list', new Page_List() );
    5354        $this->add_service( 'metabox/document_link', new Metabox\Document_Link() );
     
    106107        }
    107108
    108         // Import Page
    109         if ( $this->str_ends_with( $hook, 'page_dlp_import' ) ) {
     109        // Import and Protect Page
     110        if ( $this->str_ends_with( $hook, 'page_dlp_import' ) || $this->str_ends_with( $hook, 'page_dll_protect' ) ) {
    110111            wp_enqueue_style( 'dlw-admin-import', plugins_url( 'assets/css/admin/document-library-import.css', $this->plugin->get_file() ), [], $this->plugin->get_version(), 'all' );
    111112        }
Note: See TracChangeset for help on using the changeset viewer.