Skip to content

Commit

Permalink
v1.4.2 - fix regression bug for console2 width
Browse files Browse the repository at this point in the history
  • Loading branch information
joedf committed Mar 1, 2016
1 parent 1b98a37 commit c46354f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Qonsole.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

;####################################################
AppName:="Qonsole"
Version:="1.4.1"
Version:="1.4.2"
App_date:="2016/03/01"
Update_URL:="http://qonsole-ahk.sourceforge.net/update.ini"
Project_URL:="http://qonsole-ahk.sourceforge.net"
Expand Down Expand Up @@ -299,8 +299,8 @@ showC:
;doesnt work ;WinSet, Transparent, % (abs(100-TransparencyPercent)/100)*255 , %con%
Winset, AlwaysOnTop, On, %con%
cmd_height__:=(-xC_height)
WinMove,ahk_pid %cPID%,,,%cmd_height__%,%xC_height%,%cmd_height%
WinMove,%con%,,,%cmd_height__%,%xC_height%,%cmd_height%
WinMove,ahk_pid %cPID%,,,%cmd_height__%,%cmd_width%,%xC_height%
WinMove,%con%,,,%cmd_height__%,%cmd_width%,%xC_height%
WinGetPos,,,cw_w,ch,%con%
WinGet,hc,ID,%con%
con=ahk_id %hc%
Expand Down
2 changes: 1 addition & 1 deletion update.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[Update]
Version=1.4.1
Version=1.4.2
URL=https://github.com/joedf/Qonsole/releases/latest
8 changes: 4 additions & 4 deletions version_info.rc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 1,4,1,0
PRODUCTVERSION 1,4,1,0
FILEVERSION 1,4,2,0
PRODUCTVERSION 1,4,2,0
FILEOS 0x4
FILETYPE 0x1
{
Expand All @@ -9,12 +9,12 @@ BLOCK "StringFileInfo"
BLOCK "040904B0"
{
VALUE "FileDescription", "Qonsole - Quake-like Console Emulator"
VALUE "FileVersion", "1.4.1"
VALUE "FileVersion", "1.4.2"
VALUE "InternalName", "Qonsole"
VALUE "LegalCopyright", "(C) 2016, joedf@ahkscript.org"
VALUE "OriginalFilename", "Qonsole.exe"
VALUE "ProductName", "Qonsole"
VALUE "ProductVersion", "1.4.1"
VALUE "ProductVersion", "1.4.2"
}
}

Expand Down

0 comments on commit c46354f

Please sign in to comment.