Upped version to 0.1.9.
This commit is contained in:
parent
c951ab5cb9
commit
83fde3e480
|
@ -2,6 +2,7 @@
|
||||||
* CHANGELOG.
|
* CHANGELOG.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
07232003 - Upped version to 0.1.9.
|
||||||
07202003 - Switched to zlib license (see new LICENSE text in root of source
|
07202003 - Switched to zlib license (see new LICENSE text in root of source
|
||||||
tree, and zlib_license_switch.txt for details). Had to remove
|
tree, and zlib_license_switch.txt for details). Had to remove
|
||||||
archivers/qpak.c, the Ruby bindings from the extras directory, and
|
archivers/qpak.c, the Ruby bindings from the extras directory, and
|
||||||
|
|
2
Doxyfile
2
Doxyfile
|
@ -23,7 +23,7 @@ PROJECT_NAME = physfs
|
||||||
# This could be handy for archiving the generated documentation or
|
# This could be handy for archiving the generated documentation or
|
||||||
# if some version control system is used.
|
# if some version control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 0.1.8
|
PROJECT_NUMBER = 0.1.9
|
||||||
|
|
||||||
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
|
||||||
# base path where the generated documentation will be put.
|
# base path where the generated documentation will be put.
|
||||||
|
|
|
@ -2,7 +2,7 @@ This is an unofficial OS X Project Builder environment to build a physfs Framewo
|
||||||
|
|
||||||
|
|
||||||
Built with:
|
Built with:
|
||||||
physfs 0.1.8
|
physfs 0.1.9
|
||||||
Project Builder 2.0.1
|
Project Builder 2.0.1
|
||||||
OS X (10.2 Jaguar)
|
OS X (10.2 Jaguar)
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Title PhysFS 0.1.8
|
Title PhysFS 0.1.9
|
||||||
Version 1
|
Version 1
|
||||||
Description PhysFS Library for Mac OS X (http://www.icculus.org/physfs/)
|
Description PhysFS Library for Mac OS X (http://www.icculus.org/physfs/)
|
||||||
DefaultLocation /Library/Frameworks
|
DefaultLocation /Library/Frameworks
|
||||||
|
|
|
@ -15,7 +15,7 @@ dnl ---------------------------------------------------------------------
|
||||||
|
|
||||||
MAJOR_VERSION=0
|
MAJOR_VERSION=0
|
||||||
MINOR_VERSION=1
|
MINOR_VERSION=1
|
||||||
MICRO_VERSION=8
|
MICRO_VERSION=9
|
||||||
INTERFACE_AGE=0
|
INTERFACE_AGE=0
|
||||||
BINARY_AGE=0
|
BINARY_AGE=0
|
||||||
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
|
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
|
||||||
|
|
|
@ -22,7 +22,7 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# shared library versions, option 1
|
# shared library versions, option 1
|
||||||
version=0.1.8
|
version=0.1.9
|
||||||
major=0
|
major=0
|
||||||
# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
|
# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
|
||||||
#version=`ls src/.libs/lib*.so.* | \
|
#version=`ls src/.libs/lib*.so.* | \
|
||||||
|
|
2
physfs.h
2
physfs.h
|
@ -318,7 +318,7 @@ typedef struct
|
||||||
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
|
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
|
||||||
#define PHYSFS_VER_MAJOR 0
|
#define PHYSFS_VER_MAJOR 0
|
||||||
#define PHYSFS_VER_MINOR 1
|
#define PHYSFS_VER_MINOR 1
|
||||||
#define PHYSFS_VER_PATCH 8
|
#define PHYSFS_VER_PATCH 9
|
||||||
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
|
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
#define TEST_VERSION_MAJOR 0
|
#define TEST_VERSION_MAJOR 0
|
||||||
#define TEST_VERSION_MINOR 1
|
#define TEST_VERSION_MINOR 1
|
||||||
#define TEST_VERSION_PATCH 8
|
#define TEST_VERSION_PATCH 9
|
||||||
|
|
||||||
static FILE *history_file = NULL;
|
static FILE *history_file = NULL;
|
||||||
static PHYSFS_uint32 do_buffer_size = 0;
|
static PHYSFS_uint32 do_buffer_size = 0;
|
||||||
|
|
Loading…
Reference in New Issue