Added new settings to config.yml to enable/disable, configure the time interval, and max backups for automatic SQLite database backups.
Code (Text):
auto-backup:
# Set to true to enable automatic backups of the database.
enabled: true # [Default: true]
# The interval (in minutes) at which to perform backups.
interval: 60 # [Default: 60 minutes]
# The maximum number of backup files to keep.
max-backups: 24 # [Default: 24 backups]
Added a new admin command
Code (Text):
/ee stats reset <player> --confirm
Fixed an issue where the charged jump mechanic would sometimes fail to correctly activate the player's glide state.
Improved support for older server versions (1.18+) by adding fallbacks for modern Paper API methods.
Streamlined the /ee importdb command and player data saving processes to be more robust.
The plugin's release process is now fully automated using GitHub Actions