From 6721c93497c72ee137fbf4ee6637ccc9c83c43b0 Mon Sep 17 00:00:00 2001 From: Fabian Greffrath Date: Wed, 17 May 2023 22:21:01 +0200 Subject: [PATCH] release Woof! 11.1.1 --- CHANGELOG.md | 22 ++++------------------ CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 427d5f13..75f6384a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,7 @@ **New Features and Improvements** -* Allow bound keys to be unbound in menus by pressing the same key. -* Implementation of the Native MIDI module for macOS (fixed regression after removing SDL_Mixer). -* Add `-dumptables` command line option to export generated translation tables to PWAD. -* Windows Native MIDI improvements (@ceski-1): - - Fix EMIDI global looping. - - Add MIDI compatibility levels. `winmm_complevel` config option: - 0: Vanilla (Emulates DMX MPU-401 mode) - 1: Standard (Emulates MS GS Synth) (Default) - 2: Full (Send everything to device, including SysEx) -* Distinguish exit with message on error and on success. +* winmidi: Sync with Chocolate Doom (@ceski-1). **Bug Fixes** -* Fix memory issues in dehacked parser found with ASan. -* Fix "Smooth pixel scaling" inconsistencies (now it should match Crispy Doom). -* More robust fallback logic for music modules (@joanbm). -* Always print player coords if automap is inactive. -* Eat key if cheat found (e.g. don't switch weapons when typing IDCLEV11). -* Resetting the MUSINFO track after changing the level. -* Add initialization checks to music modules. Fixed crash if sound device not found (thanks to @joanbm). -* Fix initialization with invalid `video_display` setting (@joanbm). +* Fix setting EOF in memio, this bug broke most DEH lumps. +* Do not disable Widescreen menu item without Aspect Ratio Correction anymore (thanks @MrAlaux). +* Set display resolution when toggling Exclusive Fullscreen. diff --git a/CMakeLists.txt b/CMakeLists.txt index ab544463..b82b6f0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,7 +13,7 @@ set(X_VCPKG_APPLOCAL_DEPS_INSTALL ON) cmake_minimum_required(VERSION 3.9) project("Woof" - VERSION 11.1.0 + VERSION 11.1.1 LANGUAGES C) set(CMAKE_C_STANDARD 99)