Skip to content

Commit

Permalink
Release version 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed Jun 17, 2023
1 parent 708fa00 commit 1218d5e
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 19 deletions.
14 changes: 10 additions & 4 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
allmon3 (0.10.2-10t3) UNRELEASED; urgency=medium
allmon3 (0.11.0-1) unstable; urgency=medium

* Correct all debian packaging issues and take over apache
*
* Complete installation by apt/dpkg into a basic working Allmon3
* Implementation of per-node commands in web.ini
* IP binding is now configurable
* menu.ini ordering is now preserved in the web interface
* Fix compatability in asyncio with Python 3.7 for Debian 10 support
* Cleanup of JavaScript code
* Handle additional network-related error conditions for AMI connections

-- Jason McCormick <jason@mfamily.org> Sat, 17 Jun 2023 10:34:55 -0400

-- Jason McCormick <jason@mfamily.org> Sat, 17 Jun 2023 15:57:35 -0400

allmon3 (0.10.2-2) unstable; urgency=medium

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 = "0.11.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 = "0.11.0"

# Args and Log Setup
ap = argparse.ArgumentParser(description="Manage Allmon3 password file")
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 0.11.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 = "0.11.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 @@ -17,7 +17,7 @@
import websockets
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster

__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "0.11.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 @@ -18,7 +18,7 @@
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster


__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "0.11.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 @@ -16,7 +16,7 @@
import websockets
from .. import ami_conn, ami_parser, node_configs, node_db, ws_broadcaster

__BUILD_ID = "@@HEAD-DEVELOP@@"
__BUILD_ID = "0.11.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 @@ -11,7 +11,7 @@
import socket
import uuid

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "0.11.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 @@ -11,7 +11,7 @@
import logging
import re

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "0.11.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 = "0.11.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 @@ -12,7 +12,7 @@
import urllib.request
from .. import node_configs

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "0.11.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 @@ -11,7 +11,7 @@
import time
import argon2

_BUILD_ID = "@@HEAD-DEVELOP@@"
_BUILD_ID = "0.11.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 = "0.11.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">0.11.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">0.11.0</span>
</div>
</div>
</nav>
Expand Down

0 comments on commit 1218d5e

Please sign in to comment.