Skip to content

Commit

Permalink
release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed Dec 26, 2023
1 parent aa239a6 commit 5a16d33
Show file tree
Hide file tree
Showing 17 changed files with 30 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Build variables
#
RELVER = 1.1.1
RELVER = 1.2.0
DEBVER = 1
PKGNAME = allmon3

Expand Down
14 changes: 14 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
allmon3 (1.2.0-1) unstable; urgency=medium

* Fix missing await in ws_voter keepalive (fix #191)
* Fix reloading user database when called in USR1 handler (fix #192)
* Only enable Apache2 modules in postinst when apache2 is installed (fix #195)
* Re-add missing python3-websockets dependency in debian/control (fix #196)
* Fix default CSS custom variables to match core code (fix #197)
* Fix and enforce correct mode and owner on password-containing files (fix #201)
* Fix `allmon3-passwd` from overwriting elements out of order in `users` (fix #204)
* Clear"Login Failure" message on next success (fix #205)
* `custom.css` supports customizing the Node Transmit Line (fix #208)

-- Jason McCormick <jason@mfamily.org> Tue, 26 Dec 2023 11:28:53 -0500

allmon3 (1.1.1-1) unstable; urgency=medium

* Fix missing await in ws_voter keepalive (fix #191)
Expand Down
2 changes: 1 addition & 1 deletion src/allmon3
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import sys
from asl_allmon import allmon3_server, allmon3_ws_status, allmon3_ws_cmd, allmon3_ws_voter
from asl_allmon import node_configs, node_db, security, web_configs

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"


# Handle Signals
Expand Down
2 changes: 1 addition & 1 deletion src/allmon3-passwd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import csv
import logging
import sys

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"

def get_user_index(lst, k, v):
for i, dic in enumerate(lst):
Expand Down
2 changes: 1 addition & 1 deletion src/allmon3.1.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
% allmon3(1) allmon3 @@HEAD-DEVELOP@@
% allmon3(1) allmon3 1.2.0
% Jason McCormick
% May 2023

Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/allmon3_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import websockets
from .. import node_configs, security, web_configs

__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class ServerWS:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/allmon3_ws_cmd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from websockets import exceptions as ws_exceptions
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster

__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class NodeCmdWS:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/allmon3_ws_status/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster


__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class NodeStatusWS:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/allmon3_ws_voter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from websockets import exceptions as ws_exceptions
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster

__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class NodeVoterWS:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/ami_conn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import socket
import uuid

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class AMI:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/ami_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import logging
import re

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

## Command Execution Portions
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/node_configs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import pprint
import re

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class NodeConfigs:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/node_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import urllib.request
from .. import node_configs

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class ASLNodeDB:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/security/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import time
import argon2

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class Security:
Expand Down
2 changes: 1 addition & 1 deletion src/asl_allmon/web_configs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "1.2.0"
log = logging.getLogger(__name__)

class WebConfigs:
Expand Down
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
<div class="text-center text-wrap">
<img src="img/asl-sidebar-logo.png"><br>
<b>Allmon v3</b><br>
<span style="color:red">@@HEAD-DEVELOP@@</span>
<span style="color:red">1.2.0</span>
</div>
</div>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion web/voter.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
<div class="text-center text-wrap">
<img src="img/asl-sidebar-logo.png"><br>
<b>Allmon v3</b><br>
<span style="color:red">@@HEAD-DEVELOP@@</span>
<span style="color:red">1.2.0</span>
</div>
</div>
</nav>
Expand Down

0 comments on commit 5a16d33

Please sign in to comment.