Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v3.5.1 #1171

Merged
merged 23 commits into from
Sep 5, 2024
Merged

v3.5.1 #1171

Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
00d34d7
hack to get emujs working in dev mode
gantoine Aug 30, 2024
ba41e99
fix open game in a new tab in gallery/collection
zurdi15 Aug 31, 2024
57bb9e6
add little UX romm accent
zurdi15 Aug 31, 2024
6465713
Merge pull request #1139 from rommapp/dev-mode-env
gantoine Sep 1, 2024
0ce3549
[ROMM-1123] Limit returned roms to 2500
gantoine Sep 1, 2024
a3308fc
remove open in new tab code
gantoine Sep 1, 2024
2be1cbc
Merge pull request #1144 from rommapp/fix-open-new-tab
gantoine Sep 1, 2024
dc65370
[ROMM-1150] Fix multi select in table view
gantoine Sep 1, 2024
c761694
Merge pull request #1151 from rommapp/romm-1150
gantoine Sep 1, 2024
a11dc74
Merge pull request #1149 from rommapp/romm-1123-2
gantoine Sep 2, 2024
00c8771
[ROMM0-1155] Patch zipfil + catch more 7zip errors
gantoine Sep 2, 2024
ae05c6b
[ROMM-1154] fix setting main sibling
gantoine Sep 2, 2024
dc7719d
Merge pull request #1156 from rommapp/romm-1155
gantoine Sep 2, 2024
b470bfa
Merge pull request #1157 from rommapp/romm-1154
gantoine Sep 2, 2024
5029062
Generate pack of favicons
gantoine Sep 2, 2024
a5abc69
use png in homepage
gantoine Sep 2, 2024
33bdb0f
Remove unraid template
gantoine Sep 3, 2024
1ffe63a
Merge pull request #1161 from rommapp/rm-unraid-template
gantoine Sep 3, 2024
6211ad1
build(deps): bump cryptography from 42.0.8 to 43.0.1
dependabot[bot] Sep 4, 2024
deae0b9
set docs and recod paths
gantoine Sep 4, 2024
4dcf3ba
Merge pull request #1164 from rommapp/dependabot/pip/cryptography-43.0.1
gantoine Sep 4, 2024
67e4378
Merge pull request #1159 from rommapp/romm-1153
gantoine Sep 4, 2024
3094d46
Merge pull request #1166 from rommapp/romm-1165
gantoine Sep 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions backend/handler/database/roms_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,13 @@ def update_rom_user(self, id: int, data: dict, session: Session = None) -> RomUs
rom_user = self.get_rom_user_by_id(id)

if data["is_main_sibling"]:
rom = self.get_rom(rom_user.rom_id)

session.execute(
update(RomUser)
.where(
and_(
RomUser.rom_id.in_(
[rom.id for rom in rom_user.rom.get_sibling_roms()]
),
RomUser.rom_id.in_(r.id for r in rom.sibling_roms),
RomUser.user_id == rom_user.user_id,
)
)
Expand Down
Loading