Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cc04bc6
Initial rewrite of import process
matthew-pye Mar 11, 2026
1b9385b
Add metadata provider
matthew-pye Mar 12, 2026
9611479
Various additions & fixes (Read Desc.)
matthew-pye Mar 12, 2026
3c8f570
Added SHA1 hashing for games that don't have one
matthew-pye Mar 12, 2026
a3514ba
Replace finding filename with helper function
matthew-pye Mar 12, 2026
f9dd8a7
Finish import refactor/cleanup
matthew-pye Mar 13, 2026
8c86e70
Cleanup ROM data saving and changed download URL endpoint
matthew-pye Mar 13, 2026
4770888
Changed failed download message to just uses the message
matthew-pye Mar 13, 2026
a5ea5dd
4.8 support and adding user data to settings
matthew-pye Mar 16, 2026
879c9c4
Fix settings not loading when RomMHost is blank
matthew-pye Mar 16, 2026
00b7b0f
Replaced using igdb platforms for RomM platforms
matthew-pye Mar 17, 2026
6a7c649
Add OnPropertyChange to DestinationPath
matthew-pye Mar 17, 2026
286abe8
Fix platform name not being restored in UI
matthew-pye Mar 22, 2026
3f7e60b
Fix object ref error
matthew-pye Mar 22, 2026
71aafd6
Fix issues & add platform to migration
matthew-pye Mar 23, 2026
43d0c75
Guard Emulator being set to null
matthew-pye Mar 23, 2026
423f5bc
Move settings into correct categories & Added some tooltips
matthew-pye Mar 26, 2026
8a09e0e
Merge upsteam client token code with my already existing client token…
matthew-pye Apr 27, 2026
92de6b9
Replace failed text with a notification bar
matthew-pye Apr 27, 2026
7bea6e4
Hopefully mitigate random DependencySource errors
matthew-pye Apr 28, 2026
abdc078
Only update notification bar from settings
matthew-pye Apr 28, 2026
b42af10
Replace RomMSavedSibling to RomMRevision
matthew-pye May 1, 2026
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
4 changes: 2 additions & 2 deletions Downloads/VersionSelector.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<Separator Margin="0,5,0,0" />
<ScrollViewer DockPanel.Dock="Top" Width="auto" Height="120" Margin="5,5,5,5" VerticalScrollBarVisibility="Visible" HorizontalScrollBarVisibility="Disabled">
<StackPanel x:Name="tStack">
<ItemsControl ItemsSource="{Binding Siblings}">
<ItemsControl ItemsSource="{Binding RomVersions}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<RadioButton Margin="5,5,5,5" GroupName="Options" IsChecked="{Binding isSelected, Mode=TwoWay}" Content="{Binding FileName, Mode=OneWay}"/>
<RadioButton Margin="5,5,5,5" GroupName="Options" IsChecked="{Binding IsSelected, Mode=TwoWay}" Content="{Binding FileName, Mode=OneWay}"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
Expand Down
6 changes: 3 additions & 3 deletions Downloads/VersionSelector.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ namespace RomM.VersionSelector
public partial class RomMVersionSelector : PluginUserControl
{

public ObservableCollection<RomMSibling> Siblings { get; set; }
public ObservableCollection<GameInstallInfo> RomVersions { get; set; }
public bool Cancelled { get; set; } = true;

public RomMVersionSelector(List<RomMSibling> siblings)
public RomMVersionSelector(List<GameInstallInfo> romVersions)
{

Siblings = new ObservableCollection<RomMSibling>(siblings);
RomVersions = new ObservableCollection<GameInstallInfo>(romVersions);

InitializeComponent();
}
Expand Down
4 changes: 2 additions & 2 deletions Games/RomMGameInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using System.IO;
using System.Linq;
using ProtoBuf;
using Playnite.SDK;
using RomM.Models.RomM.Rom;

namespace RomM.Games
{
Expand Down Expand Up @@ -68,7 +68,7 @@ private static T FromGameIdString<T>(string gameId) where T : RomMGameInfo
}
}

public InstallController GetInstallController(Game game, RomM romm, bool HasSiblings, int SelectedSibling) => new RomMInstallController(game, romm, HasSiblings, SelectedSibling);
public InstallController GetInstallController(Game game, RomM romm, GameInstallInfo GameData) => new RomMInstallController(game, romm, GameData);

public UninstallController GetUninstallController(Game game, RomM romm) => new RomMUninstallController(game, romm);

Expand Down
Loading