[sword-svn] r3824 - in trunk: . include
scribe at crosswire.org
scribe at crosswire.org
Wed Nov 4 19:00:22 EST 2020
Author: scribe
Date: 2020-11-04 19:00:22 -0500 (Wed, 04 Nov 2020)
New Revision: 3824
Modified:
trunk/CMakeLists.txt
trunk/ChangeLog
trunk/configure.ac
trunk/include/swversion.h
Log:
Release 1.9.0
Modified: trunk/CMakeLists.txt
===================================================================
--- trunk/CMakeLists.txt 2020-11-03 23:20:40 UTC (rev 3823)
+++ trunk/CMakeLists.txt 2020-11-05 00:00:22 UTC (rev 3824)
@@ -13,7 +13,7 @@
# not, then this file is released under the GPLv2 by myself.
PROJECT(libsword CXX C)
CMAKE_MINIMUM_REQUIRED(VERSION 2.6.0)
-SET(SWORD_VERSION 1.8.900)
+SET(SWORD_VERSION 1.9.0)
# Make sure it's an out-of-stream build
IF(${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2020-11-03 23:20:40 UTC (rev 3823)
+++ trunk/ChangeLog 2020-11-05 00:00:22 UTC (rev 3824)
@@ -1,5 +1,33 @@
API ChangeLog
+* Release 1.9.0 *
+03-Nov-2020 Troy A. Griffitts <scribe at crosswire.org>
+ Added new compile option USECXX11TIME which will provide a default
+ SWLog::logTimedInformation impl using C++11 facilities
+ Added new compile options STRIPLOGD and STRIPLOGI which will compile
+ out engine calles to SWLog::logDebug and SWLog::logInformation
+ and SWLog::logTimedInformation for runtime optimization
+ Extended Cordova plugin to include SWModule::setEntry,
+ SWMgr::getPrefixPath
+ Isolated all File IO calls to FileMgr
+ Merged in Xiphos' Windows patch to FileMgr to allow full legal Unicode
+ range in file path names.
+ Improved TEI -> HTML output path
+ Completed camelCase of all public non-deprecated API methods
+ Added the concept of Utility Modules to engine which are intended to
+ assist clients in building a robust user experience but are not
+ intended for exposure to the end user in the same way as
+ traditional SWORD modules.
+ Added the concept of [Pref Abbrevs] to locale files to assist mobile
+ developers choose a localized abbreviation for Bible book
+ names.
+ Added facility to set timeouts for SWTransport classes
+ Many locale updates
+
+25-Jul-2020 Troy A. Griffitts <scribe at crosswire.org>
+ Added ZipCompress::unTarGZ to provide a library facility to untargz
+ a file on all supported platforms.
+
07-Jul-2020 Troy A. Griffitts <scribe at crosswire.org>
Renamed __[su][8,16,32,64] defines to SW_[su][8,16,32,64]
@@ -13,6 +41,7 @@
21-May-2017 Troy A. Griffitts <scribe at crosswire.org>
Added --with-icuregex option to use ICU regex engine
+* Release 1.8.0 *
24-Apr-2017 Troy A. Griffitts <scribe at crosswire.org>
Branching 1.8.x
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2020-11-03 23:20:40 UTC (rev 3823)
+++ trunk/configure.ac 2020-11-05 00:00:22 UTC (rev 3824)
@@ -6,7 +6,7 @@
# Change it immediately after a release
define([svnversion], esyscmd([sh -c "svnversion -n"]))dnl
-AC_INIT(sword, 1.8.903.svnversion, sword-bugs at crosswire.org, sword, http://crosswire.org/sword)
+AC_INIT(sword, 1.9.0.svnversion, sword-bugs at crosswire.org, sword, http://crosswire.org/sword)
AC_CONFIG_SRCDIR(sword.bmp)
AC_PREREQ(2.52)
AC_REVISION($Revision: 1.45 $)
Modified: trunk/include/swversion.h
===================================================================
--- trunk/include/swversion.h 2020-11-03 23:20:40 UTC (rev 3823)
+++ trunk/include/swversion.h 2020-11-05 00:00:22 UTC (rev 3824)
@@ -24,12 +24,12 @@
#ifndef SWVERSION_H
#define SWVERSION_H
-#define SWORD_VERSION_NUM 1089033821
-#define SWORD_VERSION_STR "1.8.903.3821M"
+#define SWORD_VERSION_NUM 1090003823
+#define SWORD_VERSION_STR "1.9.0.3823M"
#define SWORD_VERSION_MAJOR 1
-#define SWORD_VERSION_MINOR 8
-#define SWORD_VERSION_MICRO 903
-#define SWORD_VERSION_NANO 3821
+#define SWORD_VERSION_MINOR 9
+#define SWORD_VERSION_MICRO 0
+#define SWORD_VERSION_NANO 3823
#include <defs.h>
SWORD_NAMESPACE_START
More information about the sword-cvs
mailing list