mirror of
https://github.com/fishyboteso/fishyboteso.git
synced 2024-08-30 18:32:13 +00:00
32 lines
791 B
Python
32 lines
791 B
Python
import logging
|
|
|
|
from fishy.helper.auto_update import _normalize_version
|
|
|
|
from fishy.constants import version
|
|
from .config import config
|
|
|
|
|
|
class Migration:
|
|
@staticmethod
|
|
def up_to_0_5_3():
|
|
config.delete("addoninstalled")
|
|
|
|
@staticmethod
|
|
def migrate():
|
|
prev_version = _normalize_version(config.get("prev_version", "0.0.0"))
|
|
current_version = _normalize_version(version)
|
|
|
|
if current_version > prev_version:
|
|
for v, f in migration_code:
|
|
if prev_version < _normalize_version(v) <= current_version:
|
|
logging.info(f"running migration for {v}")
|
|
f()
|
|
config.set("prev_version", version)
|
|
|
|
|
|
|
|
migration_code = [
|
|
# version, upgrade_code
|
|
("0.5.3", Migration.up_to_0_5_3)
|
|
]
|