Skip to content

Commit

Permalink
Updated READMEs and Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sven-n committed Nov 24, 2024
1 parent 9650b6e commit 6352b74
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ General requirements:
* A game client (check our Discord FAQs)
* Knowledge or way to start the game client, so that it connects to the server. Our Launcher will do that.

* Launcher binaries: [MUnique.OpenMU.ClientLauncher v0.8.17.zip](https://github.com/MUnique/OpenMU/releases/download/v0.8.17/MUnique.OpenMU.ClientLauncher_0.8.17.zip)
* It requires the [.NET 8 runtime](https://dotnet.microsoft.com/download/dotnet/8.0)
* Launcher binaries: [MUnique.OpenMU.ClientLauncher v0.9.0.zip](https://github.com/MUnique/OpenMU/releases/download/v0.9.0/MUnique.OpenMU.ClientLauncher_0.9.0.zip)
* It requires the [.NET 9 runtime](https://dotnet.microsoft.com/download/dotnet/9.0)
* If your server and client runs on your local host, use any IP of 127.x.x.x, except 127.0.0.1, because this one is blocked by the client. For example, you could use 127.127.127.127

This guide describes two ways of starting the server. Use Docker, if you just
Expand Down Expand Up @@ -55,16 +55,16 @@ Requirements:

* PostgreSQL installed

* Visual Studio 2022 (17.8+) installed, with workloads for ASP.NET Web development
* Visual Studio 2022 (17.12+) installed, with workloads for ASP.NET Web development
and .NET Desktop development. Please keep it up-to-date to prevent any issues.

* Visual Stuido Extension "Web Compiler 2022+", if you plan to edit SCSS files
for the admin panel.
* https://marketplace.visualstudio.com/items?itemName=Failwyn.WebCompiler64

* [.NET SDK 8](https://dotnet.microsoft.com/download/dotnet/8.0)
(it should be included in Visual Studio 17.8+)
* `winget install Microsoft.DotNet.SDK.8`
* [.NET SDK 9](https://dotnet.microsoft.com/download/dotnet/9.0)
(it should be included in Visual Studio 17.12+)
* `winget install Microsoft.DotNet.SDK.9`

* [NodeJS 16+](https://nodejs.org) installed
* `winget install OpenJS.NodeJS.LTS`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This project is released under the MIT license (see LICENSE file).

## Used technologies

The project is mainly written in C# and targets .NET 8.0.
The project is mainly written in C# and targets .NET 9.0.

The servers admin panel is hosted on an embedded ASP.NET Core webserver (Kestrel)
and implemented as Blazor Server App.
Expand Down
4 changes: 2 additions & 2 deletions src/Network/MUnique.OpenMU.Network.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
MUnique.OpenMU.Network contains all what's required to connect from and to a MU Online game, connect or chat server. It implements the MU Online network protocol.
It also contains several the encryption algorithms and keys which were used until a few years ago up to Season 6 Episode 3.
</Description>
<PackageVersion>0.8.23</PackageVersion>
<Version>0.8.23</Version>
<PackageVersion>0.9.0</PackageVersion>
<Version>0.9.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions src/PlugIns/MUnique.OpenMU.PlugIns.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
<Description>
MUnique.OpenMU.PlugIns contains all what's required to create plugins extension points and own plugins for dependent applications.
</Description>
<PackageVersion>0.8.23</PackageVersion>
<Version>0.8.23</Version>
<PackageVersion>0.9.0</PackageVersion>
<Version>0.9.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
4 changes: 2 additions & 2 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.8.23.0")]
[assembly: AssemblyFileVersion("0.8.23.0")]
[assembly: AssemblyVersion("0.9.0.0")]
[assembly: AssemblyFileVersion("0.9.0.0")]

0 comments on commit 6352b74

Please sign in to comment.