Plugin Directory

Changeset 3345454


Ignore:
Timestamp:
08/16/2025 09:51:36 AM (8 months ago)
Author:
badhonrocks
Message:

Update to version 1.0.1 from GitHub

Location:
nightly
Files:
8 deleted
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • nightly/tags/1.0.1/nightly.php

    r3345433 r3345454  
    44 * Plugin Name: Nightly — Dark Mode Toggle
    55 * 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.0
     6 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites.
     7 * Version: 1.0.1
    88 * Author: PlugPress
    99 * Author URI: https://plugpress.io/
     
    1313 * Domain Path: /languages
    1414 * Requires at least: 5.0
    15  * Tested up to: 6.4
     15 * Tested up to: 6.8
    1616 * Requires PHP: 7.4
    17  * Network: false
    18  *
    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 floating
    21  * toggle for classic themes. The plugin uses CSS custom properties for smooth theme
    22  * transitions and respects user system preferences.
    23  *
    24  * Key Features:
    25  * - Gutenberg block for flexible placement
    26  * - Automatic floating toggle for classic themes
    27  * - System preference detection
    28  * - Smooth CSS transitions
    29  * - Full accessibility support
    30  * - Performance optimized
    31  * - Clean, maintainable code
    3217 *
    3318 * @package Nightly
     
    4126
    4227// Define plugin constants
    43 define('NIGHTLY_VERSION', '1.0.0');
     28define('NIGHTLY_VERSION', '1.0.1');
    4429define('NIGHTLY_PLUGIN_FILE', __FILE__);
    4530define('NIGHTLY_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • nightly/tags/1.0.1/readme.txt

    r3345433 r3345454  
    44Requires at least: 5.0
    55Requires PHP: 7.4
    6 Tested up to: 6.4
     6Tested up to: 6.8
    77Stable tag: 1.0.0
    88License: GPLv2 or later
     
    1717Nightly 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.
    1818
    19 = 🌙 Why Choose Nightly? =
     19= Why Choose Nightly? =
    2020
    2121* **Universal Compatibility** - Works with FSE themes, classic themes, and everything in between
     
    2727* **Smooth Transitions** - Customizable animation speeds for seamless theme switching
    2828
    29 = 🚀 Perfect for Any Website =
    3029
    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 =
    3731
    38 = ⚡ Key Features =
    39 
    40 **For FSE (Block) Themes:**
    41 * Dedicated admin dashboard for global floating toggle configuration
    42 * Gutenberg block for page-specific toggle placement
    43 * Clean, streamlined interface focused on what you need
    44 
    45 **For Classic Themes:**
    46 * Full-featured admin dashboard with all configuration options
    47 * Auto-injection of floating toggle for site-wide coverage
    48 * Gutenberg block also available for flexible placement
    49 
    50 **Universal Features:**
    5132* System preference detection (respects prefers-color-scheme)
    5233* Customizable transition animations (0-1000ms)
     
    5738* RTL language support
    5839
    59 = 🎨 Easy to Use =
     40= Easy to Use =
    6041
    6142**Getting Started is Simple:**
     
    8566* **Conditional Loading** - Assets only load when needed
    8667
    87 = 🎯 Use Cases =
    88 
    89 * Add dark mode to any WordPress theme without coding
    90 * Improve user experience for evening and night browsing
    91 * Reduce eye strain for visitors reading long-form content
    92 * Create a modern, professional appearance
    93 * Meet accessibility requirements for your website
    94 * Provide user choice and customization options
    95 
    9668== Installation ==
    9769
     
    11486= Quick Setup =
    11587
    116 **For FSE Themes:**
    117 1. Go to Appearance → Nightly
    118 2. Enable "Enable floating toggle"
    119 3. Choose your preferred corner position
    120 4. Save settings - done!
    121 
    122 **For Classic Themes:**
    123881. Go to Appearance → Nightly
    124892. Enable "Auto-inject floating toggle"
  • nightly/trunk/nightly.php

    r3345433 r3345454  
    44 * Plugin Name: Nightly — Dark Mode Toggle
    55 * 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.0
     6 * Description: A lightweight WordPress plugin that provides a minimal dark mode toggle functionality for websites.
     7 * Version: 1.0.1
    88 * Author: PlugPress
    99 * Author URI: https://plugpress.io/
     
    1313 * Domain Path: /languages
    1414 * Requires at least: 5.0
    15  * Tested up to: 6.4
     15 * Tested up to: 6.8
    1616 * Requires PHP: 7.4
    17  * Network: false
    18  *
    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 floating
    21  * toggle for classic themes. The plugin uses CSS custom properties for smooth theme
    22  * transitions and respects user system preferences.
    23  *
    24  * Key Features:
    25  * - Gutenberg block for flexible placement
    26  * - Automatic floating toggle for classic themes
    27  * - System preference detection
    28  * - Smooth CSS transitions
    29  * - Full accessibility support
    30  * - Performance optimized
    31  * - Clean, maintainable code
    3217 *
    3318 * @package Nightly
     
    4126
    4227// Define plugin constants
    43 define('NIGHTLY_VERSION', '1.0.0');
     28define('NIGHTLY_VERSION', '1.0.1');
    4429define('NIGHTLY_PLUGIN_FILE', __FILE__);
    4530define('NIGHTLY_PLUGIN_DIR', plugin_dir_path(__FILE__));
  • nightly/trunk/readme.txt

    r3345433 r3345454  
    44Requires at least: 5.0
    55Requires PHP: 7.4
    6 Tested up to: 6.4
     6Tested up to: 6.8
    77Stable tag: 1.0.0
    88License: GPLv2 or later
     
    1717Nightly 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.
    1818
    19 = 🌙 Why Choose Nightly? =
     19= Why Choose Nightly? =
    2020
    2121* **Universal Compatibility** - Works with FSE themes, classic themes, and everything in between
     
    2727* **Smooth Transitions** - Customizable animation speeds for seamless theme switching
    2828
    29 = 🚀 Perfect for Any Website =
    3029
    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 =
    3731
    38 = ⚡ Key Features =
    39 
    40 **For FSE (Block) Themes:**
    41 * Dedicated admin dashboard for global floating toggle configuration
    42 * Gutenberg block for page-specific toggle placement
    43 * Clean, streamlined interface focused on what you need
    44 
    45 **For Classic Themes:**
    46 * Full-featured admin dashboard with all configuration options
    47 * Auto-injection of floating toggle for site-wide coverage
    48 * Gutenberg block also available for flexible placement
    49 
    50 **Universal Features:**
    5132* System preference detection (respects prefers-color-scheme)
    5233* Customizable transition animations (0-1000ms)
     
    5738* RTL language support
    5839
    59 = 🎨 Easy to Use =
     40= Easy to Use =
    6041
    6142**Getting Started is Simple:**
     
    8566* **Conditional Loading** - Assets only load when needed
    8667
    87 = 🎯 Use Cases =
    88 
    89 * Add dark mode to any WordPress theme without coding
    90 * Improve user experience for evening and night browsing
    91 * Reduce eye strain for visitors reading long-form content
    92 * Create a modern, professional appearance
    93 * Meet accessibility requirements for your website
    94 * Provide user choice and customization options
    95 
    9668== Installation ==
    9769
     
    11486= Quick Setup =
    11587
    116 **For FSE Themes:**
    117 1. Go to Appearance → Nightly
    118 2. Enable "Enable floating toggle"
    119 3. Choose your preferred corner position
    120 4. Save settings - done!
    121 
    122 **For Classic Themes:**
    123881. Go to Appearance → Nightly
    124892. Enable "Auto-inject floating toggle"
Note: See TracChangeset for help on using the changeset viewer.