diff options
author | raveit65 <[email protected]> | 2024-02-21 21:33:10 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2024-02-21 21:33:10 +0100 |
commit | 1f1fb3c13f8fe9a6e33562a145d66f1900ed7b52 (patch) | |
tree | 0fb25668c091fa3aba1ebb83e53fda2eb8c7028d | |
parent | 00b19b8816642b2066e8b22fb1fec1d057c06276 (diff) | |
download | engrampa-1f1fb3c13f8fe9a6e33562a145d66f1900ed7b52.tar.bz2 engrampa-1f1fb3c13f8fe9a6e33562a145d66f1900ed7b52.tar.xz |
release 1.28.0v1.28.0
-rw-r--r-- | NEWS | 17 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 19 insertions, 2 deletions
@@ -1,3 +1,20 @@ +### engrampa 1.28.0 + + * update translations + * Use unar instead of cpio for CPIO archives + * Add correct jar mime type + * Fix double URI escaping + * Escapes a string for use in a URI. replace special "# and ?" characters in uri + * rar: Actually accept unrar-free as the executable name + * rar: Add support for unrar-free + * rar: Fix out of bounds read on malformed output + * rar: Simplify and merge duplicate code + * zip: Fix crashes on buggy zip output + * 7z: Fix accepting RAR archives when unar-open-zip=true + * correct translation string + * Fix Segfault on opening .deb files after recent Debian Unstable updates + * fix warning in Japanese translations + ### engrampa 1.27.1 * update translations diff --git a/configure.ac b/configure.ac index 2193c2e..eaeb2b8 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([engrampa], [1.27.1], [https://github.com/mate-desktop/engrampa/issues], [engrampa], [https://mate-desktop.org]) +AC_INIT([engrampa], [1.28.0], [https://github.com/mate-desktop/engrampa/issues], [engrampa], [https://mate-desktop.org]) AM_INIT_AUTOMAKE([1.9 foreign dist-xz no-dist-gzip check-news]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) diff --git a/meson.build b/meson.build index 454dd72..1c9c7b1 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('engrampa', 'c', license : 'GPL2+', - version : '1.27.1', + version : '1.28.0', meson_version : '>=0.43' ) |