Skip to content

Commit bf04030

Browse files
committed
v0.8.3(4611)
1 parent e9ff589 commit bf04030

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### ZeroNet 0.8.3 (2022-12-11) Rev4611
2+
- main.py -> Fix accessing unassigned varible
3+
- ContentManager -> Support for multiSig
4+
- SiteStrorage.py -> Fix accessing unassigned varible
5+
- ContentManager.py Improve Logging of Valid Signers
6+
7+
### ZeroNet 0.8.2 (2022-11-01) Rev4610
8+
- Fix Startup Error when plugins dir missing
9+
- Move trackers to seperate file & Add more trackers
10+
- Config:: Skip loading missing tracker files
11+
- Added documentation for getRandomPort fn
12+
113
### ZeroNet 0.8.1 (2022-10-01) Rev4600
214
- fix readdress loop (cherry-pick previously added commit from conservancy)
315
- Remove Patreon badge

src/Config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
class Config(object):
1414

1515
def __init__(self, argv):
16-
self.version = "0.8.2"
17-
self.rev = 4610
16+
self.version = "0.8.3"
17+
self.rev = 4611
1818
self.argv = argv
1919
self.action = None
2020
self.test_parser = None

0 commit comments

Comments
 (0)