commit
864b7feb79
3 changed files with 20 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
### zeronet-conservancy 0.7.5+
|
### zeronet-conservancy 0.7.6
|
||||||
maintainers: @caryoscelus, @d4708, @FraYoshi, @prtngn
|
maintainers: @caryoscelus, @d4708, @FraYoshi, @prtngn
|
||||||
|
- more trackers from Syncronite by default
|
||||||
- introduce multiple donations methods (@caryoscelus)
|
- introduce multiple donations methods (@caryoscelus)
|
||||||
- easier termux startup script (@unmanbearpig)
|
- easier termux startup script (@unmanbearpig)
|
||||||
- Brazilian Portuguese readme translation (@iFallenHunt)
|
- Brazilian Portuguese readme translation (@iFallenHunt)
|
||||||
|
|
17
README.md
17
README.md
|
@ -64,7 +64,22 @@ Following links relate to original ZeroNet:
|
||||||
|
|
||||||
### Install from your distribution repository
|
### Install from your distribution repository
|
||||||
|
|
||||||
- NixOS: https://search.nixos.org/packages?channel=22.05&show=zeronet-conservancy&type=packages&query=zeronet-conservancy
|
- NixOS: https://search.nixos.org/packages?channel=22.05&show=zeronet-conservancy&type=packages&query=zeronet-conservancy (and see below)
|
||||||
|
|
||||||
|
### Install from Nix package manager (Linux or MacOS)
|
||||||
|
|
||||||
|
```
|
||||||
|
# install & configure nix package manager
|
||||||
|
nix-env -iA nixpkgs.zeronet-conservancy
|
||||||
|
```
|
||||||
|
|
||||||
|
or
|
||||||
|
|
||||||
|
`nix-env -iA nixos.zeronet-conservancy`
|
||||||
|
|
||||||
|
if you're on NixOS
|
||||||
|
|
||||||
|
(thanks @fgaz for making & maintaining the package)
|
||||||
|
|
||||||
### Install from source (recommended)
|
### Install from source (recommended)
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,9 @@ import time
|
||||||
class Config(object):
|
class Config(object):
|
||||||
|
|
||||||
def __init__(self, argv):
|
def __init__(self, argv):
|
||||||
self.version = "0.7.5+"
|
self.version = "0.7.6"
|
||||||
# DEPRECATED ; replace with git-generated commit
|
# DEPRECATED ; replace with git-generated commit
|
||||||
self.rev = 5020
|
self.rev = 5030
|
||||||
self.argv = argv
|
self.argv = argv
|
||||||
self.action = None
|
self.action = None
|
||||||
self.test_parser = None
|
self.test_parser = None
|
||||||
|
|
Loading…
Reference in a new issue