From a3f1a1933293e570cc639e4a5eb45cda7393baf0 Mon Sep 17 00:00:00 2001 From: Quentin Gruber Date: Wed, 3 Feb 2021 22:36:27 +0100 Subject: [PATCH] Change nodejs version --- .gitignore | 1 + H1emu/MainWindow.xaml | 2 +- H1emu/MainWindow.xaml.cs | 4 ++-- H1emu/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 27e48df..9414c53 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea/ bin/ obj/ +.vs/ \ No newline at end of file diff --git a/H1emu/MainWindow.xaml b/H1emu/MainWindow.xaml index 10037e1..7c40c36 100644 --- a/H1emu/MainWindow.xaml +++ b/H1emu/MainWindow.xaml @@ -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" diff --git a/H1emu/MainWindow.xaml.cs b/H1emu/MainWindow.xaml.cs index 6c10f47..b6880f0 100644 --- a/H1emu/MainWindow.xaml.cs +++ b/H1emu/MainWindow.xaml.cs @@ -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"); } } } diff --git a/H1emu/Properties/AssemblyInfo.cs b/H1emu/Properties/AssemblyInfo.cs index 23e1649..479c0df 100644 --- a/H1emu/Properties/AssemblyInfo.cs +++ b/H1emu/Properties/AssemblyInfo.cs @@ -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")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.3.0")] +[assembly: AssemblyFileVersion("1.2.3.0")] \ No newline at end of file