Changeset 3345454
- Timestamp:
- 08/16/2025 09:51:36 AM (8 months ago)
- Location:
- nightly
- Files:
-
- 8 deleted
- 4 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from nightly/trunk)
-
tags/1.0.1/nightly-1.0.0.zip (deleted)
-
tags/1.0.1/nightly.php (modified) (3 diffs)
-
tags/1.0.1/postcss.config.js (deleted)
-
tags/1.0.1/readme.txt (modified) (6 diffs)
-
tags/1.0.1/src (deleted)
-
tags/1.0.1/tailwind.config.js (deleted)
-
trunk/nightly-1.0.0.zip (deleted)
-
trunk/nightly.php (modified) (3 diffs)
-
trunk/postcss.config.js (deleted)
-
trunk/readme.txt (modified) (6 diffs)
-
trunk/src (deleted)
-
trunk/tailwind.config.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
nightly/tags/1.0.1/nightly.php
r3345433 r3345454 4 4 * Plugin Name: Nightly — Dark Mode Toggle 5 5 * Plugin URI: https://plugpress.io/ 6 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites. Includes a custom Gutenberg block and React-based admin interface.7 * Version: 1.0. 06 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites. 7 * Version: 1.0.1 8 8 * Author: PlugPress 9 9 * Author URI: https://plugpress.io/ … … 13 13 * Domain Path: /languages 14 14 * Requires at least: 5.0 15 * Tested up to: 6. 415 * Tested up to: 6.8 16 16 * Requires PHP: 7.4 17 * Network: false18 *19 * Nightly is a modern dark mode toggle plugin that follows WordPress best practices.20 * It provides both a Gutenberg block for content editors and an automatic floating21 * toggle for classic themes. The plugin uses CSS custom properties for smooth theme22 * transitions and respects user system preferences.23 *24 * Key Features:25 * - Gutenberg block for flexible placement26 * - Automatic floating toggle for classic themes27 * - System preference detection28 * - Smooth CSS transitions29 * - Full accessibility support30 * - Performance optimized31 * - Clean, maintainable code32 17 * 33 18 * @package Nightly … … 41 26 42 27 // Define plugin constants 43 define('NIGHTLY_VERSION', '1.0. 0');28 define('NIGHTLY_VERSION', '1.0.1'); 44 29 define('NIGHTLY_PLUGIN_FILE', __FILE__); 45 30 define('NIGHTLY_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
nightly/tags/1.0.1/readme.txt
r3345433 r3345454 4 4 Requires at least: 5.0 5 5 Requires PHP: 7.4 6 Tested up to: 6. 46 Tested up to: 6.8 7 7 Stable tag: 1.0.0 8 8 License: GPLv2 or later … … 17 17 Nightly is a lightweight, professional dark mode plugin that seamlessly integrates with any WordPress theme. Whether you're using modern FSE (Full Site Editing) themes or classic themes, Nightly provides the perfect dark mode solution for your website. 18 18 19 = 🌙Why Choose Nightly? =19 = Why Choose Nightly? = 20 20 21 21 * **Universal Compatibility** - Works with FSE themes, classic themes, and everything in between … … 27 27 * **Smooth Transitions** - Customizable animation speeds for seamless theme switching 28 28 29 = 🚀 Perfect for Any Website =30 29 31 * **Business Websites** - Professional appearance with improved user experience 32 * **Blogs & News Sites** - Reduce eye strain for readers, especially during evening hours 33 * **E-commerce Stores** - Modern shopping experience that customers expect 34 * **Portfolio Sites** - Showcase your work with elegant dark mode aesthetics 35 * **Documentation Sites** - Essential for developer-focused content 36 * **Any WordPress Site** - Universal solution that works everywhere 30 = Key Features = 37 31 38 = ⚡ Key Features =39 40 **For FSE (Block) Themes:**41 * Dedicated admin dashboard for global floating toggle configuration42 * Gutenberg block for page-specific toggle placement43 * Clean, streamlined interface focused on what you need44 45 **For Classic Themes:**46 * Full-featured admin dashboard with all configuration options47 * Auto-injection of floating toggle for site-wide coverage48 * Gutenberg block also available for flexible placement49 50 **Universal Features:**51 32 * System preference detection (respects prefers-color-scheme) 52 33 * Customizable transition animations (0-1000ms) … … 57 38 * RTL language support 58 39 59 = 🎨Easy to Use =40 = Easy to Use = 60 41 61 42 **Getting Started is Simple:** … … 85 66 * **Conditional Loading** - Assets only load when needed 86 67 87 = 🎯 Use Cases =88 89 * Add dark mode to any WordPress theme without coding90 * Improve user experience for evening and night browsing91 * Reduce eye strain for visitors reading long-form content92 * Create a modern, professional appearance93 * Meet accessibility requirements for your website94 * Provide user choice and customization options95 96 68 == Installation == 97 69 … … 114 86 = Quick Setup = 115 87 116 **For FSE Themes:**117 1. Go to Appearance → Nightly118 2. Enable "Enable floating toggle"119 3. Choose your preferred corner position120 4. Save settings - done!121 122 **For Classic Themes:**123 88 1. Go to Appearance → Nightly 124 89 2. Enable "Auto-inject floating toggle" -
nightly/trunk/nightly.php
r3345433 r3345454 4 4 * Plugin Name: Nightly — Dark Mode Toggle 5 5 * Plugin URI: https://plugpress.io/ 6 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites. Includes a custom Gutenberg block and React-based admin interface.7 * Version: 1.0. 06 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites. 7 * Version: 1.0.1 8 8 * Author: PlugPress 9 9 * Author URI: https://plugpress.io/ … … 13 13 * Domain Path: /languages 14 14 * Requires at least: 5.0 15 * Tested up to: 6. 415 * Tested up to: 6.8 16 16 * Requires PHP: 7.4 17 * Network: false18 *19 * Nightly is a modern dark mode toggle plugin that follows WordPress best practices.20 * It provides both a Gutenberg block for content editors and an automatic floating21 * toggle for classic themes. The plugin uses CSS custom properties for smooth theme22 * transitions and respects user system preferences.23 *24 * Key Features:25 * - Gutenberg block for flexible placement26 * - Automatic floating toggle for classic themes27 * - System preference detection28 * - Smooth CSS transitions29 * - Full accessibility support30 * - Performance optimized31 * - Clean, maintainable code32 17 * 33 18 * @package Nightly … … 41 26 42 27 // Define plugin constants 43 define('NIGHTLY_VERSION', '1.0. 0');28 define('NIGHTLY_VERSION', '1.0.1'); 44 29 define('NIGHTLY_PLUGIN_FILE', __FILE__); 45 30 define('NIGHTLY_PLUGIN_DIR', plugin_dir_path(__FILE__)); -
nightly/trunk/readme.txt
r3345433 r3345454 4 4 Requires at least: 5.0 5 5 Requires PHP: 7.4 6 Tested up to: 6. 46 Tested up to: 6.8 7 7 Stable tag: 1.0.0 8 8 License: GPLv2 or later … … 17 17 Nightly is a lightweight, professional dark mode plugin that seamlessly integrates with any WordPress theme. Whether you're using modern FSE (Full Site Editing) themes or classic themes, Nightly provides the perfect dark mode solution for your website. 18 18 19 = 🌙Why Choose Nightly? =19 = Why Choose Nightly? = 20 20 21 21 * **Universal Compatibility** - Works with FSE themes, classic themes, and everything in between … … 27 27 * **Smooth Transitions** - Customizable animation speeds for seamless theme switching 28 28 29 = 🚀 Perfect for Any Website =30 29 31 * **Business Websites** - Professional appearance with improved user experience 32 * **Blogs & News Sites** - Reduce eye strain for readers, especially during evening hours 33 * **E-commerce Stores** - Modern shopping experience that customers expect 34 * **Portfolio Sites** - Showcase your work with elegant dark mode aesthetics 35 * **Documentation Sites** - Essential for developer-focused content 36 * **Any WordPress Site** - Universal solution that works everywhere 30 = Key Features = 37 31 38 = ⚡ Key Features =39 40 **For FSE (Block) Themes:**41 * Dedicated admin dashboard for global floating toggle configuration42 * Gutenberg block for page-specific toggle placement43 * Clean, streamlined interface focused on what you need44 45 **For Classic Themes:**46 * Full-featured admin dashboard with all configuration options47 * Auto-injection of floating toggle for site-wide coverage48 * Gutenberg block also available for flexible placement49 50 **Universal Features:**51 32 * System preference detection (respects prefers-color-scheme) 52 33 * Customizable transition animations (0-1000ms) … … 57 38 * RTL language support 58 39 59 = 🎨Easy to Use =40 = Easy to Use = 60 41 61 42 **Getting Started is Simple:** … … 85 66 * **Conditional Loading** - Assets only load when needed 86 67 87 = 🎯 Use Cases =88 89 * Add dark mode to any WordPress theme without coding90 * Improve user experience for evening and night browsing91 * Reduce eye strain for visitors reading long-form content92 * Create a modern, professional appearance93 * Meet accessibility requirements for your website94 * Provide user choice and customization options95 96 68 == Installation == 97 69 … … 114 86 = Quick Setup = 115 87 116 **For FSE Themes:**117 1. Go to Appearance → Nightly118 2. Enable "Enable floating toggle"119 3. Choose your preferred corner position120 4. Save settings - done!121 122 **For Classic Themes:**123 88 1. Go to Appearance → Nightly 124 89 2. Enable "Auto-inject floating toggle"
Note: See TracChangeset
for help on using the changeset viewer.