Skip to content

Commit 3530b76

Browse files
committed
Bump version number
1 parent b2fb64b commit 3530b76

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

macOS/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<key>CFBundleShortVersionString</key>
1010
<string>0.4</string>
1111
<key>CFBundleVersion</key>
12-
<string>7</string>
12+
<string>8</string>
1313
<key>LSMinimumSystemVersion</key>
1414
<string>10.9</string>
1515
<key>CFBundleDevelopmentRegion</key>

macOS/MainWindowController.cs

+8-7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using System.Linq;
66
using Foundation;
77
using AppKit;
8+
using FsTitle = LibHac.Title;
89
using Title = NX_Game_Info.Common.Title;
910

1011
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
@@ -309,21 +310,21 @@ void BackgroundWorker_DoWork(object sender, DoWorkEventArgs e)
309310

310311
Process.log?.WriteLine("\n{0} titles processed", titles.Count);
311312
}
312-
else if (e.Argument is string sdpath)
313+
else if (e.Argument is string path)
313314
{
314-
List<LibHac.Title> sdtitles = Process.processSd(sdpath);
315+
List<FsTitle> fsTitles = Process.processSd(path);
315316

316-
if (sdtitles != null)
317+
if (fsTitles != null)
317318
{
318-
int count = sdtitles.Count, index = 0;
319+
int count = fsTitles.Count, index = 0;
319320

320-
foreach (var sdtitle in sdtitles)
321+
foreach (var fsTitle in fsTitles)
321322
{
322323
if (worker.CancellationPending) break;
323324

324-
worker.ReportProgress(100 * index++ / count, sdtitle.MainNca?.Filename);
325+
worker.ReportProgress(100 * index++ / count, fsTitle.MainNca?.Filename);
325326

326-
Title title = Process.processTitle(sdtitle);
327+
Title title = Process.processTitle(fsTitle);
327328
if (title != null)
328329
{
329330
titles.Add(title);

0 commit comments

Comments
 (0)