mirror of
https://git.disroot.org/pranav/pybatmesh.git
synced 2024-12-26 01:59:50 +05:30
couple of changes, see full commit message
* make will now build every time naxalnet/__init__.py is changed. * Changed content related to online classes in README.md. It seems online classes are a luxury even in urban areas in some parts of India. * Added argument -V as alias for --verbose
This commit is contained in:
parent
74a061507f
commit
c8f032a3d0
2
Makefile
2
Makefile
@ -7,7 +7,7 @@ DESTDIR:= /
|
|||||||
|
|
||||||
all: build
|
all: build
|
||||||
|
|
||||||
build:
|
build: naxalnet/__init__.py
|
||||||
$(PYTHON) setup.py build
|
$(PYTHON) setup.py build
|
||||||
|
|
||||||
install: build
|
install: build
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
**naxalnet** is a program to create a wireless mesh network for
|
**naxalnet** is a program to create a wireless mesh network for
|
||||||
communicating with each other. It can be useful during an
|
communicating with each other. It can be useful during an
|
||||||
[internet shutdown](#internet-shutdown), or to join
|
[internet shutdown](#internet-shutdown), or to join
|
||||||
[online classes](#online-class-in-remote-areas) with a group
|
[online classes](#online-class) with a group of laptops.
|
||||||
of laptops.
|
|
||||||
It uses [B.A.T.M.A.N. Advanced][batman-adv], an implementation
|
It uses [B.A.T.M.A.N. Advanced][batman-adv], an implementation
|
||||||
of the B.A.T.M.A.N. routing protocol to communicate with peers.
|
of the B.A.T.M.A.N. routing protocol to communicate with peers.
|
||||||
The name naxal comes from Naxalbari, a village in Darjeeling,
|
The name naxal comes from Naxalbari, a village in Darjeeling,
|
||||||
@ -246,9 +245,9 @@ systemd-networkd configures the network.
|
|||||||
|
|
||||||
## Use cases
|
## Use cases
|
||||||
|
|
||||||
### Online class in remote areas
|
### Online class
|
||||||
|
|
||||||
naxalnet can be used to share connections in remote areas.
|
naxalnet can be used to share connections to join online classes.
|
||||||
You need at least one device with internet access.
|
You need at least one device with internet access.
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
@ -35,4 +35,4 @@ See README.md for documentation.
|
|||||||
#
|
#
|
||||||
# In case you forgot to change the version, skip the number
|
# In case you forgot to change the version, skip the number
|
||||||
# and put the next number in the next commit.
|
# and put the next number in the next commit.
|
||||||
__version__ = "0.3.0a3"
|
__version__ = "0.3.0a4"
|
||||||
|
@ -160,6 +160,7 @@ def parse_args() -> Namespace:
|
|||||||
|
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--version",
|
"--version",
|
||||||
|
"-V",
|
||||||
default=False,
|
default=False,
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help="prints the version and exit",
|
help="prints the version and exit",
|
||||||
|
Loading…
Reference in New Issue
Block a user