Skip to content

Commit

Permalink
Release 2.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Aug 14, 2023
2 parents 6302b9f + 0777195 commit 5e70db3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ func New(logger *logrus.Logger, version string) *Agent {
winTempDir := defaultWinTmpDir
winRunAsUserTmpDir := defaultWinTmpDir

hostname, err := os.Hostname()
if err != nil {
hostname = info.Hostname
}

var pybin string
switch runtime.GOARCH {
case "amd64":
Expand Down Expand Up @@ -201,7 +206,7 @@ func New(logger *logrus.Logger, version string) *Agent {
}

return &Agent{
Hostname: info.Hostname,
Hostname: hostname,
BaseURL: ac.BaseURL,
AgentID: ac.AgentID,
ApiURL: ac.APIURL,
Expand Down
2 changes: 1 addition & 1 deletion build/rmm.exe.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<assemblyIdentity
type="win32"
name="TacticalRMM"
version="2.4.10.0"
version="2.4.11.0"
processorArchitecture="*"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
Expand Down
2 changes: 1 addition & 1 deletion build/setup.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "Tactical RMM Agent"
#define MyAppVersion "2.4.10"
#define MyAppVersion "2.4.11"
#define MyAppPublisher "AmidaWare LLC"
#define MyAppURL "https://github.com/amidaware"
#define MyAppExeName "tacticalrmm.exe"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
)

var (
version = "2.4.10"
version = "2.4.11"
log = logrus.New()
logFile *os.File
)
Expand Down
8 changes: 4 additions & 4 deletions versioninfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"FileVersion": {
"Major": 2,
"Minor": 4,
"Patch": 10,
"Patch": 11,
"Build": 0
},
"ProductVersion": {
"Major": 2,
"Minor": 4,
"Patch": 10,
"Patch": 11,
"Build": 0
},
"FileFlagsMask": "3f",
Expand All @@ -22,14 +22,14 @@
"Comments": "",
"CompanyName": "AmidaWare LLC",
"FileDescription": "Tactical RMM Agent",
"FileVersion": "v2.4.10.0",
"FileVersion": "v2.4.11.0",
"InternalName": "tacticalrmm.exe",
"LegalCopyright": "Copyright (c) 2023 AmidaWare LLC",
"LegalTrademarks": "",
"OriginalFilename": "tacticalrmm.exe",
"PrivateBuild": "",
"ProductName": "Tactical RMM Agent",
"ProductVersion": "v2.4.10.0",
"ProductVersion": "v2.4.11.0",
"SpecialBuild": ""
},
"VarFileInfo": {
Expand Down

0 comments on commit 5e70db3

Please sign in to comment.