Skip to content

Commit

Permalink
Signature parser version bump (#477)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-j-green authored Jan 26, 2025
1 parent 9922e61 commit 3200346
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .devcontainer/.env

This file was deleted.

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -403,5 +403,7 @@ ASALocalRun/

# Local History for Visual Studio
.localhistory/

.devcontainer/.env
gaseous-server/.DS_Store
gaseous-server/wwwroot/emulators/EmulatorJS
Binary file removed gaseous-server/.DS_Store
Binary file not shown.
12 changes: 4 additions & 8 deletions gaseous-server/Classes/SignatureIngestors/XML.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,10 @@ public void Import(string SearchPath, string ProcessedDirectory, gaseous_signatu

List<int> gameCountries = new List<int>();
if (
gameObject.Country != null &&
gameObject.Country != "Unknown"
gameObject.Country != null
)
{
string[] countries = gameObject.Country.Split(",");
foreach (string country in countries)
foreach (string country in gameObject.Country.Keys)
{
int countryId = -1;
countryId = Common.GetLookupByCode(Common.LookupTypes.Country, (string)Common.ReturnValueIfNull(country.Trim(), ""));
Expand Down Expand Up @@ -208,12 +206,10 @@ public void Import(string SearchPath, string ProcessedDirectory, gaseous_signatu

List<int> gameLanguages = new List<int>();
if (
gameObject.Language != null &&
gameObject.Language != "nolang"
gameObject.Language != null
)
{
string[] languages = gameObject.Language.Split(",");
foreach (string language in languages)
foreach (string language in gameObject.Language.Keys)
{
int languageId = -1;
languageId = Common.GetLookupByCode(Common.LookupTypes.Language, (string)Common.ReturnValueIfNull(language.Trim(), ""));
Expand Down
1 change: 1 addition & 0 deletions gaseous-server/Support/Country.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ SK|Slovakia
TH|Thailand
TR|Turkey
TW|Taiwan
UK|United Kingdom
US|United States
USA|United States
VN|Vietnam
Expand Down
2 changes: 1 addition & 1 deletion gaseous-server/gaseous-server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<ItemGroup>
<PackageReference Include="Asp.Versioning.Mvc" Version="8.1.0" />
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.0" />
<PackageReference Include="gaseous-signature-parser" Version="2.3.0" />
<PackageReference Include="gaseous-signature-parser" Version="2.3.5" />
<PackageReference Include="gaseous.IGDB" Version="1.0.2" />
<PackageReference Include="hasheous-client" Version="0.1.0" />
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.5.0" />
Expand Down
Binary file removed gaseous-server/wwwroot/.DS_Store
Binary file not shown.

0 comments on commit 3200346

Please sign in to comment.