diff --git a/changelog.md b/changelog.md index 3f2b936..bf4471c 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,17 @@ # Changelog +## 2.3.2 +### Bug fixes: +Some xid6-tags were signed int 32 whereas the spec says uint32. Fixed the +following: +* loop length +* end length +* fade length +* intro length + +* Code refactoring (use new Java 17 features) +* Length in seconds is masked to 24-bits (id666) + ## 2.3.1 A warning is printed if the minor version (binary) field doesn't match the minor version in the header (plain text). diff --git a/src/main/java/se/anosh/spctag/TagReader.java b/src/main/java/se/anosh/spctag/TagReader.java index ab41cd0..8bc35f3 100644 --- a/src/main/java/se/anosh/spctag/TagReader.java +++ b/src/main/java/se/anosh/spctag/TagReader.java @@ -19,7 +19,7 @@ */ public final class TagReader { - private static final String VERSION ="spctag version 2.3.1"; + private static final String VERSION ="spctag version 2.3.2"; private static final String ABOUT = "code by A. Ullenius 2019-2023"; private static final String LICENCE = "Licence: Gnu General Public License - version 3.0 only"; private static final String TRIBUTE = "spctag is dedicated to my favourite OC remixer: Avien (1986-2004). RIP";