Skip to content
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.

Commit

Permalink
Change nodejs version
Browse files Browse the repository at this point in the history
  • Loading branch information
QuentinGruber committed Feb 3, 2021
1 parent 9582595 commit a3f1a19
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
bin/
obj/
.vs/
2 changes: 1 addition & 1 deletion H1emu/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:H1Z1_server"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="H1emu v1.2.2"
Title="H1emu v1.2.3"
Width="800"
Height="550"
Icon="img/EmuIco_By_ZamZam.ico"
Expand Down
4 changes: 2 additions & 2 deletions H1emu/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ private void InstallNodejs_OnClick(object sender, RoutedEventArgs e)
if (sw.BaseStream.CanWrite)
{
sw.WriteLine("cd /temp");
sw.WriteLine("curl -LJO https://nodejs.org/dist/v12.18.0/node-v12.18.0-x64.msi");
sw.WriteLine("node-v12.18.0-x64.msi");
sw.WriteLine("curl -LJO https://nodejs.org/dist/v14.15.4/node-v14.15.4-x64.msi");
sw.WriteLine("node-v14.15.4-x64.msi");
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions H1emu/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.2.0")]
[assembly: AssemblyFileVersion("1.2.2.0")]
[assembly: AssemblyVersion("1.2.3.0")]
[assembly: AssemblyFileVersion("1.2.3.0")]

0 comments on commit a3f1a19

Please sign in to comment.