Changeset - 782a505cf1a1
[Not reviewed]
2.0.9
0 2 0
Vitaly Takmazov - 7 years ago 2018-09-21 23:03:40
vitalyster@gmail.com
2.0.9 ChangeLog
2 files changed with 5 insertions and 1 deletions:
0 comments (0 inline, 0 general)
CMakeLists.txt
Show inline comments
 
@@ -216,49 +216,49 @@ if(ENABLE_TESTS)
 
	if(NOT CPPUNIT_FOUND AND CPPUNIT_INCLUDE_DIR AND CPPUNIT_LIBRARY)
 
		set(CCPUNIT_LIBRARIES ${CPPUNIT_LIBRARY})
 
		set(CPPUNIT_FOUND 1)
 
		message(STATUS "Using cppunit: ${CPPUNIT_INCLUDE_DIR} ${CPPUNIT_LIBRARIES}")
 
	endif()
 
endif()
 

	
 
message("  Supported features")
 
message("-----------------------")
 

	
 
if (SPECTRUM_VERSION)
 
	ADD_DEFINITIONS(-DSPECTRUM_VERSION="${SPECTRUM_VERSION}")
 
else (SPECTRUM_VERSION)
 
	if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
 
		if (NOT GIT_EXECUTABLE)
 
		set (GIT_EXECUTABLE git)
 
		endif()
 
		execute_process(COMMAND ${GIT_EXECUTABLE} "--git-dir=${CMAKE_CURRENT_SOURCE_DIR}/.git" rev-parse --short HEAD
 
						OUTPUT_VARIABLE GIT_REVISION
 
						OUTPUT_STRIP_TRAILING_WHITESPACE
 
		)
 
		set(SPECTRUM_VERSION 2.0.x-git-${GIT_REVISION})
 
		ADD_DEFINITIONS(-DSPECTRUM_VERSION="${SPECTRUM_VERSION}")
 
	else (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
 
		set(SPECTRUM_VERSION 2.0.8)
 
		set(SPECTRUM_VERSION 2.0.9)
 
		ADD_DEFINITIONS(-DSPECTRUM_VERSION="${SPECTRUM_VERSION}")
 
	endif (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
 
endif (SPECTRUM_VERSION)
 

	
 
message("Version           : " ${SPECTRUM_VERSION})
 

	
 
if (SQLITE3_FOUND)
 
	ADD_DEFINITIONS(-DWITH_SQLITE)
 
if (WIN32)
 
	include_directories("${CMAKE_SOURCE_DIR}/msvc-deps/sqlite3")
 
	message("SQLite3           : bundled")
 
else (WIN32)
 
	include_directories(${SQLITE3_INCLUDE_DIR})
 
	message("SQLite3           : yes")
 
endif (WIN32)
 
else (SQLITE3_FOUND)
 
	set(SQLITE3_LIBRARIES "")
 
	if(ENABLE_SQLITE3)
 
		message("SQLite3           : no (install sqlite3)")
 
	else(ENABLE_SQLITE3)
 
		message("SQLite3           : no (user disabled)")
 
	endif()
 
endif (SQLITE3_FOUND)
 

	
ChangeLog
Show inline comments
 
Version 2.0.9 (2018-09-22):
 
	General:
 
	* Finally fix MySQL storage backend issues
 

	
 
Version 2.0.8 (2018-09-17):
 
	General:
 
	* Fix some MySQL storage backend issues
 
	* Appveyor build integration
 
	Libpurple backend:
 
	* Fix Steam Guard compatibility in Steam Mobile plugin
 
	* Fix VCard forwarding and room joining issues
 
	Twitter backend:
 
	* 280 characters support
 
	* Support for Direct Messages is disabled until switching to new
 
	Direct Message API
 
	Libcommuni backend:
 
	* split multiline messages into series of PRIVMSG commands
 

	
 
Version 2.0.7 (2018-04-27):
 
	General:
 
	* Fix Web interface and Twitter backend compatibilty with Swiften 4 by switching to C++11-compatible JSON library
 
	* Minor changes in packaging and build environment
 
	XMPP:
 
	* Fix XEP-0085 compatibility with some clients
 

	
 
Version 2.0.6 (2018-02-07):
 
	General:
 
	* Add support for forwading own messages sent from different legacy network client.
0 comments (0 inline, 0 general)