Skip to content

Commit

Permalink
Update to v1.7.1 release status
Browse files Browse the repository at this point in the history
  • Loading branch information
ironsheep committed Feb 11, 2023
1 parent 31f0e33 commit 4cca023
Show file tree
Hide file tree
Showing 6 changed files with 171 additions and 176 deletions.
12 changes: 6 additions & 6 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 120,
tabWidth: 2,
};
semi: true,
trailingComma: 'all',
singleQuote: true,
printWidth: 160,
tabWidth: 2,
};
35 changes: 21 additions & 14 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# ChangeLog

Fri, 10 Feb 2023 17:27:06 -0700 v1.7.1

- Fix internal release number
- Forward formal releases via MQTT

Tue, 17 Aug 2022 18:37:21 -0600 v1.6.2

- (#63) Fix path to cut(1) command
Expand Down Expand Up @@ -53,12 +60,12 @@ Mon Aug 17 01:26:21 2020 -0600 v1.5.0
Sat Aug 15 03:25:26 2020 -0600 v1.4.4

- Fix log file grep (for some systems)
Add option for grep to treat dpkg log files a text (#8)
README: show new drives entry in MQTT payload
Add option for grep to treat dpkg log files a text (#8)
README: show new drives entry in MQTT payload

Tue Aug 11 18:42:34 2020 -0600 v1.4.3

- Add alternate locn for vcgen* cmd, use alternate drive space parser
- Add alternate locn for vcgen\* cmd, use alternate drive space parser

Sun Aug 9 18:25:57 2020 -0600 v1.4.2

Expand Down Expand Up @@ -94,8 +101,8 @@ Sat Aug 1 20:44:30 2020 -0600 v1.3.3
Sat Aug 1 19:10:26 2020 -0600 v1.3.2

- Fix uniqueID code, last upd date code
Last update date was being affected by log-rotate... move to another technique
Damaged unique ID generation with v1.3.0... fixed it now
Last update date was being affected by log-rotate... move to another technique
Damaged unique ID generation with v1.3.0... fixed it now

Sat Aug 1 16:02:38 2020 -0600 v1.3.1

Expand All @@ -104,11 +111,11 @@ Sat Aug 1 16:02:38 2020 -0600 v1.3.1
Sat Aug 1 15:14:06 2020 -0600 v1.3.0

- Add new Config Variables
Add fallback_domain and discovery_prefix to config file reader
Adjust discovery advert to use new prefix
Adjust hostname fetch to use new fallback
Add temp fallback to cpu when gpu not avail
Ship both cpu and gpu temps in status dict
Add fallback_domain and discovery_prefix to config file reader
Adjust discovery advert to use new prefix
Adjust hostname fetch to use new fallback
Add temp fallback to cpu when gpu not avail
Ship both cpu and gpu temps in status dict
- Add bug report info script and instru. in bug report template
- Add Jessie notes

Expand All @@ -125,10 +132,10 @@ Thu Jul 23 13:55:00 2020 -0600 v1.2.1
Wed Jul 22 21:34:06 2020 -0600 v1.2.0

- Update ISP-RPi-mqtt-daemon.py
Add two new endponts discovered per RPi (degr C and % space used)
Add test mode for failed to report in
Forward interval set to card
New option for testing stall
Add two new endponts discovered per RPi (degr C and % space used)
Add test mode for failed to report in
Forward interval set to card
New option for testing stall

Wed Jul 22 13:47:18 2020 -0600 v1.1.2

Expand Down
4 changes: 2 additions & 2 deletions ISP-RPi-mqtt-daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
signal(SIGPIPE, SIG_DFL)
import urllib3

script_version = "1.7.0"
script_version = "1.7.1"
script_name = 'ISP-RPi-mqtt-daemon.py'
script_info = '{} v{}'.format(script_name, script_version)
project_name = 'RPi Reporter MQTT2HA Daemon'
Expand Down Expand Up @@ -253,7 +253,7 @@ def getDaemonReleases():
newVersionList.sort()
if len(latestVersion) > 0:
if not latestVersion in newVersionList:
newVersionList.insert(0, currVersion) # append to list
newVersionList.insert(0, latestVersion) # append to list

daemon_version_list = newVersionList
print_line('- RQST daemon_version_list=({})'.format(daemon_version_list), debug=True)
Expand Down
Loading

0 comments on commit 4cca023

Please sign in to comment.