Skip to content

Commit

Permalink
Merge pull request #25 from glpi-project/release/1.3.1
Browse files Browse the repository at this point in the history
New 1.3.1 version
  • Loading branch information
redddcyclone authored Jun 11, 2024
2 parents c5877fe + 417f943 commit de33dd2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
14 changes: 11 additions & 3 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Revision history for GLPI Agent Monitor

1.3.1

* Handle empty value for the NewTicket-URL setting


1.3.0

* Better error message handling
Expand All @@ -10,20 +15,21 @@ Revision history for GLPI Agent Monitor
* Settings dialog added
Currently, the only setting available is "New ticket page URL", for
changing the URL used to create new tickets (i.e. when using Form Creator)

* Main window now handles Tab and Esc key pressing
This is a helpful feature for keyboard-only navigation

* Changed agent status querying to asynchronous
The WinHttp calls made to query the agent status were changed to asynchronous.
This fixes the lagging that can happen sometimes on the Monitor's main window,
especially when opening it for the first time.

* Bugfix: Don't keep service manager handle and Agent service handle open
all the time
This solves a problem that happens when the Monitor is running and GLPI Agent
uninstaller is executed under the Local System account.


1.2.3

* Russian translation added
Expand All @@ -36,10 +42,12 @@ Revision history for GLPI Agent Monitor
This removes quotes from the server URL setting, even though the server URL
should not have any quotes at all.


1.2.2

* Build: Don't sign generated code with an expired code-signing certificate


1.2.1

* Bugfix: Fixed a bug which causes the monitor to display the
Expand Down
8 changes: 4 additions & 4 deletions GLPI-AgentMonitor.rc2
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ VS_VERSION_INFO VERSIONINFO
FILEVERSION VI_VERSIONDEF
PRODUCTVERSION VI_VERSIONDEF
#else
FILEVERSION 1,3,0,0
PRODUCTVERSION 1,3,0,0
FILEVERSION 1,3,1,0
PRODUCTVERSION 1,3,1,0
#endif
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -37,7 +37,7 @@ BEGIN
#ifdef VI_VERSIONSTRING
VALUE "FileVersion", VI_VERSIONSTRING
#else
VALUE "FileVersion", "1.3.0.0"
VALUE "FileVersion", "1.3.1.0"
#endif
#ifdef VI_FILENAME
VALUE "InternalName", VI_FILENAME
Expand All @@ -54,7 +54,7 @@ BEGIN
#ifdef VI_VERSIONSTRING
VALUE "ProductVersion", VI_VERSIONSTRING
#else
VALUE "ProductVersion", "1.3.0.0"
VALUE "ProductVersion", "1.3.1.0"
#endif
END
END
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// File overridden during GH Actions workflow run
#define VI_FILENAME "GLPI-AgentMonitor.exe"
#define VI_VERSIONDEF 1,3,0,0
#define VI_VERSIONSTRING "1.3.0.0"
#define VI_VERSIONDEF 1,3,1,0
#define VI_VERSIONSTRING "1.3.1.0"
#define VI_PRODUCTNAME "GLPI Agent Monitor"

0 comments on commit de33dd2

Please sign in to comment.