Skip to content

Commit 3db6ca6

Browse files
committed
Added warning label for games with known issues
1 parent 9f1817c commit 3db6ca6

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

WindowsApp1/Compact.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ Public Class Compact
495495
(wDString, "*", IO.SearchOption.AllDirectories).Length
496496

497497
fileCountTotal = numberOfFiles
498-
498+
Form2.lblCompactIssues.Visible = False
499499
WikiHandler.localFolderParse(wDString, DIwDString, rawpreSize)
500500

501501
Catch ex As Exception

WindowsApp1/Form2.Designer.vb

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WindowsApp1/WikiHandler.vb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Public Class WikiHandler
2323
Dim gameName As New List(Of String)
2424

2525
If InputFromGitHub Is Nothing Then
26-
26+
Console.WriteLine("Getting List")
2727
Dim wc As New WebClient
2828
wc.Encoding = Encoding.UTF8
2929
Source = wc.DownloadString("https://raw.githubusercontent.com/ImminentFate/CompactGUI/master/Wiki/WikiDB_Games")
@@ -111,6 +111,11 @@ Public Class WikiHandler
111111
FillTable(n)
112112

113113
ratioavg += Decimal.Parse(InputFromGitHub(n).Split("|")(6))
114+
If InputFromGitHub(n).Split("|")(7).Contains("*") Then
115+
Form2.lblCompactIssues.Visible = True
116+
Else
117+
Form2.lblCompactIssues.Visible = False
118+
End If
114119

115120
Next
116121

0 commit comments

Comments
 (0)