feat: Bump version to 1.1.0.0 and add advanced configuration options for seasonal effects
Enhanced JavaScript files for autumn, christmas, easter, fireworks, halloween, hearts, santa, snowfall, snowflakes, and snowstorm to support configuration options via window.SeasonalsPluginConfig. Added automatic theme selection based on date in README.md.
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
const christmas = true; // enable/disable christmas
|
||||
const randomChristmas = true; // enable random Christmas
|
||||
const randomChristmasMobile = false; // enable random Christmas on mobile devices
|
||||
const enableDiffrentDuration = true; // enable different duration for the random Christmas symbols
|
||||
const christmasCount = 25; // count of random extra christmas
|
||||
const config = window.SeasonalsPluginConfig?.christmas || {};
|
||||
|
||||
const christmas = config.enableChristmas !== undefined ? config.enableChristmas : true; // enable/disable christmas
|
||||
const randomChristmas = config.enableRandomChristmas !== undefined ? config.enableRandomChristmas : true; // enable random Christmas
|
||||
const randomChristmasMobile = config.enableRandomChristmasMobile !== undefined ? config.enableRandomChristmasMobile : false; // enable random Christmas on mobile devices (Warning: High values may affect performance)
|
||||
const enableDiffrentDuration = config.enableDifferentDuration !== undefined ? config.enableDifferentDuration : true; // enable different duration for the random Christmas symbols
|
||||
const christmasCount = config.symbolCount || 25; // count of random extra christmas
|
||||
|
||||
|
||||
let msgPrinted = false; // flag to prevent multiple console messages
|
||||
|
||||
Reference in New Issue
Block a user