Update to version 0.6.5
This commit is contained in:
parent
edf17a44ca
commit
117833addc
|
@ -1,7 +1,7 @@
|
||||||
cmake_minimum_required(VERSION 2.6)
|
cmake_minimum_required(VERSION 2.6)
|
||||||
project(otclient)
|
project(otclient)
|
||||||
|
|
||||||
set(VERSION "0.6.4")
|
set(VERSION "0.6.5")
|
||||||
|
|
||||||
option(FRAMEWORK_SOUND "Use SOUND " ON)
|
option(FRAMEWORK_SOUND "Use SOUND " ON)
|
||||||
option(FRAMEWORK_GRAPHICS "Use GRAPHICS " ON)
|
option(FRAMEWORK_GRAPHICS "Use GRAPHICS " ON)
|
||||||
|
|
|
@ -79,6 +79,10 @@ function onConnect(protocol)
|
||||||
post = post .. '&window_height=' .. g_window.getHeight()
|
post = post .. '&window_height=' .. g_window.getHeight()
|
||||||
post = post .. '&player_name=' .. g_game.getCharacterName()
|
post = post .. '&player_name=' .. g_game.getCharacterName()
|
||||||
post = post .. '&world_name=' .. g_game.getWorldName()
|
post = post .. '&world_name=' .. g_game.getWorldName()
|
||||||
|
post = post .. '&otserv_host=' .. G.host
|
||||||
|
post = post .. '&otserv_port=' .. G.port
|
||||||
|
post = post .. '&otserv_protocol=' .. g_game.getProtocolVersion()
|
||||||
|
post = post .. '&otserv_client=' .. g_game.getClientVersion()
|
||||||
post = post .. '&build_version=' .. g_app.getVersion()
|
post = post .. '&build_version=' .. g_app.getVersion()
|
||||||
post = post .. '&build_revision=' .. g_app.getBuildRevision()
|
post = post .. '&build_revision=' .. g_app.getBuildRevision()
|
||||||
post = post .. '&build_commit=' .. g_app.getBuildCommit()
|
post = post .. '&build_commit=' .. g_app.getBuildCommit()
|
||||||
|
|
|
@ -221,7 +221,7 @@ function toggle()
|
||||||
if terminalWindow:isVisible() then
|
if terminalWindow:isVisible() then
|
||||||
hide()
|
hide()
|
||||||
else
|
else
|
||||||
if not firstShow then
|
if not firstShown then
|
||||||
local settings = g_settings.getNode('terminal-window')
|
local settings = g_settings.getNode('terminal-window')
|
||||||
if settings then
|
if settings then
|
||||||
if settings.size then oldSize = size end
|
if settings.size then oldSize = size end
|
||||||
|
|
Loading…
Reference in New Issue