Changeset - 92647102ee4c
[Not reviewed]
2.0.2
0 2 0
Jan Kaluza - 10 years ago 2016-02-09 09:00:58
jkaluza@redhat.com
Preparation for 2.0.2
2 files changed with 7 insertions and 3 deletions:
0 comments (0 inline, 0 general)
CMakeLists.txt
Show inline comments
 
@@ -250,28 +250,28 @@ 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.1-git-${GIT_REVISION})
 
		set(SPECTRUM_VERSION 2.0.2-git-${GIT_REVISION})
 
		ADD_DEFINITIONS(-DSPECTRUM_VERSION="${SPECTRUM_VERSION}")
 
	else (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git)
 
		set(SPECTRUM_VERSION 2.0.1)
 
		set(SPECTRUM_VERSION 2.0.2)
 
		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.2 (2016-02-xx):
 
Version 2.0.2 (2016-02-09):
 
	General:
 
	* Fix joining the room when using JID Escaping even for '@' character.
 
	* Fix Raw XML mode - fixes the Swiften backend.
 
	* Allow backends to set avatars to buddies in room - currently no backend
 
	  uses it.
 
	* Set the room list per frontend user - this fixes possible information
 
	  for networks like Skype or Facebook where the room list is not global
 
	  per network.
 
	* Support usage of aliases in the rooms, so backends can use the
 
	  network-based UID for the buddies in the room while still setting
 
	  user-friendly aliases to them.
 
	* Fix leaving the room when user is connected to transport using two
 
	  clients, but only one of them joined the room and that one disconnects
 
	  the transport without leaving the room (For example when he just
 
	  quits the client).
 

	
 
	XMPP frontend:
 
	* Handle the XMPP VCard changes - updating avatar should work now for
 
	  backends supporting it.
 

	
 
	Slack frontend:
 
	* Slack frontend is now completely managed by the web interface, old
 
	  way of managing (".spectrum2 ..." commands sent to Spectrum 2 bot)
 
	  are not supported.
 
	* Slack channels are now created automatically on Slack when you join them
 
	  using web-interface. The same applies also to the Main channel.
 
	* Logging has been improved to show the name of Slack team for each log
0 comments (0 inline, 0 general)