Changeset - 253505c23ffb
[Not reviewed]
2.0.8
0 2 0
Vitaly Takmazov - 7 years ago 2018-09-17 09:46:40
vitalyster@gmail.com
Version 2.0.8 ChangeLog
2 files changed with 15 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.7)
 
		set(SPECTRUM_VERSION 2.0.8)
 
		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.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.
 
	XMPP frontend:
 
	* Forward own messages as XEP-280 Carbons. Requires XEP-0356 capable server
0 comments (0 inline, 0 general)