summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Gallet <clement.gallet@ens-lyon.org>2022-03-27 11:00:37 +0200
committerClément Gallet <clement.gallet@ens-lyon.org>2022-03-27 11:00:37 +0200
commit5103794329fea405ad011df07cef1d834545ddd8 (patch)
tree01fe2a78ab6bae94710220245513fd931d8147e7
parent9d6a537cebe4a265242ff99441b1865735a7ab52 (diff)
Release 1.4.3v1.4.3
-rw-r--r--CHANGELOG.md5
-rw-r--r--configure.ac2
-rw-r--r--debian/changelog55
-rw-r--r--src/shared/version.h2
4 files changed, 62 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 284c5f85..46c39422 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
## [Unreleased]
### Added
+### Changed
+### Fixed
+
+## [1.4.3] - 2022-03-27
+### Added
* Implement SteamInternal_FindOrCreateUserInterface()
* Add shaders for OpenGL ES (#441)
diff --git a/configure.ac b/configure.ac
index 55531173..09576a5d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
dnl **** Initialization ****
-AC_INIT([libTAS], [1.4.2], [clement.gallet@ens-lyon.org])
+AC_INIT([libTAS], [1.4.3], [clement.gallet@ens-lyon.org])
AM_INIT_AUTOMAKE([foreign subdir-objects])
AC_PROG_CXX
AC_CONFIG_SRCDIR([src/program/main.cpp])
diff --git a/debian/changelog b/debian/changelog
index 12c24cbe..de8c7e03 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,58 @@
+libtas (1.4.3) unstable; urgency=medium
+
+ * Implement SteamInternal_FindOrCreateUserInterface()
+ * Add shaders for OpenGL ES (#441)
+ * Add history for game command-line arguments
+ * Support binding keys to mouse buttons
+ * Add a toggle fast-forward hotkey
+ * Implements alGetString() (#447)
+ * snd_pcm_recover() now supports underrun
+ * Add interface to SteamClient, and add v020
+ * Add another method to find dlfct symbols (#435)
+ * Add Unity sync values for Dandara
+ * Show pending input changes in the input editor when rewinding.
+ * Ram Search window can be cleared
+ * Add SDL_GetTicks64() (#461)
+ * Implements snd_pcm_hw_params_get_rate()
+ * Implements glXMakeContextCurrent()
+ * Add a warning for possible time-tracking option
+ * Don't wait for initial socket connection when game has stopped
+ * Complete lua input category
+ * Simple autodetect of game libraries
+ * eglGetProcAddress() is also used for gl functions
+ * Prevent a mono sleep from adding variable time to the timer
+ * Reorder codecs and add Ut (#467)
+ * Better implementation of pointer grabbing and mask
+ * Raise the minimum audio buffer size
+ * Change default video codec to x264rgb
+ * Rework the ram search entirely (#268)
+ * Parsing /proc/self/maps no longer requires loading the entire file in memory
+ * Write a proper PRNG to fill /dev/urandom (#474)
+ * Input editor: insert a copy of selected frame instead of blank frame
+ * Fix variable RNG seed in Papers Please (#422)
+ * Fix some keys with modifiers that are mapped to keys from another layout
+ * Fix ALSA underrun support (fix #426)
+ * Fix SDL2 hooking when different library name
+ * Update SDL_GetKeyboardState returned value (#440)
+ * Fix writing back savefiles on restart (#433)
+ * Check for invalid SDL audio device (fix #432)
+ * Remove unused LIBTAS_HAS_XINPUT which broke XInput opcode (fix #430)
+ * Don't handle xcb events when 1x1 windows are created (#441)
+ * Fix flags when restoring a file mapping (#445)
+ * Fix some GL OSD black rectangle (#444)
+ * Input editor toggling is now synced with main thread, preventing rare cases
+ of concurrent changes in the movie
+ * Dragging in the input editor now toggle all inputs in between
+ * Change audio context locking
+ * Fix bug when accessing samples of empty buffer
+ * Fix bug when accessing past the audio buffer (#463)
+ * Disable xevent filtering used for composition (#443)
+ * Support internal glibc TLS functions not available anymore
+ * Ignore SDL_SetWindowSize() when fullscreen
+ * Invalidate OSD texture if SDL2 renderer changed (#473)
+
+ -- clement <clement.gallet@ens-lyon.org> Sun, 27 Mar 2022 10:40:18 +0200
+
libtas (1.4.2) unstable; urgency=medium
* Add the execution permission if possible
diff --git a/src/shared/version.h b/src/shared/version.h
index ae13cb37..65c71f39 100644
--- a/src/shared/version.h
+++ b/src/shared/version.h
@@ -22,6 +22,6 @@
static const int MAJORVERSION = 1;
static const int MINORVERSION = 4;
-static const int PATCHVERSION = 2;
+static const int PATCHVERSION = 3;
#endif