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
 
@@ -228,25 +228,25 @@ if (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)
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:
0 comments (0 inline, 0 general)