n2n/doc/Scratchpad.md

43 lines
713 B
Markdown
Raw Normal View History

# n2n's Scratchpad
## RPM Packaging
```
bash
./autogen.sh
./configure
make
cd packages/rpm
./configure
rpmbuild -bb ./n2n.spec
```
2022-03-31 15:03:10 +02:00
## Version Update
2022-03-31 15:03:10 +02:00
- change `VERSION` file to new version, e.g. `4.0.1`
- `git add VERSION`
- `git commit -m "moved to version 4.0.1"`
- `git tag -a 4.0.1 -m "moved to version 4.0.1"`
- `git push --tags`
2021-02-08 11:20:33 +01:00
2022-03-31 15:03:10 +02:00
## Draft changelog between 3.0 and 3.2 (as of 2022)
### New Features
2021-07-31 14:29:36 +02:00
2022-03-31 15:03:10 +02:00
- Enhanced management port JSON interface to let n2n interact with external tools
2022-06-06 21:56:14 +02:00
- Added `n2n-route` tool (Linux only so far)
- Introduced `n2n-portfwd` tool to support UPnP and PMP port forwarding
2022-03-31 15:03:10 +02:00
- Furthered the build system
2021-02-08 11:20:33 +01:00
### Improvements
2022-03-31 15:03:10 +02:00
- Fixed a federation related bug
2021-02-08 11:20:33 +01:00
- Code clean-up