v0.7.10
This commit is contained in:
parent
40ae09dca8
commit
18d35d3bed
2 changed files with 9 additions and 3 deletions
|
@ -1,10 +1,16 @@
|
||||||
### zeronet-conservancy 0.7.9+
|
### zeronet-conservancy 0.7.10+
|
||||||
|
|
||||||
|
### zeronet-conservancy 0.7.10 (2023-07-26)
|
||||||
|
prepared by @caryoscelus
|
||||||
- update merkletools dependency to avoid legacy pysha3 (@caryoscelus)
|
- update merkletools dependency to avoid legacy pysha3 (@caryoscelus)
|
||||||
- fix ReDoS in file editor (UiFileManager plugin) due to outdated codemirror (@caryoscelus)
|
- fix ReDoS in file editor (UiFileManager plugin) due to outdated codemirror (@caryoscelus)
|
||||||
- more anonymous UPnP (thanks to 0netdwf for reporting)
|
- more anonymous UPnP (thanks to 0netdwf for reporting)
|
||||||
- remove old zeroname plugins (.bit deprecation)
|
- remove old zeroname plugins (.bit deprecation)
|
||||||
- sitePublish --recursive option
|
- sitePublish --recursive option
|
||||||
- windows build instruction improvement
|
- windows build instruction improvement
|
||||||
|
- importBundle command line action
|
||||||
|
- use Syncronite tracker site by default
|
||||||
|
- fix leak of local 0net sites to clearnet sites (originally reported by @egosown/beardog)
|
||||||
- various improvements
|
- various improvements
|
||||||
|
|
||||||
### zeronet-conservancy 0.7.9 (2023-07-02) (f966a4203fe33bd9f35)
|
### zeronet-conservancy 0.7.9 (2023-07-02) (f966a4203fe33bd9f35)
|
||||||
|
|
|
@ -12,10 +12,10 @@ import time
|
||||||
class Config(object):
|
class Config(object):
|
||||||
|
|
||||||
def __init__(self, argv):
|
def __init__(self, argv):
|
||||||
self.version = "0.7.9+"
|
self.version = "0.7.10"
|
||||||
self.user_agent = "conservancy"
|
self.user_agent = "conservancy"
|
||||||
# DEPRECATED ; replace with git-generated commit
|
# DEPRECATED ; replace with git-generated commit
|
||||||
self.rev = 5115
|
self.rev = 5120
|
||||||
self.user_agent_rev = 8192
|
self.user_agent_rev = 8192
|
||||||
self.argv = argv
|
self.argv = argv
|
||||||
self.action = None
|
self.action = None
|
||||||
|
|
Loading…
Reference in a new issue