Skip to content

Commit

Permalink
chore(release): 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgiachi committed May 8, 2023
1 parent 194be72 commit 0151269
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 9 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.

<a name="0.8.0"></a>
## [0.8.0](https://www.github.com/tgiachi/DarkSun/releases/tag/v0.8.0) (2023-5-8)

### ✨ Features

* I've come to a conclusion, I hate typescript, I hate javascript. So the client will be done in Avalonia! 😂 ([2bc4208](https://www.github.com/tgiachi/DarkSun/commit/2bc4208d8860f5d633b5a6bf298dae8c92565566))
* **client:** add initial Avalonia UI project files and setup dependency injection and logging ([abd2165](https://www.github.com/tgiachi/DarkSun/commit/abd21651326cbd88ae59424c479b36fe2470ea28))
* **client:** add splash screen window with DarkStar logo and progress bar ([b8b010e](https://www.github.com/tgiachi/DarkSun/commit/b8b010eba95fc5a4b93e7aab718f08a324e6b017))
* **client:** add support for TileSetListRequestMessage and AccountLoginResponseMessage ([194be72](https://www.github.com/tgiachi/DarkSun/commit/194be7203b1c91a1703b14096cbb79c5721dcfa9))
* **PageViewControl:** add ContentPresenter to PageViewControl ([7091612](https://www.github.com/tgiachi/DarkSun/commit/709161252652c07b2c277d790ab4dc92c533203a))
* **PageViewControl:** add PageViewControl to MainWindow ([c861eff](https://www.github.com/tgiachi/DarkSun/commit/c861effda59220237e1525b60b87d138b9b58222))

### Other

* 🎨 style(.gitignore): add DarkStar.Client/.idea to .gitignore ([1abf55c](https://www.github.com/tgiachi/DarkSun/commit/1abf55ccae5f9eba09a1ac6936c6913a68abfa4d))
* 🐛 fix(LoginPageViewModel.cs): change network client address and port to localhost:5000 ([4c9090e](https://www.github.com/tgiachi/DarkSun/commit/4c9090e726617bfdb64f48375ad069c202a37a32))
* 🔥 chore(DarkStar.Api, DarkStar.Client): remove unused code and files ([e6fa2b8](https://www.github.com/tgiachi/DarkSun/commit/e6fa2b8337013abeed2ff04262fe64e911db964c))

<a name="0.7.0"></a>
## [0.7.0](https://www.github.com/tgiachi/DarkStar/releases/tag/v0.7.0) (2023-5-4)

Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Api.Engine/DarkStar.Api.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>tgiachi (squid@stormwind.it)</Authors>
Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Api/DarkStar.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageProjectUrl>https://github.com/tgiachi/darksun</PackageProjectUrl>
<RepositoryUrl>https://github.com/tgiachi/darksun</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
<Title>Dark Star MMO Api</Title>
<Description> </Description>
<Copyright>MIT License</Copyright>
Expand Down
4 changes: 2 additions & 2 deletions DarkStar.Client/DarkStar.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>

<OutputType>WinExe</OutputType>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Database/DarkStar.Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Engine.Http/DarkStar.Engine.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Engine.Runner/DarkStar.Engine.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
<!-- <ServerGarbageCollection>true</ServerGarbageCollection>-->
<PublishSingleFile>true</PublishSingleFile>

Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Engine/DarkStar.Engine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DarkStar.Network/DarkStar.Network.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.7.0</Version>
<Version>0.8.0</Version>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>tgiachi (squid@stormwind.it)</Authors>
Expand Down

0 comments on commit 0151269

Please sign in to comment.