Changeset 3188549
- Timestamp:
- 11/14/2024 10:28:51 AM (17 months ago)
- Location:
- document-library-lite
- Files:
-
- 4 added
- 8 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from document-library-lite/trunk)
-
tags/1.1.1/assets/images/promo-protect.png (added)
-
tags/1.1.1/changelog.txt (modified) (1 diff)
-
tags/1.1.1/document-library-lite.php (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (2 diffs)
-
tags/1.1.1/src/Admin/Admin_Controller.php (modified) (2 diffs)
-
tags/1.1.1/src/Admin/Page/Protect.php (added)
-
trunk/assets/images/promo-protect.png (added)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/document-library-lite.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Admin/Admin_Controller.php (modified) (2 diffs)
-
trunk/src/Admin/Page/Protect.php (added)
Legend:
- Unmodified
- Added
- Removed
-
document-library-lite/tags/1.1.1/changelog.txt
r3157590 r3188549 1 = 1.1.1 = 2 Release date 15 November 2024 3 4 * Dev: Tested up to WordPress 6.7 5 * Dev: Added the promo protect 6 1 7 = 1.1.0 = 2 8 Release date 10 September 2024 -
document-library-lite/tags/1.1.1/document-library-lite.php
r3157590 r3188549 12 12 * Plugin URI: https://wordpress.org/plugins/document-library-lite/ 13 13 * Description: Add documents and display them in a searchable document library. 14 * Version: 1.1. 014 * Version: 1.1.1 15 15 * Author: Barn2 Plugins 16 16 * Author URI: https://barn2.com … … 33 33 } 34 34 35 const PLUGIN_VERSION = '1.1. 0';35 const PLUGIN_VERSION = '1.1.1'; 36 36 const PLUGIN_FILE = __FILE__; 37 37 -
document-library-lite/tags/1.1.1/readme.txt
r3157665 r3188549 4 4 Tags: document library, file manager, download manager, document management, media library 5 5 Requires at least: 6.1 6 Tested up to: 6. 66 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPL-3.0 10 10 License URI: https://www.gnu.org/licenses/gpl.html … … 206 206 == Changelog == 207 207 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 = 209 Release date 14 November 2024 210 211 * Dev: Tested up to WordPress 6.7 212 * Dev: Added the promo protect 216 213 217 214 See changelog.txt for more details. -
document-library-lite/tags/1.1.1/src/Admin/Admin_Controller.php
r3157590 r3188549 50 50 $this->add_service( 'page/settings', new Page\Settings( $this->plugin ) ); 51 51 $this->add_service( 'page/import', new Page\Import( $this->plugin ) ); 52 $this->add_service( 'page/protect', new Page\Protect( $this->plugin ) ); 52 53 $this->add_service( 'page_list', new Page_List() ); 53 54 $this->add_service( 'metabox/document_link', new Metabox\Document_Link() ); … … 106 107 } 107 108 108 // Import Page109 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' ) ) { 110 111 wp_enqueue_style( 'dlw-admin-import', plugins_url( 'assets/css/admin/document-library-import.css', $this->plugin->get_file() ), [], $this->plugin->get_version(), 'all' ); 111 112 } -
document-library-lite/trunk/changelog.txt
r3157590 r3188549 1 = 1.1.1 = 2 Release date 15 November 2024 3 4 * Dev: Tested up to WordPress 6.7 5 * Dev: Added the promo protect 6 1 7 = 1.1.0 = 2 8 Release date 10 September 2024 -
document-library-lite/trunk/document-library-lite.php
r3157590 r3188549 12 12 * Plugin URI: https://wordpress.org/plugins/document-library-lite/ 13 13 * Description: Add documents and display them in a searchable document library. 14 * Version: 1.1. 014 * Version: 1.1.1 15 15 * Author: Barn2 Plugins 16 16 * Author URI: https://barn2.com … … 33 33 } 34 34 35 const PLUGIN_VERSION = '1.1. 0';35 const PLUGIN_VERSION = '1.1.1'; 36 36 const PLUGIN_FILE = __FILE__; 37 37 -
document-library-lite/trunk/readme.txt
r3157665 r3188549 4 4 Tags: document library, file manager, download manager, document management, media library 5 5 Requires at least: 6.1 6 Tested up to: 6. 66 Tested up to: 6.7 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPL-3.0 10 10 License URI: https://www.gnu.org/licenses/gpl.html … … 206 206 == Changelog == 207 207 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 = 209 Release date 14 November 2024 210 211 * Dev: Tested up to WordPress 6.7 212 * Dev: Added the promo protect 216 213 217 214 See changelog.txt for more details. -
document-library-lite/trunk/src/Admin/Admin_Controller.php
r3157590 r3188549 50 50 $this->add_service( 'page/settings', new Page\Settings( $this->plugin ) ); 51 51 $this->add_service( 'page/import', new Page\Import( $this->plugin ) ); 52 $this->add_service( 'page/protect', new Page\Protect( $this->plugin ) ); 52 53 $this->add_service( 'page_list', new Page_List() ); 53 54 $this->add_service( 'metabox/document_link', new Metabox\Document_Link() ); … … 106 107 } 107 108 108 // Import Page109 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' ) ) { 110 111 wp_enqueue_style( 'dlw-admin-import', plugins_url( 'assets/css/admin/document-library-import.css', $this->plugin->get_file() ), [], $this->plugin->get_version(), 'all' ); 111 112 }
Note: See TracChangeset
for help on using the changeset viewer.