From e8b1ab2d7c6d3ee04d50104ddd31af912598c5e1 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 28 Jan 2025 12:50:09 -0500 Subject: [PATCH] Add experimental note to 1G1R --- SabreTools.Core/README.1ST | 4 ++-- SabreTools/Features/BaseFeature.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SabreTools.Core/README.1ST b/SabreTools.Core/README.1ST index 2642f8a2..264fb2ef 100644 --- a/SabreTools.Core/README.1ST +++ b/SabreTools.Core/README.1ST @@ -353,7 +353,7 @@ Features and Options: Exclude any valid item or machine field from outputs. Examples include: romof, publisher, and offset. - -1g1r, --one-game-per-region Try to ensure one game per region + -1g1r, --one-game-per-region [EXPERIMENTAL] Try to ensure one game per region This allows users to input a list of regions to use to filter on in order so only one game from each set of parent and clones will be included. This requires either cloneof or romof tags to function @@ -880,7 +880,7 @@ Features and Options: Exclude any valid item or machine field from outputs. Examples include: romof, publisher, and offset. - -1g1r, --one-game-per-region Try to ensure one game per region + -1g1r, --one-game-per-region [EXPERIMENTAL] Try to ensure one game per region This allows users to input a list of regions to use to filter on in order so only one game from each set of parent and clones will be included. This requires either cloneof or romof tags to function diff --git a/SabreTools/Features/BaseFeature.cs b/SabreTools/Features/BaseFeature.cs index 7351519d..956109fb 100644 --- a/SabreTools/Features/BaseFeature.cs +++ b/SabreTools/Features/BaseFeature.cs @@ -749,7 +749,7 @@ namespace SabreTools.Features return new Feature( OneGamePerRegionValue, new List() { "-1g1r", "--one-game-per-region" }, - "Try to ensure one game per user-defined region", + "[EXPERIMENTAL] Try to ensure one game per user-defined region", ParameterType.Flag, longDescription: "This allows users to input a list of regions to use to filter on in order so only one game from each set of parent and clones will be included. This requires either cloneof or romof tags to function properly."); }