Skip to content

Releases: rommapp/romm

v1.4.1

29 Mar 12:31
e2126d1
Compare
Choose a tag to compare

Added

  • Now you can use your games tags (like (USA) or (rev-1)) to filter in the gallery

v1.4

29 Mar 08:41
49284b5
Compare
Choose a tag to compare

Added

Changed

  • Now delete game only deletes it from RomM gallery. To delete it from the filesystem too you need to allow it with the checkbox.

v1.3

28 Mar 23:08
13b1211
Compare
Choose a tag to compare

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;

v1.2.2

28 Mar 16:26
e328232
Compare
Choose a tag to compare

Added

  • Notification added when downloading a game

Changed

Fixed

  • Potential password error when using mariadb if the password have special characters
  • Some other bugs

v1.2

28 Mar 11:02
671b65f
Compare
Choose a tag to compare

Added

Changed

  • SQLite is now the database by default if ROMM_DB_DRIVER is not set. Check docker-compos.example.yml
  • Internal library folder binding in the container changed from /emulation to /library. Check docker-compos.example.yml
  • Platforms and games are now shown by alphabetical order

Docker image v1.2

v1.1

28 Mar 00:54
f627ba0
Compare
Choose a tag to compare

Added

  • Game names parentheses are now omitted when searching game in IGDB, allowing game names to have tags.

Docker image v1.1

v1.0

28 Mar 00:26
675c34f
Compare
Choose a tag to compare

Added

  • Birth of RomM

Docker image v1.0