summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Gallet <clement.gallet@ens-lyon.org>2021-07-06 15:04:51 +0200
committerClément Gallet <clement.gallet@ens-lyon.org>2021-07-06 15:04:51 +0200
commit2ae7dd596f9e9e3be8b32ae1df2090576356ec61 (patch)
tree047aaba760d562428cabbe47ebc15857076187a3
parent07217aa38d6065b239ac586ef5777f89310b23b9 (diff)
Release version 1.4.2v1.4.2
-rw-r--r--CHANGELOG.md5
-rw-r--r--debian/changelog55
-rw-r--r--debian/compat1
-rw-r--r--debian/control2
-rw-r--r--src/shared/version.h2
5 files changed, 62 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 46fb2d48..a7509fec 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
## [Unreleased]
### Added
+### Changed
+### Fixed
+
+## [1.4.2] - 2021-07-06
+### Added
* Add the execution permission if possible
* Show a specific message when user specify a script as game executable
diff --git a/debian/changelog b/debian/changelog
index 1ac9abe3..12c24cbe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,58 @@
+libtas (1.4.2) unstable; urgency=medium
+
+ * Add the execution permission if possible
+ * Show a specific message when user specify a script as game executable
+ * Add lua scripting
+ * Check for gdb presence
+ * Use vdpau-va-gl for vdpau software rendering (#390)
+ * Implement multiple SDL audio devices
+ * Clicking the first column seeks to frame in input editor
+ * Lua memory read and write float/double
+ * Basic MacOS support
+ * Input editor: option to disable autoscroll (#182)
+ * Input editor: option to seeks to current frame after rewind (#134)
+ * Input editor: show state invalidation as gray area when threads changed
+ * Add setting to not load movie metadata
+ * Input editor: pasting while selecting a range repeats the paste frames in range
+ * Allow games to use the native Steam API
+ * Implement SDL_GetWindowFromID() (#409)
+ * Implement more X*LookupString() functions
+ * Check for socket file removal errors
+ * Input editor: Prevent users from setting blank input labels
+ * Ram Watch: Add intermediate addresses for pointer chain
+ * Lua: add line and ellipse drawing
+ * Advance time for .NET speed checks (#303)
+ * Remove "save screen" option (always on)
+ * Change again the threshold for triggering a non-draw frame
+ * Don't scroll input editor when rewinding (#381)
+ * Raise the limit of thread number in states
+ * State loading doesn't write zeros on zero pages, preventing allocations
+ * Switch input mapping to tabs
+ * Optimize UI refresh with timer
+ * Switch OpenGL OSD using shaders. Adds transparency.
+ * Exit the game if the socket connection is lost
+ * Fix ram watch offset parsing
+ * Disable Start and attach gdb for wine games
+ * Fix SDL_Lock/UnlockAudio that can be called multiple times (#385)
+ * Remove keyboard_support setting (#386)
+ * Correctly handle opening of /dev/input/event|jsdev with writing flag
+ * Fix pitch for OpenAL
+ * Fix some labels in the input editor being truncated
+ * Set timezone to UTC+0
+ * Send low-level window closing event even if game uses SDL (#395)
+ * snd_pcm_writei() should block until all frames can be played
+ * Fix controller inputs when controller window has focus
+ * Add modifier to SDL key event (#405)
+ * Handle savestates from previous execution that were performed after game
+ exiting (because forked savestate) (#407)
+ * Fix and improve SDL2_renderer HUD (#410)
+ * Fix "OSD on encodes" being broken
+ * Fix the method to detect the game's `SDL_DYNAPI_entry` symbol
+ * Input editor: Allow modifiers when adding a new column
+ * Ram Watch: Fix the definition of base address of file
+
+ -- clement <clement.gallet@ens-lyon.org> Tue, 06 Jul 2021 11:47:22 +0200
+
libtas (1.4.1) unstable; urgency=medium
* Savestates can be compressed
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index ec635144..00000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-9
diff --git a/debian/control b/debian/control
index 8722d15e..f4c37a2a 100644
--- a/debian/control
+++ b/debian/control
@@ -2,7 +2,7 @@ Source: libtas
Section: unknown
Priority: optional
Maintainer: Clement Gallet <clement.gallet@ens-lyon.org>
-Build-Depends: debhelper (>= 9), libx11-dev, qtbase5-dev (>= 5.6.0), libsdl2-dev, libxcb1-dev, libxcb-keysyms1-dev, libxcb-xkb-dev, libasound2-dev, libavutil-dev, liblua5.3-dev, libswresample-dev, libfreetype6-dev, libfontconfig1-dev
+Build-Depends: debhelper-compat (= 10), libx11-dev, qtbase5-dev (>= 5.6.0), libsdl2-dev, libxcb1-dev, libxcb-keysyms1-dev, libxcb-xkb-dev, libasound2-dev, libavutil-dev, liblua5.3-dev, libswresample-dev, libfreetype6-dev, libfontconfig1-dev
Standards-Version: 3.9.8
Homepage: https://github.com/clementgallet/libTAS
diff --git a/src/shared/version.h b/src/shared/version.h
index 14b7669b..ae13cb37 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 = 1;
+static const int PATCHVERSION = 2;
#endif