Skip to content

Commit 87946ab

Browse files
committed
RELEASE: This is version 0.0.6
1 parent d83995d commit 87946ab

File tree

8 files changed

+61
-7
lines changed

8 files changed

+61
-7
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.5)
23+
set(xoreos-tools_VERSION 0.0.6)
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.6)
1+
Monday, 2020-08-03 (Version 0.0.6)
22
- Tools added:
33
- unobb
44
- tws

NEWS.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
Changes in xoreos-tools version 0.0.6
2+
=====================================
3+
4+
This release of the xoreos-tools package features nine new tools:
5+
unobb, untws, rim, keybif, tws, fixnwn2xml, xml2gff, fev2xml and ncsdecomp.
6+
7+
The first two new tools, unobb and untws, are new archive unpackers. unobb
8+
extracts "obb" files found in Aspyr's Android and iOS ports of the BioWare
9+
games, which can be either plain ZIP files or, more interesting, a virtual
10+
filesystem. untws extracts save files from The Witcher.
11+
12+
The next three tools, rim, keybif and tws are archive packers. rim is the
13+
counterpart to unrim, creating RIM archives. keybif is the counterpart to
14+
unkeybif, creating KEY/BIF archives (and lzma-compressed KEY/BZF archives found
15+
in Aspyr's mobile ports). However, V1.1 files for The Witcher are not yet
16+
supported. And lastly, tws, is the counterpart to the new untws tool, creating
17+
save files for The Witcher.
18+
19+
Next up, fixnwn2xml takes the non-standard XML files in NWN2 and turns them into
20+
valid, standards-compliant XML files.
21+
22+
xml2gff is the counterpart to gff2xml, taking an XML file and turning it back
23+
into a GFF. Only GFF3 (GFF V3.2/V3.3) are supported for now, so neither Sonic
24+
nor the Dragon Age games (which use GFF V4.0/V4.1) are supported at the moment.
25+
26+
Another work-in-progress tool is fev2xml, which reads the FMOD event file format
27+
FEV and creates a human-readable XML file. Only the FEV1 version is supported
28+
and only a fraction of its features at that.
29+
30+
Likewise, ncsdecomp is the start of an NWScript bytecode compiler, built on the
31+
foundations of our NWScript bytecode disassembler. It's highly experimental and
32+
we give no guarantees that it works correctly at all.
33+
34+
In addition to these new tools, there are some new minor features and bugfixes:
35+
- unerf can now extract ERF V2.1
36+
- erf can now create ERF V2.0 and V2.2
37+
- xoreostex2tga now supports animated TPCs and swizzled Xbox SBMs
38+
- gff2xml now supports SAC files and big-endian GFF4s
39+
- tlk2xml now supports big-endian GFF4s
40+
- The character encoding matrix for Jade Empire is now correct
41+
42+
In an attempt to modernize a bit, xoreos-tools now requires a C++11-capable
43+
compiler. This should hopefully not be a huge problem.
44+
45+
146
Changes in xoreos-tools version 0.0.5
247
=====================================
348

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.5],[xoreos-devel@xoreos.org],[xoreos-tools],[https://xoreos.org/])
22+
AC_INIT([xoreos-tools],[0.0.6],[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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
pkgname=xoreos-tools-git
44
_gitname=xoreos-tools
5-
pkgver=0.0.5.r0.g06f686c
6-
pkgrel=2
5+
pkgver=0.0.6.r0.g06f686c
6+
pkgrel=1
77
pkgdesc="Tools to help with xoreos development"
88
arch=('i686' 'x86_64')
99
url="https://xoreos.org/"

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.6-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
-- Sven Hesse <drmccoy@drmccoy.de> Mon, 03 Aug 2020 00:00:00 +0200
6+
17
xoreos-tools (0.0.5-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.5
9+
Version: 0.0.6
1010

1111
# This is a bit ugly but it works.
1212
%if "%{snapshot}" == "0"
@@ -67,6 +67,9 @@ rm %{buildroot}%{_pkgdocdir}/*
6767
%license COPYING
6868

6969
%changelog
70+
* Mon Aug 03 2020 Sven Hesse <drmccoy@drmccoy.de> 0.0.6-1
71+
- New upstream release.
72+
7073
* Tue Jul 03 2018 Sven Hesse <drmccoy@drmccoy.de> 0.0.5-1
7174
- New upstream release.
7275

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.5"
40+
#define PACKAGE_VERSION "0.0.6"
4141
#endif
4242

4343
#ifndef XOREOS_REVDESC

0 commit comments

Comments
 (0)