]> Cypherpunks.ru repositories - nncp.git/blob - doc/news.texi
1cf64c543a6552bc9bfb9ffebfa3d3d8a600d518
[nncp.git] / doc / news.texi
1 @node News
2 @unnumbered News
3
4 See also this page @ref{Новости, on russian}.
5
6 @node Release 8_0_0
7 @section Release 8.0.0
8 @itemize
9
10 @item
11 @strong{Incompatible} encrypted packet format change: payload and pad
12 sizes are sent in-bound in the encrypted stream. That gives ability to
13 streamingly create encrypted packets, without knowing sizes in advance,
14 without creating temporary file or buffer data in memory.
15
16 @item
17 Proper encrypted packet padding verification is done now. This is not
18 critical issue, but previously neither padding value, nor its size were
19 authenticated, giving ability to iteratively strip trailing bytes and
20 determine payload's size by observing the reaction of the encrypted
21 packet processing.
22
23 @item
24 @command{nncp-exec} loses its @option{-use-tmp} option, because of
25 streaming-compatible encrypted packets format.
26
27 @item
28 @command{nncp-file} and @command{nncp-exec} commands have
29 @option{-maxsize} option, limiting maximal resulting encrypted packet's
30 maximal size (returning error if it is exceeded). Could be useful,
31 because no payload size could be known in advance.
32
33 @end itemize
34
35 @node Release 7_7_0
36 @section Release 7.7.0
37 @itemize
38
39 @item
40 Experimental @code{kqueue} and @code{inotify} based notifications
41 support about spool directory changes, for reducing their often reading
42 overhead.
43
44 @item
45 @file{.seen} and @file{.hdr} files moved to @file{seen/} and @file{hdr/}
46 subdirectories, for faster scanning of spool directories.
47 Current files migration required:
48
49 @example
50 $ find $NNCPSPOOL -type f -name "*.hdr" -exec rm @{@} +
51
52 $ find $NNCPSPOOL -type d -name rx | while read rx ; do
53     cd $rx
54     mkdir -p seen
55     find . -type f -name "*.seen" | while read fn ; do
56         mv $fn seen/$@{fn%.seen@}
57     done
58 done
59
60 $ find $NNCPSPOOL -type d -name area | while read area ; do
61     find $area -type f -name "*.seen" | while read fn ; do
62         mv $fn $@{fn%.seen@}
63     done
64 done
65 @end example
66
67 @end itemize
68
69 @node Release 7_6_0
70 @section Release 7.6.0
71 @itemize
72
73 @item
74 Logging may be done to specified opened file descriptor
75 (@env{$NNCPLOG=FD:5} for example).
76 That is friendly to use under @command{daemontools}.
77
78 @item
79 Added additional checks of public keys existence in configuration file,
80 preventing some commands from failing.
81
82 @end itemize
83
84 @node Release 7_5_1
85 @section Release 7.5.1
86 @itemize
87
88 @item
89 NNCP builds on NetBSD.
90
91 @end itemize
92
93 @node Release 7_5_0
94 @section Release 7.5.0
95 @itemize
96
97 @item
98 @command{nncp-daemon} is compatible with UCSPI-TCP interface, so log
99 will contain remote side's address (when running under appropriate
100 utility). @option{-ucspi} option should be used instead of @option{-inetd}.
101
102 @item
103 @command{nncp-call} can be UCSPI-TCP client, using @option{-ucspi} option.
104
105 @item
106 Do not exit if some of MCD network interfaces can not be listened --
107 only warn about that.
108
109 @end itemize
110
111 @node Release 7_4_0
112 @section Release 7.4.0
113 @itemize
114
115 @item
116 Fixed simultaneous @command{nncp-daemon} and @command{nncp-caller} MCD work.
117
118 @end itemize
119
120 @node Release 7_3_2
121 @section Release 7.3.2
122 @itemize
123
124 @item
125 @command{hjson-cli} utility builds in vendor-mode now.
126
127 @end itemize
128
129 @node Release 7_3_1
130 @section Release 7.3.1
131 @itemize
132
133 @item
134 Fixed possibly left opened file descriptor in online commands.
135
136 @item
137 Severely decreased memory usage of MTH hashing.
138
139 @end itemize
140
141 @node Release 7_3_0
142 @section Release 7.3.0
143 @itemize
144
145 @item
146 Fixed some workability problems on 32-bit systems with big files.
147
148 @item
149 Ability to use directory with a bunch of files as a configuration.
150 @command{nncp-cfgdir} command appeared.
151
152 @end itemize
153
154 @node Release 7_2_1
155 @section Release 7.2.1
156 @itemize
157
158 @item
159 Small optimizations in online commands.
160
161 @end itemize
162
163 @node Release 7_2_0
164 @section Release 7.2.0
165 @itemize
166
167 @item
168 @command{nncp-trns} command appeared for manual transition packets creation.
169
170 @item
171 If destination node of transitional packet has non empty @option{via}
172 route, then do not ignore, but use it.
173
174 @item
175 Do not relay multicast packet to area message's originator, that
176 obviously has seen its own packet.
177
178 @item
179 Much less memory usage during MTH hashing when offset is zero: when
180 packet is not resumed, but for example checked with @command{nncp-check}
181 command.
182
183 @end itemize
184
185 @node Release 7_1_1
186 @section Release 7.1.1
187 @itemize
188
189 @item
190 Fixed failing directories fsync after @file{.seen} file creation.
191
192 @end itemize
193
194 @node Release 7_1_0
195 @section Release 7.1.0
196 @itemize
197
198 @item
199 Multicasting areas feature appeared. Implemented merely by an additional
200 plain packet type with @command{nncp-toss}, @command{nncp-file} and
201 @command{nncp-exec} commands modification.
202
203 @item
204 Fixed workability of @command{nncp-file} and @command{nncp-exec}
205 commands, that use temporary file (stdin and @option{-use-tmp}).
206
207 @item
208 Fixed disappearing bad return code in @command{nncp-exec} command.
209
210 @item
211 Fixed invalid @file{.hdr} generation when transitional packets are used.
212
213 @item
214 @option{-all} option appeared in @command{nncp-rm} command, applying to
215 all the nodes at once.
216
217 @item
218 @option{-cycle} option appeared in @command{nncp-check} command, looping
219 the check in infinite cycle.
220
221 @item
222 @command{nncp-rm} command can take node alias name.
223
224 @item
225 @command{nncp-pkt} can parse @file{.hdr} files.
226
227 @end itemize
228
229 @node Release 7_0_0
230 @section Release 7.0.0
231 @itemize
232
233 @item
234 Minimal required Go version 1.13.
235
236 @item
237 Merkle Tree-based Hashing with BLAKE3 (MTH) is used instead of BLAKE2b.
238 Because of that, there are backward @strong{incompatible} changes of
239 encrypted files (everything laying in the spool directory) and
240 @file{.meta} files of chunked transfer.
241
242 Current implementation is far from being optimal: it lacks
243 parallelizable calculations and has higher memory consumption: nearly
244 512 KiB for each 1 GiB of file's data. Future performance and memory
245 size optimizations should not lead to packet's format change. But it is
246 still several times faster than BLAKE2b.
247
248 @item
249 Resumed online downloads, because of MTH, require reading only of the
250 preceding part of file, not the whole one as was before.
251
252 @item
253 @command{nncp-hash} utility appeared for calculating file's MTH hash.
254
255 @item
256 BLAKE2 KDF and XOF functions are replaced with BLAKE3 in encrypted
257 packets. Lowering number of used primitives. Also, its encrypted
258 packet's header is used as an associated data during encryption.
259
260 @item
261 MultiCast Discovery uses
262 @verb{|ff02::4e4e:4350|} address instead of @verb{|ff02::1|}.
263
264 @item
265 @command{nncp-cfgenc} mistakenly asked passphrase three times during encryption.
266
267 @item
268 @command{nncp-stat} reports about partly downloaded packets.
269
270 @item
271 Updated dependencies.
272
273 @end itemize
274
275 @node Release 6_6_0
276 @section Release 6.6.0
277 @itemize
278
279 @item
280 @command{nncp-daemon}, @command{nncp-call} and @command{nncp-caller}
281 commands wait for all background checksummers completion after
282 connection is finished.
283
284 @item
285 Added possibility of address determining through multicast announcement
286 in local area network, so called MCD (MultiCast Discovery).
287
288 @end itemize
289
290 @node Release 6_5_0
291 @section Release 6.5.0
292 @itemize
293
294 @item
295 Fixed segfault in @command{nncp-daemon} when SP handshake did not succeed.
296
297 @item
298 Fixed possible bad return code ignoring in automatic tosser.
299
300 @item
301 Fixed race during file descriptors closing when online protocol call is
302 finished, that could lead to write error of received packet fragment.
303
304 @item
305 Kill all packet transmission progress bars in @command{nncp-daemon},
306 @command{nncp-call} and @command{nncp-caller} when call is finished.
307
308 @end itemize
309
310 @node Release 6_4_0
311 @section Release 6.4.0
312 @itemize
313
314 @item
315 Fixed possible race in online protocol, that lead to panic.
316
317 @end itemize
318
319 @node Release 6_3_0
320 @section Release 6.3.0
321 @itemize
322
323 @item
324 Fixed possible panic while showing progress during online protocol.
325
326 @end itemize
327
328 @node Release 6_2_1
329 @section Release 6.2.1
330 @itemize
331
332 @item
333 Three places in logs contained excess @code{%s}.
334
335 @end itemize
336
337 @node Release 6_2_0
338 @section Release 6.2.0
339 @itemize
340
341 @item
342 Returned @command{nncp-caller}'s @option{-autotoss*} options workability.
343
344 @item
345 Yet another logging refactoring and simplification.
346 Should be no visible differences to the end user.
347
348 @end itemize
349
350 @node Release 6_1_0
351 @section Release 6.1.0
352 @itemize
353
354 @item
355 Optimization: most commands do not keep opened file descriptors now.
356 Previously you can exceed maximal number of opened files if you have got
357 many packets in the spool directory.
358
359 @item
360 Optimization: do not close file descriptor of the file we download
361 online. Previously each chunk lead to expensive open/close calls.
362
363 @item
364 Online downloaded files are saved with @file{.nock} (non-checksummed)
365 suffix, waiting either for @command{nncp-check}, or online daemons to
366 perform integrity check.
367
368 @item
369 Optimization: files, that are not resumed, are checksummed immediately
370 during the online download, skipping @file{.nock}-intermediate step.
371
372 @item
373 Ability to store encrypted packet's header in @file{.hdr} file, close to
374 the packet itself. That can greatly increase performance of packets
375 listing on filesystems with big block's size.
376
377 @end itemize
378
379 @node Release 6_0_0
380 @section Release 6.0.0
381 @itemize
382
383 @item
384 Log uses human readable and easy machine parseable
385 @url{https://www.gnu.org/software/recutils/, recfile} format for the
386 records, instead of structured RFC 3339 lines. Old logs are not readable
387 by @command{nncp-log} anymore.
388
389 @item
390 @option{-autotoss*} option workability with @command{nncp-daemon}'s
391 @option{-inetd} mode.
392
393 @item
394 Call's @option{when-tx-exists} allows to make a call only when outbound
395 packets exists. Combined with seconds-aware cron expression that can be
396 used as some kind of auto dialler.
397
398 @item
399 @command{nncp-cronexpr} command allows you to check validity and
400 expectations of specified cron expression.
401
402 @end itemize
403
404 @node Release 5_6_0
405 @section Release 5.6.0
406 @itemize
407
408 @item
409 @option{-autotoss*} option runs tosser not after the call, but every
410 second while it is active.
411
412 @item
413 @option{autotoss}, @option{autotoss-doseen},
414 @option{autotoss-nofile}, @option{autotoss-nofreq},
415 @option{autotoss-noexec}, @option{autotoss-notrns} options available in
416 @option{calls} configuration section. You can configure per-call
417 automatic tosser options.
418
419 @item
420 Use vendoring, instead of @env{$GOPATH} overriding during tarball
421 installation, because current minimal Go's version is 1.12 and it
422 supports modules.
423
424 @end itemize
425
426 @node Release 5_5_1
427 @section Release 5.5.1
428 @itemize
429
430 @item
431 Respect for @env{$BINDIR}, @env{$INFODIR} and @env{$DOCDIR} environment
432 variables in @file{config} during installation.
433
434 @end itemize
435
436 @node Release 5_5_0
437 @section Release 5.5.0
438 @itemize
439
440 @item
441 Bugfixes in @command{nncp-call(er)}/@command{nncp-daemon},
442 @command{nncp-bundle} and @command{nncp-stat}.
443
444 @item
445 @command{nncp-rm} has @option{-dryrun} and @option{-older} options now.
446
447 @item
448 @command{nncp-exec} has @option{-use-tmp} and @option{-nocompress}
449 options now. Uncompressed packets are not compatible with previous NNCP
450 versions.
451
452 @item
453 @command{nncp-call}, @command{nncp-caller} and @command{nncp-daemon} commands
454 have @option{-autotoss*} options for running tosser after call is ended.
455
456 @item
457 Updated dependencies. Minimal required Go version is 1.12.
458
459 @end itemize
460
461 @node Release 5_4_1
462 @section Release 5.4.1
463 @itemize
464
465 @item
466 Fixed @code{SENDMAIL} variable usage during the build.
467
468 @end itemize
469
470 @node Release 5_4_0
471 @section Release 5.4.0
472 @itemize
473
474 @item
475 Updated dependencies.
476
477 @item
478 Build system is moved from Makefiles to @url{http://cr.yp.to/redo.html, redo}.
479 This should not influence package maintainers, because minimal @command{redo}
480 implementation is included in tarball.
481
482 @end itemize
483
484 @node Release 5_3_3
485 @section Release 5.3.3
486 @itemize
487
488 @item
489 More various error checks.
490
491 @item
492 Updated dependencies.
493
494 @end itemize
495
496 @node Release 5_3_2
497 @section Release 5.3.2
498 @itemize
499
500 @item
501 Fixed incorrect logic of @option{onlinedeadline} timeout, where
502 connection won't take into account incoming packets events and will
503 forcefully disconnect.
504
505 @end itemize
506
507 @node Release 5_3_1
508 @section Release 5.3.1
509 @itemize
510
511 @item
512 Fixed @option{onlinedeadline} workability with call addresses that use
513 external commands (@verb{#"|somecmd"#}).
514
515 @item
516 @command{nncp-stat} has @option{-pkt} option displaying information
517 about each packet in the spool.
518
519 @end itemize
520
521 @node Release 5_3_0
522 @section Release 5.3.0
523 @itemize
524
525 @item
526 Progress messages contain prefix, describing the running action.
527
528 @item
529 Fixed not occurring handshake messages padding.
530
531 @item
532 Finish all SP protocol related goroutines, less memory leak.
533
534 @item
535 SP protocol generates less socket write calls, thus generating less TCP
536 packets.
537
538 @item
539 Check @option{onlinedeadline} and @option{maxonlinetime} options every
540 second, independently from socket reads (up to 10 seconds).
541
542 @item
543 Once per minute, if no other traffic exists, PING packets are sent in
544 SP-connection. That allows faster determining of connection unworkability.
545
546 @item
547 @command{nncp-toss} uses lock-file to prevent simultaneous tossing.
548
549 @end itemize
550
551 @node Release 5_2_1
552 @section Release 5.2.1
553 @itemize
554
555 @item
556 Fixed SP protocol error handling, sometimes causing program panic.
557
558 @end itemize
559
560 @node Release 5_2_0
561 @section Release 5.2.0
562 @itemize
563
564 @item
565 Most commands by default show oneline operations progress.
566 @option{-progress}, @option{-noprogress} command line options,
567 @option{noprogress} configuration file option appeared.
568
569 @item
570 Fixed incorrect @command{nncp-check} command return code, that returned
571 bad code when everything is good.
572
573 @item
574 Free disk space check during @command{nncp-bundle -rx} call.
575
576 @end itemize
577
578 @node Release 5_1_2
579 @section Release 5.1.2
580 @itemize
581
582 @item
583 @strong{Critical} vulnerability: remote peers authentication could lead
584 to incorrect identification of remote side, allowing foreign encrypted
585 packets downloading.
586
587 @item
588 Bugfix: private and public Noise keys were swapped in newly created
589 configuration files, that lead to inability to authenticate online peers.
590
591 @item
592 Explicit directories fsync-ing for guaranteed files renaming.
593
594 @end itemize
595
596 @node Release 5_1_1
597 @section Release 5.1.1
598 @itemize
599
600 @item
601 Fixed workability of @command{nncp-file} with @option{-chunked 0} option.
602
603 @end itemize
604
605 @node Release 5_1_0
606 @section Release 5.1.0
607 @itemize
608
609 @item
610 @command{nncp-file} can send directories, automatically creating pax
611 archive on the fly.
612
613 @item
614 Free disk space is checked during outbound packets creation.
615
616 @item
617 @option{freq}, @option{freqminsize}, @option{freqchunked} configuration
618 file options replaced with the structure:
619 @option{freq: @{path: @dots{}, minsize: @dots{}, chunked: @dots{}@}}.
620
621 @item
622 Added @option{freq.maxsize} configuration file option, forbidding of
623 freq sending larger than specified size.
624
625 @item
626 Ability to notify about successfully executed commands (exec) with
627 @option{notify.exec} configuration file option.
628
629 @end itemize
630
631 @node Release 5_0_0
632 @section Release 5.0.0
633 @itemize
634
635 @item
636 @strong{Incompatible} configuration file format change: YAML is
637 replaced with Hjson, due to its simplicity, without noticeable lack
638 of either functionality or convenience.
639
640 @item
641 @strong{Incompatible} plain packet format changes. Older versions are
642 not supported. @code{zlib} compression is replaced with
643 @code{Zstandard}, due to its speed and efficiency, despite library
644 version is not mature enough.
645
646 @item
647 Ability to call remote nodes via pipe call of external command, not only
648 through TCP.
649
650 @item
651 @command{nncp-cfgnew} generates configuration file with many
652 comments. @option{-nocomments} option can be used for an old
653 behaviour.
654
655 @item
656 Duplicate filenames have @file{.CTR} suffix, instead of @file{CTR}, to
657 avoid possible collisions with @file{.nncp.chunkCTR}.
658
659 @item
660 Ability to override process umask through configuration file option.
661
662 @item
663 Files and directories are created with 666/777 permissions by default,
664 allowing control with @command{umask}.
665
666 @item
667 Updated dependencies.
668
669 @item
670 Full usage of go modules for dependencies management
671 (@code{go.cypherpunks.ru/nncp/v5} namespace is used).
672
673 @item
674 Forbid any later GNU GPL version autousage
675 (project's licence now is GNU GPLv3-only).
676
677 @end itemize
678
679 @node Release 4_1
680 @section Release 4.1
681 @itemize
682 @item Workability on GNU/Linux systems and Go 1.10 is fixed.
683 @end itemize
684
685 @node Release 4_0
686 @section Release 4.0
687 @itemize
688
689 @item
690 @strong{Incompatible} encrypted and eblob packet format change: AEAD
691 encryption mode with 128 KiB blocks is used now, because previously
692 @command{nncp-toss} did not verify encrypted packet's MAC before feeding
693 decrypted data to external command. Older versions are not supported.
694
695 @item
696 Available free space checking before copying in @command{nncp-xfer},
697 @command{nncp-daemon}, @command{nncp-call(er)}.
698
699 @item
700 @command{nncp-call} has ability only to list packets on remote node,
701 without their transmission.
702
703 @item
704 @command{nncp-call} has ability to transfer only specified packets.
705
706 @item
707 Workability of @option{xxrate} preference in @option{calls}
708 configuration file section.
709
710 @item
711 Dependant libraries are updated.
712
713 @item
714 Minor bugfixes.
715
716 @item
717 Begin using of @code{go.mod} subsystem.
718
719 @end itemize
720
721 @node Release 3_4
722 @section Release 3.4
723 @itemize
724 @item @command{nncp-daemon} can be run as @command{inetd}-service.
725 @end itemize
726
727 @node Release 3_3
728 @section Release 3.3
729 @itemize
730
731 @item
732 @command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller} check
733 if @file{.seen} exists and treat it like file was already downloaded.
734 Possibly it was transferred out-of-bound and remote side needs to be
735 notifier about that.
736
737 @item
738 If higher priority packet is spooled, then @command{nncp-daemon} will
739 queue its sending first, interrupting lower priority transmissions.
740
741 @item
742 Simple packet rate limiter added to online-related tools
743 (@command{nncp-daemon}, @command{nncp-call}, @command{nncp-caller}).
744
745 @item
746 Ability to specify niceness with symbolic notation:
747 @verb{|NORMAL|}, @verb{|BULK+10|}, @verb{|PRIORITY-5|}, etc.
748
749 @item
750 Changed default niceness levels:
751 for @command{nncp-exec} from 64 to 96,
752 for @command{nncp-freq} from 64 to 160,
753 for @command{nncp-file} from 196 to 224.
754
755 @end itemize
756
757 @node Release 3_2
758 @section Release 3.2
759 @itemize
760 @item
761 @strong{Incompatible} @emph{bundle} archive format changes and
762 @command{nncp-bundle} workability with Go 1.10+. Bundles must be
763 valid tar archives, but Go 1.9 made them invalid because of long paths
764 inside. NNCP accidentally was dependant on that bug. Explicit adding of
765 @file{NNCP/} directory in archive restores workability with valid tar
766 archives.
767 @end itemize
768
769 @node Release 3_1
770 @section Release 3.1
771 @itemize
772 @item
773 Ability to disable relaying at all using @verb{|-via -|} command line option.
774 @end itemize
775
776 @node Release 3_0
777 @section Release 3.0
778 @itemize
779
780 @item
781 @strong{Incompatible} plain packet format changes. Older versions are
782 not supported.
783
784 @item
785 Ability to queue remote command execution, by configuring @option{exec}
786 option in configuration file and using @command{nncp-exec} command:
787     @itemize
788     @item
789     @command{nncp-mail} command is replaced with more flexible
790     @command{nncp-exec}. Instead of @verb{|nncp-mail NODE RECIPIENT|}
791     you must use @verb{|nncp-exec NODE sendmail RECIPIENT|}.
792     @item
793     @option{sendmail} configuration file option is replaced with
794     @option{exec}. @verb{|sendmail: [...]|} must be replaced with
795     @verb{|exec: sendmail: [...]|}.
796     @end itemize
797
798 @item
799 Ability to override @option{via} configuration option for destination
800 node via @option{-via} command line option for following commands:
801 @command{nncp-file}, @command{nncp-freq}, @command{nncp-exec}.
802
803 @item
804 Chunked files, having size less than specified chunk size, will be sent
805 as an ordinary single file.
806
807 @item
808 Exec commands are invoked with additional @env{$NNCP_NICE} and
809 @env{$NNCP_SELF} environment variables.
810
811 @item
812 Files, that are sent as a reply to freq, have niceness level taken from
813 the freq packet. You can set desired niceness during @command{nncp-freq}
814 invocation using @option{-replynice} option.
815
816 @item
817 @command{nncp-toss} command can ignore specified packet types during
818 processing: @option{-nofile}, @option{-nofreq}, @option{-noexec},
819 @option{-notrns}.
820
821 @item
822 @command{nncp-file} command uses
823 @option{FreqMinSize}/@option{FreqChunked} configuration file options
824 for @option{-minsize}/@option{-chunked} by default. You can turn this
825 off by specifying zero value.
826
827 @end itemize
828
829 @node Release 2_0
830 @section Release 2.0
831 @itemize
832
833 @item
834 @strong{Incompatible} encrypted/eblob packet format changes. Older
835 versions are not supported.
836
837 @item
838 Twofish encryption algorithm is replaced with ChaCha20. It is much more
839 faster. One cryptographic primitive less.
840
841 @item
842 HKDF-BLAKE2b-256 KDF algorithm is replaced with BLAKE2Xb XOF. Yet
843 another cryptographic primitive less (assuming that BLAKE2X is nearly
844 identical to BLAKE2).
845
846 @end itemize
847
848 @node Release 1_0
849 @section Release 1.0
850 @itemize
851
852 @item
853 @strong{Incompatible} encrypted packet format changes. Older versions
854 are not supported.
855
856 @item
857 @command{nncp-bundle} command can either create stream of encrypted
858 packets, or digest it. It is useful when dealing with
859 @code{stdin}/@code{stdout} based transmission methods (like writing to
860 CD-ROM without intermediate prepared ISO image and working with tape
861 drives).
862
863 @item
864 @command{nncp-toss} is able to create @file{.seen} files preventing
865 duplicate packets receiving.
866
867 @item
868 Single background checksum verifier worker is allowed in
869 @command{nncp-call}. This is helpful when thousands of small inbound
870 packets could create many goroutines.
871
872 @item
873 Ability to override path to spool directory and logfile through either
874 command line argument, or environment variable.
875
876 @item
877 @command{nncp-rm} is able to delete outbound/inbound, @file{.seen},
878 @file{.part}, @file{.lock} and temporary files.
879
880 @end itemize
881
882 @node Release 0_12
883 @section Release 0.12
884 @itemize
885 @item Sendmail command is called with @env{$NNCP_SENDER} environment variable.
886 @end itemize
887
888 @node Release 0_11
889 @section Release 0.11
890 @itemize
891 @item @command{nncp-stat}'s command output is sorted by node name.
892 @end itemize
893
894 @node Release 0_10
895 @section Release 0.10
896 @itemize
897 @item
898 @command{nncp-freq}'s @file{DST} argument is optional now. Last
899 @file{SRC} path's element will be used by default.
900 @end itemize
901
902 @node Release 0_9
903 @section Release 0.9
904 @itemize
905 @item
906 Fix @option{-rx}/@option{-tx} arguments processing in
907 @command{nncp-call} command. They were ignored.
908 @end itemize
909
910 @node Release 0_8
911 @section Release 0.8
912 @itemize
913 @item
914 Little bugfix in @command{nncp-file} command, where @option{-minsize}
915 option for unchunked transfer was not in KiBs, but in bytes.
916 @end itemize
917
918 @node Release 0_7
919 @section Release 0.7
920 @itemize
921
922 @item
923 Ability to feed @command{nncp-file} from @code{stdin}, that uses an
924 encrypted temporary file for that.
925
926 @item
927 Chunked files transmission appeared with corresponding
928 @command{nncp-reass} command and @option{freqchunked} configuration file
929 entry. Useful for transferring big files over small storage devices.
930
931 @item
932 @option{freqminsize} configuration file option, analogue to
933 @option{-minsize} one.
934
935 @item
936 @command{nncp-xfer}'s @option{-force} option is renamed to
937 @option{-mkdir} for clarity.
938
939 @item
940 @option{-minsize} option is specified in KiBs, not bytes, for
941 convenience.
942
943 @item
944 @command{nncp-newcfg} command is renamed to @command{nncp-cfgnew},
945 and @command{nncp-mincfg} to @command{nncp-cfgmin} -- now they have
946 common prefix and are grouped together for convenience.
947
948 @item
949 @command{nncp-cfgenc} command appeared, allowing configuration file
950 encryption/decryption, for keeping it safe without any either OpenPGP or
951 similar tools usage.
952
953 @item
954 Cryptographic libraries (dependencies) are updated.
955
956 @end itemize
957
958 @node Release 0_6
959 @section Release 0.6
960 @itemize
961 @item Small @command{nncp-rm} command appeared.
962 @item Cryptographic libraries (dependencies) are updated.
963 @end itemize
964
965 @node Release 0_5
966 @section Release 0.5
967 @itemize
968 @item
969 Trivial small fix in default niceness level of @command{nncp-file}
970 and @command{nncp-freq} commands.
971 @end itemize
972
973 @node Release 0_4
974 @section Release 0.4
975 @itemize
976
977 @item
978 Small fix in @command{nncp-call}, @command{nncp-caller},
979 @command{nncp-daemon}: they can segmentation fail sometimes (no data is
980 lost).
981
982 @item
983 @command{nncp-newnode} renamed to @command{nncp-newcfg} -- it is shorter
984 and more convenient to use.
985
986 @item
987 @command{nncp-mincfg} command appeared: helper allowing to create
988 minimalistic stripped down configuration file without private keys, that
989 is useful during @command{nncp-xfer} usage.
990
991 @end itemize
992
993 @node Release 0_3
994 @section Release 0.3
995 @itemize
996 @item Fixed compatibility with Go 1.6.
997 @end itemize
998
999 @node Release 0_2
1000 @section Release 0.2
1001 @itemize
1002
1003 @item
1004 @strong{Incompatible} packet's format change (magic number is changed
1005 too): size field is encrypted and is not send in plaintext anymore.
1006
1007 @item
1008 @option{-minsize} option gives ability to automatically pad outgoing
1009 packets to specified minimal size.
1010
1011 @item
1012 @command{nncp-daemon} and @command{nncp-call}/@command{nncp-caller}
1013 always check new @emph{tx} packets appearance in the background while
1014 connected. Remote side is immediately notified.
1015
1016 @item
1017 @option{-onlinedeadline} option gives ability to configure timeout of
1018 inactivity of online connection, when it could be disconnected. It could
1019 be used to keep connection alive for a long time.
1020
1021 @item
1022 @option{-maxonlinetime} option gives ability to set maximal allowable
1023 online connection aliveness time.
1024
1025 @item
1026 @command{nncp-caller} command appeared: cron-ed TCP daemon caller.
1027
1028 @item
1029 @command{nncp-pkt} command can decompress the data.
1030
1031 @end itemize