Skip to content

Commit d95ea8b

Browse files
committed
Minor updates.
Signed-off-by: elModo7 <elmodo7yt@gmail.com>
1 parent e810b57 commit d95ea8b

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

LibreDeck Client.ahk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
; OS Version ...: Windows 10+ (Previous versions tested working on Win7)
1+
; OS Version ...: > Windows 10
22
; Requires AutoHotkeyU32
33
;@Ahk2Exe-SetName LibreDeck Client
4-
;@Ahk2Exe-SetDescription LibreDeck for TouchScreen and Remote Control
5-
;@Ahk2Exe-SetVersion 3.8.7
6-
;@Ahk2Exe-SetCopyright Copyright (c) 2025`, elModo7 - VictorDevLog
4+
;@Ahk2Exe-SetDescription Macro Panel Client
5+
;@Ahk2Exe-SetVersion 3.8.8
6+
;@Ahk2Exe-SetCopyright 2026`, elModo7 - VictorDevLog
77
;@Ahk2Exe-SetOrigFilename LibreDeck Client.exe
88
; INITIALIZE
99
; *******************************
@@ -51,7 +51,7 @@ SetBatchLines, -1
5151
#Include <talk>
5252
#Include <plugin_system>
5353
rutaSplash = ./resources/img/splash.png
54-
global ClientVersionNumber := "3.8.7"
54+
global ClientVersionNumber := "3.8.8"
5555
global ClientVersion := ClientVersionNumber " - elModo7 / VictorDevLog " A_YYYY
5656
SplashScreen(rutaSplash, 3000, 545, 160, 0, 0, true)
5757
global EsVisible = true

LibreDeck Client.exe

0 Bytes
Binary file not shown.

LibreDeck Server.ahk

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
; OS Version ...: Windows 10 (Should work with Win7, maybe WinXP)
2-
;@Ahk2Exe-SetName LibreDeck Client Online
3-
;@Ahk2Exe-SetDescription LibreDeck Server for remote control
4-
;@Ahk2Exe-SetVersion 0.4.4
5-
;@Ahk2Exe-SetCopyright Copyright (c) 2025`, elModo7
1+
; OS Version ...: > Windows 10
2+
; Requires AutoHotkeyU32
3+
;@Ahk2Exe-SetName LibreDeck Server
4+
;@Ahk2Exe-SetDescription Macro Panel Server
5+
;@Ahk2Exe-SetVersion 0.4.6
6+
;@Ahk2Exe-SetCopyright 2026`, elModo7
67
;@Ahk2Exe-SetOrigFilename LibreDeck Server.exe
78
; INITIALIZE
89
; *******************************
910
#SingleInstance,Force
1011
SetBatchLines, -1
1112
#NoEnv
1213
#Persistent
13-
global versionNumber := "0.4.4"
14+
global versionNumber := "0.4.6"
1415
global clientVersion := versionNumber " - elModo7 / VictorDevLog " A_YYYY
1516
#Include <Socket>
1617
#Include <JSON>
@@ -40,6 +41,7 @@ contextcolor() ; Dark Theme
4041
; TRAY MENU
4142
; *******************************
4243
Menu, tray, NoStandard
44+
Menu, tray, tip, % "LibreDeck Server v" versionNumber "`n`nPorts:`nsever: " conf.port "`nresources: " conf.resourceSharePort
4345
Menu, tray, Add, Run LibreDeck client, runClient
4446
Menu tray, Icon, Run LibreDeck client, .\resources\img\ico\libredeck.ico
4547
Menu, tray, Add, Use built-in AHK, toggleBuiltInAhk
@@ -160,6 +162,7 @@ return
160162

161163
restart:
162164
Reload
165+
return
163166

164167
FileMD5(filename)
165168
{

LibreDeck Server.exe

0 Bytes
Binary file not shown.

lib/compress_and_md5.ahk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ ExitApp
3131
{
3232
ToolTip, % "Compressing..."
3333
RunWait, % A_WorkingDir "\lib\7za.exe a """ A_WorkingDir "\resources\shared\resourcePack.7z"" -m0=LZMA2 -mx=9 -mmt=on -aoa -mfb=64 """ A_WorkingDir "\resources\img\*.png""",, Hide
34+
RunWait, % A_WorkingDir "\lib\7za.exe a """ A_WorkingDir "\resources\shared\resourcePack.zip"" -tzip -mx=9 -mmt=on -aoa """ A_WorkingDir "\resources\img\*.png""",, Hide
3435
FileRead, conf, ./conf/server_config.json
3536
global conf := ParseJson(conf)
3637
conf.folderButtons := client_conf.folderButtons

0 commit comments

Comments
 (0)