mirror of
https://github.com/SabreTools/MPF.git
synced 2026-04-05 22:01:16 +00:00
Add better required text for CFW-specific fields
This commit is contained in:
@@ -4,6 +4,7 @@
|
|||||||
- Replace method already ported to IO
|
- Replace method already ported to IO
|
||||||
- Read cuesheet from Redumper log, if possible
|
- Read cuesheet from Redumper log, if possible
|
||||||
- Allow 3 session multisession discs
|
- Allow 3 session multisession discs
|
||||||
|
- Add better required text for CFW-specific fields
|
||||||
|
|
||||||
### 3.7.0 (2026-03-20)
|
### 3.7.0 (2026-03-20)
|
||||||
|
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ namespace MPF.Frontend.Tools
|
|||||||
#region Constants
|
#region Constants
|
||||||
|
|
||||||
private const string RequiredValue = "(REQUIRED)";
|
private const string RequiredValue = "(REQUIRED)";
|
||||||
|
private const string RequiredIfCFW = "(REQUIRED, IF CFW)";
|
||||||
private const string RequiredIfExistsValue = "(REQUIRED, IF EXISTS)";
|
private const string RequiredIfExistsValue = "(REQUIRED, IF EXISTS)";
|
||||||
private const string OptionalValue = "(OPTIONAL)";
|
private const string OptionalValue = "(OPTIONAL)";
|
||||||
|
|
||||||
@@ -998,8 +999,8 @@ namespace MPF.Frontend.Tools
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case RedumpSystem.SonyPlayStation3:
|
case RedumpSystem.SonyPlayStation3:
|
||||||
info.Extras.DiscKey ??= addPlaceholders ? RequiredValue : string.Empty;
|
info.Extras.DiscKey ??= addPlaceholders ? RequiredIfCFW : string.Empty;
|
||||||
info.Extras.DiscID ??= addPlaceholders ? RequiredValue : string.Empty;
|
info.Extras.DiscID ??= addPlaceholders ? RequiredIfCFW : string.Empty;
|
||||||
|
|
||||||
SetCommentFieldIfNotExists(info, SiteCode.InternalSerialName, drive, PhysicalTool.GetPlayStation3Serial);
|
SetCommentFieldIfNotExists(info, SiteCode.InternalSerialName, drive, PhysicalTool.GetPlayStation3Serial);
|
||||||
SetVersionIfNotExists(info, drive, PhysicalTool.GetPlayStation3Version);
|
SetVersionIfNotExists(info, drive, PhysicalTool.GetPlayStation3Version);
|
||||||
|
|||||||
Reference in New Issue
Block a user