Skip to content

Commit aed64a2

Browse files
committed
RELEASE: This is version 0.0.5
1 parent d8a4112 commit aed64a2

File tree

8 files changed

+36
-6
lines changed

8 files changed

+36
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
cmake_minimum_required(VERSION 2.8.12)
2121

2222
project(xoreos-tools CXX)
23-
set(xoreos-tools_VERSION 0.0.4)
23+
set(xoreos-tools_VERSION 0.0.5)
2424

2525

2626
# -------------------------------------------------------------------------

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Someday, ????-??-?? (Version 0.0.5)
1+
Tuesday, 2018-07-03 (Version 0.0.5)
22
- Tools added:
33
- ssf2xml
44
- xml2ssf

NEWS.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
Changes in xoreos-tools version 0.0.5
2+
=====================================
3+
4+
This release of the xoreos-tool package features three new tools:
5+
ssf2xml, xml2ssf and erf.
6+
7+
The first toool, ssf2xml, takes a sound set file as used in the two Neverwinter
8+
Nights and the two Knights of the Old Republic games and converts it into a
9+
user-readable XML file. That file can then be edited and, with the help of the
10+
second new tool, xml2ssf, converted back into a game-readable SSF file.
11+
12+
The third new tool is a packer for the ERF archive format. It is the counterpart
13+
of the already existing unerf tool, which extracts ERF archives. However, unlike
14+
the unerf tool, the erf tool can only create ERF archives of the version 1.0,
15+
as used by Neverwinter Nights, Knights of the Old Republic I and II, Jade Empire
16+
and The Witcher. Later versions of the format are not yet supported.
17+
18+
Apart from that, this release of course also includes a ton of user-invisible
19+
code quality and documentation fixes.
20+
21+
122
Changes in xoreos-tools version 0.0.4
223
=====================================
324

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dnl along with xoreos-tools. If not, see <http://www.gnu.org/licenses/>.
1919

2020
AC_PREREQ([2.65])
2121

22-
AC_INIT([xoreos-tools],[0.0.4],[xoreos-devel@xoreos.org],[xoreos-tools],[https://xoreos.org/])
22+
AC_INIT([xoreos-tools],[0.0.5],[xoreos-devel@xoreos.org],[xoreos-tools],[https://xoreos.org/])
2323

2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_SRCDIR([config.h.in])

dists/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pkgname=xoreos-tools-git
44
_gitname=xoreos-tools
5-
pkgver=0.0.4.r0.g06f686c
5+
pkgver=0.0.5.r0.g06f686c
66
pkgrel=1
77
pkgdesc="Tools to help with xoreos development"
88
arch=('i686' 'x86_64')

dists/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
xoreos-tools (0.0.5-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
-- Sven Hesse <drmccoy@drmccoy.de> Tue, 03 Jul 2018 00:00:00 +0200
6+
17
xoreos-tools (0.0.4-1) unstable; urgency=low
28

39
* New upstream release

dists/fedora/xoreos-tools.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
%global snapshot 0
77

88
Name: xoreos-tools
9-
Version: 0.0.4
9+
Version: 0.0.5
1010

1111
# This is a bit ugly but it works.
1212
%if "%{snapshot}" == "0"
@@ -130,5 +130,8 @@ rm %{buildroot}%{_pkgdocdir}/*
130130
%license COPYING
131131

132132
%changelog
133+
* Tue Jul 03 2018 Sven Hesse <drmccoy@drmccoy.de> 0.0.5-1
134+
- New upstream release.
135+
133136
* Mon Feb 15 2016 Ben Rosser <rosser.bjr@gmail.com> 0.0.4-1
134137
- Initial package.

src/version/version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#endif
3838

3939
#ifndef PACKAGE_VERSION
40-
#define PACKAGE_VERSION "0.0.4"
40+
#define PACKAGE_VERSION "0.0.5"
4141
#endif
4242

4343
#ifndef XOREOS_REVDESC

0 commit comments

Comments
 (0)