Skip to content

v1.3

Compare
Choose a tag to compare
@zurdi15 zurdi15 released this 28 Mar 23:08
· 3352 commits to master since this release
13b1211

Fixed

Breaking change - This breaking change only applies for mariaDB users:

Updating from <=v1.2.2

Some users reported errors when scanning files with large names because filenames are limited to 100 characters in the database. As I want to give as much flexibility as possible I changed some database columns.

If you didn't make a lot of manual changes you can just get rid of the database and recreate it, scanning your library again. If you did some changes and don't want to lose the progress, you should do this changes manually from the mariadb container (or wherever you have your mariadb database) since there is not any kind of CLI for this migration.

I am so sorry for any inconvenience this can generate.

Columns to modify (examples in case that you set it with database name as romm, in other case just change the database name in the {db_name}.roms part):

  • alter table romm.roms modify column filename varchar(500);
  • alter table romm.roms modify column filename_no_ext varchar(500);
  • alter table romm.roms modify column name varchar(500);
  • alter table romm.roms modify column r_slug varchar(500);
  • alter table romm.roms modify column p_slug varchar(500);
  • alter table romm.roms modify column path_cover_l text;
  • alter table romm.roms modify column path_cover_s text;
  • alter table romm.platforms modify column slug varchar(500);
  • alter table romm.platforms modify column name varchar(500);
  • alter table romm.platforms modify column path_logo text;