Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.9.7-20200206 |
Files: | files | file ages | folders |
SHA1: |
8981ab964e74e3572061a37eda40cf13 |
User & Date: | bernd 2020-02-06 12:37:25.491 |
Context
2020-02-06
| ||
21:49 | Slight change of chat check check-in: 8ec50e8d7c user: bernd tags: trunk | |
12:37 | Bump version number check-in: 8981ab964e user: bernd tags: trunk, 0.9.7-20200206 | |
2020-02-04
| ||
21:35 | Improve history browsing check-in: b5815e53f6 user: bernd tags: trunk | |
Changes
Changes to configure.ac.
︙ | ︙ | |||
11 12 13 14 15 16 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. | | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. AC_INIT([net2o], [0.9.7-20200206], [bernd@net2o.de], [net2o], [https://fossil.net2o.de/net2o/reportlist]) AC_PREREQ([2.59]) AC_CONFIG_MACRO_DIR([m4]) AC_USE_SYSTEM_EXTENSIONS LT_INIT AC_MSG_CHECKING([for gforth]) |
︙ | ︙ |
Changes to do.
1 2 3 4 | #!/bin/bash echo "This script builds net2o from scratch" | | | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash echo "This script builds net2o from scratch" GFORTH=gforth-0.7.9_20200206 if [ "$(uname -o)" = "Cygwin" ] then CONFOPT="--prefix=/usr $*" else CONFOPT="$*" fi |
︙ | ︙ |
Changes to keys.fs.
︙ | ︙ | |||
1406 1407 1408 1409 1410 1411 1412 | Variable tries# #10 Value maxtries# forward read-chatgroups : n2o-greeting ( -- ) | | < | 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 | Variable tries# #10 Value maxtries# forward read-chatgroups : n2o-greeting ( -- ) [: ." net2o " (c) ." 2010-2020 Bernd Paysan" cr ;] do-debug ; : get-skc ( -- ) secret-keys# IF read-chatgroups EXIT THEN n2o-greeting tries# off debug-vector @ op-vector !@ >r <default> secret-keys# |
︙ | ︙ |
Changes to n2o.fs.
︙ | ︙ | |||
559 560 561 562 563 564 565 566 567 568 569 570 571 572 | \ script mode : cmd ( -- ) \U cmd \G cmd: Offer a net2o command line for client stuff get-me 0 to script? n2o-cmds ; : script ( -- ) \U script file \G script: read a file in script mode ?nextarg 0= IF help EXIT THEN get-me init-client word-args ['] included do-net2o-cmds ; | > | 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 | \ script mode : cmd ( -- ) \U cmd \G cmd: Offer a net2o command line for client stuff get-me [: ." net2o interactive shell, type 'bye' to quit, 'help' for help" cr ;] do-debug 0 to script? n2o-cmds ; : script ( -- ) \U script file \G script: read a file in script mode ?nextarg 0= IF help EXIT THEN get-me init-client word-args ['] included do-net2o-cmds ; |
︙ | ︙ |
Changes to wiki/commands.md.
1 2 | # Commands # | | | 1 2 3 4 5 6 7 8 9 10 | # Commands # Version 0.9.7-20200206. net2o separates data and commands. Data is passed through to higher layers, commands are interpreted when they arrive. For connection requests, a special bit is set, and the address then isn't used as address, but as IV for the opportunistic encoding. The command interpreter is a stack machine with two data types: 64 |
︙ | ︙ |