Skip to content

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jxmx committed Aug 5, 2024
1 parent 3189633 commit 27490aa
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
SRCNAME = Allmon3
PKGNAME = allmon3
RELVER = 1.3.1
RELVER = 1.3.2
DEBVER = 1
PKGNAME = allmon3
RELPLAT ?= deb$(shell lsb_release -rs 2> /dev/null)
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
allmon3 (1.3.2-1) stable; urgency=medium

* full support for make install by @jxmx (#239)
* Add cache busting for JS files by @Pross (#236)
* Fix template for Allow/Deny Lists in web.ini by @jxmx (#241)
* custom/ui/menu should return an empty JSON not an HTTP 400 error (#237)

-- Jason McCormick <[email protected]> Mon, 05 Aug 2024 15:02:52 -0400

allmon3 (1.3.1-1) stable; urgency=medium

* Fix regression in generating menu links (#234)
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.3.2"


# 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.3.2"

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.3.2
% 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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
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.3.2"
log = logging.getLogger(__name__)

class WebConfigs:
Expand Down
16 changes: 8 additions & 8 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<title>Allmon3</title>

<!-- CSS -->
<link href="css/bootstrap.min.css?v=@@HEAD-DEVELOP@@" rel="stylesheet" crossorigin="anonymous">
<link href="css/main.css?v=@@HEAD-DEVELOP@@" rel="stylesheet">
<link href="css/custom.css?v=@@HEAD-DEVELOP@@" rel="stylesheet">
<link href="css/bootstrap.min.css?v=1.3.2" rel="stylesheet" crossorigin="anonymous">
<link href="css/main.css?v=1.3.2" rel="stylesheet">
<link href="css/custom.css?v=1.3.2" rel="stylesheet">

<!-- Favicons -->
<link rel="apple-touch-icon" href="img/favicons/favicon-180x180.png" type="image/png" sizes="180x180">
Expand Down Expand Up @@ -175,7 +175,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.3.2</span>
</div>
</div>
</nav>
Expand All @@ -192,9 +192,9 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
</div>
<!-- End Main Page -->

<script src="js/bootstrap.bundle.min.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/functions.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/commands.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/index.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/bootstrap.bundle.min.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/functions.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/commands.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/index.js?v=1.3.2" crossorigin="anonymous"></script>
</body>
</html>
16 changes: 8 additions & 8 deletions web/voter.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
<title>Allmon3 Voter</title>

<!-- CSS -->
<link href="css/bootstrap.min.css?v=@@HEAD-DEVELOP@@" rel="stylesheet" crossorigin="anonymous">
<link href="css/main.css?v=@@HEAD-DEVELOP@@" rel="stylesheet">
<link href="css/custom.css?v=@@HEAD-DEVELOP@@" rel="stylesheet">
<link href="css/bootstrap.min.css?v=1.3.2" rel="stylesheet" crossorigin="anonymous">
<link href="css/main.css?v=1.3.2" rel="stylesheet">
<link href="css/custom.css?v=1.3.2" rel="stylesheet">

<!-- Favicons -->
<link rel="apple-touch-icon" href="img/favicons/favicon-180x180.png" type="image/png" sizes="180x180">
Expand Down Expand Up @@ -169,7 +169,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.3.2</span>
</div>
</div>
</nav>
Expand Down Expand Up @@ -201,10 +201,10 @@ <h5 class="modal-title" id="commandModalTitleBox"></h5>
</div>
<!-- End Main Page -->

<script src="js/bootstrap.bundle.min.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/functions.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/commands.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/voter.js?v=@@HEAD-DEVELOP@@" crossorigin="anonymous"></script>
<script src="js/bootstrap.bundle.min.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/functions.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/commands.js?v=1.3.2" crossorigin="anonymous"></script>
<script src="js/voter.js?v=1.3.2" crossorigin="anonymous"></script>
</body>
</html>

0 comments on commit 27490aa

Please sign in to comment.