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
 
@@ -192,97 +192,97 @@ endif()
 
find_package(event)
 

	
 

	
 
####### Miscallanous ######
 

	
 
if(ENABLE_DOCS)
 
	find_package(Doxygen)
 
endif()
 

	
 
# if(ENABLE_LOG)
 
	if(LOG4CXX_INCLUDE_DIR AND LOG4CXX_LIBRARY)
 
		set(LOG4CXX_LIBRARIES ${LOG4CXX_LIBRARY})
 
		set(LOG4CXX_FOUND 1)
 
		message(STATUS "Using log4cxx: ${CPPUNIT_INCLUDE_DIR} ${LOG4CXX_INCLUDE_DIR}")
 
	else()
 
		set(log4cxx_DIR "${CMAKE_SOURCE_DIR}/cmake_modules")
 
		find_package(log4cxx)
 
	endif()
 
# endif()
 

	
 
# FIND CPPUNIT
 
if(ENABLE_TESTS)
 
	find_package(cppunit)
 

	
 
	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.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)
 
	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)
 

	
 
if (MYSQL_FOUND)
 
	ADD_DEFINITIONS(-DWITH_MYSQL)
 
	include_directories(${MYSQL_INCLUDE_DIR})
 
	message("MySQL             : yes")
 
else (MYSQL_FOUND)
 
	set(MYSQL_LIBRARIES "")
 
	if(ENABLE_MYSQL)
 
		message("MySQL             : no (install mysql-devel)")
 
	else(ENABLE_MYSQL)
 
		message("MySQL             : no (user disabled)")
 
	endif()
 
endif (MYSQL_FOUND)
 

	
 
if (PQXX_FOUND)
 
	ADD_DEFINITIONS(-DWITH_PQXX)
 
	include_directories(${PQXX_INCLUDE_DIR})
 
	message("PostgreSQL        : yes")
 
else (PQXX_FOUND)
 
	set(PQXX_LIBRARY "")
 
	set(PQ_LIBRARY "")
 
	if(ENABLE_PQXX)
 
		message("PostgreSQL        : no (install libpqxx-devel)")
 
	else(ENABLE_PQXX)
 
		message("PostgreSQL        : no (user disabled)")
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
 
	  and transport should be configured as privileged entity for outgoing messages.
 
	* Fixed compatibility with XEP-0356: now it can be used to provide remote
 
	  roster management support.
 
	* Forward images using XEP-0066 attachments. May not be compatible with all backends.
 
	Libpurple backend:
 
	* Forward own messages to frontend. Tested with prpl-skypeweb.
 
	* Fixed compatibility with latest prpl-steam-mobile
 
	Minor bugfixes:
 
	* packaging updates and improvements
 
	* better compatibility with newest compilers and libraries
 

	
 
Version 2.0.5 (2017-08-09):
 
	Minor bugfixes:
 
	* fix purple-hangouts login
 
	* fix Debian packages dependencies
 

	
 
Version 2.0.4 (2017-08-03):
 
	General:
 
	* Add support for Swiften 4.0rc2. Swiften 3.x and 2.x are still supported.
 
	* Add support for passwordless libpurple backends (e.g. purple-hangouts).
 
	* Partial support for groupchats with case-sensitive names (e.g. purple-telegram).
 
	* Various small bugfixes, see Git commit descriptions for the full list of changes.
 
	
 
Version 2.0.3 (2016-02-29):
 
	General:
 
	* Swift 3.0rc2 is now minimum Swift 3.x version needed to compile Spectrum2,
 
	  Swith 2.x remains supported.
 
	* Rename user when he tries to connect to room from the second client
 
	  with different nickname than he used with the first client.
 
	* Send self presence as the first presence from the MUC room.
 
	* Send the icon hash to the backend with other buddies information.
 
	* Send unavailable presence as a response to presence for exiting
 
	  the room. Fixes room rejoin in Pidgin.
 
	* Fix memory leak in HTTPRequest - currently used only in Slack frontend.
 

	
 
	Slack frontend:
0 comments (0 inline, 0 general)