Skip to content

Commit 8ab5a74

Browse files
fix small bug and hopefully fix build script (venv)
1 parent 796e24c commit 8ab5a74

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,3 +400,4 @@ FodyWeavers.xsd
400400

401401
# Other
402402
Assets/contributors.txt
403+
/BuildScripts/venv

BuildScripts/build.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
python -m venv BuildScripts\venv
2+
BuildScripts\venv\Scripts\activate
13
pip install requests
24
py BuildScripts\contributors.py

Pages/AboutPage.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ public AboutPage()
1818
foreach (var contributor in lines)
1919
{
2020
string[] info = contributor.Split(";");
21-
string name = info[0];
22-
string avatar = info[1];
23-
string link = info[2];
21+
string name = info[0].Replace("WD_CONTRIB_SEMICOLON", ";");
22+
string avatar = info[1].Replace("WD_CONTRIB_SEMICOLON", ";");
23+
string link = info[2].Replace("WD_CONTRIB_SEMICOLON", ";");
2424
string contributionCount = info[3];
2525

2626
contributorList.Children.Add(new ContributorInfo(name, avatar, link));

0 commit comments

Comments
 (0)