1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-25 14:08:34 +01:00

Compare commits

...

3 commits

Author SHA1 Message Date
Ell
62d2b28ec0 bump version 2022-04-08 14:50:14 +02:00
Ell
a1c5b8e2d6 5.3.0 2022-04-08 14:37:25 +02:00
Ell
a7c6230434 suppress MlemGame deprecation warning for DrawEarly 2022-04-08 14:34:57 +02:00
3 changed files with 8 additions and 3 deletions

View file

@ -2,12 +2,15 @@
MLEM tries to adhere to [semantic versioning](https://semver.org/). Breaking changes are written in **bold**. MLEM tries to adhere to [semantic versioning](https://semver.org/). Breaking changes are written in **bold**.
Jump to version: Jump to version:
- [5.3.0 (Unreleased)](#530-unreleased) - [5.4.0 (Unreleased)](#540-unreleased)
- [5.3.0](#530)
- [5.2.0](#520) - [5.2.0](#520)
- [5.1.0](#510) - [5.1.0](#510)
- [5.0.0](#500) - [5.0.0](#500)
## 5.3.0 (Unreleased) ## 5.4.0 (Unreleased)
## 5.3.0
### MLEM ### MLEM
Additions Additions
- Added StringBuilder overloads to GenericFont - Added StringBuilder overloads to GenericFont

View file

@ -114,7 +114,9 @@ namespace MLEM.Startup {
this.PreDraw?.Invoke(this, gameTime); this.PreDraw?.Invoke(this, gameTime);
CoroutineHandler.RaiseEvent(CoroutineEvents.PreDraw); CoroutineHandler.RaiseEvent(CoroutineEvents.PreDraw);
#pragma warning disable CS0618
this.UiSystem.DrawEarly(gameTime, this.SpriteBatch); this.UiSystem.DrawEarly(gameTime, this.SpriteBatch);
#pragma warning restore CS0618
this.DoDraw(gameTime); this.DoDraw(gameTime);
this.UiSystem.Draw(gameTime, this.SpriteBatch); this.UiSystem.Draw(gameTime, this.SpriteBatch);

View file

@ -2,7 +2,7 @@
#tool docfx.console&version=2.58.9 #tool docfx.console&version=2.58.9
// this is the upcoming version, for prereleases // this is the upcoming version, for prereleases
var version = Argument("version", "5.3.0"); var version = Argument("version", "5.4.0");
var target = Argument("target", "Default"); var target = Argument("target", "Default");
var branch = Argument("branch", "main"); var branch = Argument("branch", "main");
var config = Argument("configuration", "Release"); var config = Argument("configuration", "Release");