Skip to content

Commit 7ea714f

Browse files
committed
Release 2.4.8
2 parents fa30a72 + 071ebba commit 7ea714f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

agent/agent_windows.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ func (a *Agent) RunScript(code string, shell string, args []string, timeout int,
143143
switch shell {
144144
case "powershell":
145145
exe = getPowershellExe()
146-
cmdArgs = []string{"-NonInteractive", "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", tmpfn.Name()}
146+
cmdArgs = []string{"-NonInteractive", "-NoProfile", "-ExecutionPolicy", "Bypass", tmpfn.Name()}
147147
case "python":
148148
exe = a.PyBin
149149
cmdArgs = []string{tmpfn.Name()}

build/rmm.exe.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<assemblyIdentity
44
type="win32"
55
name="TacticalRMM"
6-
version="2.4.7.0"
6+
version="2.4.8.0"
77
processorArchitecture="*"/>
88
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
99
<security>

build/setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define MyAppName "Tactical RMM Agent"
2-
#define MyAppVersion "2.4.7"
2+
#define MyAppVersion "2.4.8"
33
#define MyAppPublisher "AmidaWare LLC"
44
#define MyAppURL "https://github.com/amidaware"
55
#define MyAppExeName "tacticalrmm.exe"

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
)
2626

2727
var (
28-
version = "2.4.7"
28+
version = "2.4.8"
2929
log = logrus.New()
3030
logFile *os.File
3131
)

versioninfo.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"FileVersion": {
44
"Major": 2,
55
"Minor": 4,
6-
"Patch": 7,
6+
"Patch": 8,
77
"Build": 0
88
},
99
"ProductVersion": {
1010
"Major": 2,
1111
"Minor": 4,
12-
"Patch": 7,
12+
"Patch": 8,
1313
"Build": 0
1414
},
1515
"FileFlagsMask": "3f",
@@ -22,14 +22,14 @@
2222
"Comments": "",
2323
"CompanyName": "AmidaWare LLC",
2424
"FileDescription": "Tactical RMM Agent",
25-
"FileVersion": "v2.4.7.0",
25+
"FileVersion": "v2.4.8.0",
2626
"InternalName": "tacticalrmm.exe",
2727
"LegalCopyright": "Copyright (c) 2023 AmidaWare LLC",
2828
"LegalTrademarks": "",
2929
"OriginalFilename": "tacticalrmm.exe",
3030
"PrivateBuild": "",
3131
"ProductName": "Tactical RMM Agent",
32-
"ProductVersion": "v2.4.7.0",
32+
"ProductVersion": "v2.4.8.0",
3333
"SpecialBuild": ""
3434
},
3535
"VarFileInfo": {

0 commit comments

Comments
 (0)