Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.8.8-20190404 |
Files: | files | file ages | folders |
SHA1: |
c2c151379f74772c4c715299d42daff9 |
User & Date: | bernd 2019-04-04 14:22:59.450 |
Context
2019-04-08
| ||
15:30 | Add day/night mode check-in: 84dc15a8dd user: bernd tags: trunk | |
2019-04-04
| ||
14:22 | Bump version number check-in: c2c151379f user: bernd tags: trunk, 0.8.8-20190404 | |
2019-04-03
| ||
22:22 | Show emojis/+ones check-in: c34b95db43 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.8.8-20190404], [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_20190404 if [ "$(uname -o)" = "Cygwin" ] then CONFOPT="--prefix=/usr $*" else CONFOPT="$*" fi |
︙ | ︙ |
Changes to gui.fs.
︙ | ︙ | |||
984 985 986 987 988 989 990 991 992 993 994 995 996 997 | : chat-edit-enter ( o:edit-w -- ) text$ dup IF do-chat-cmd? 0= IF avalanche-text THEN ELSE 2drop THEN 64#-1 line-date 64! $lastline $free ; \ +db click( \ ) \ +db gui( \ ) {{ $80FFFFFF color, pres-frame {{ {{ glue*l $000000FF color, slide-frame dup .button1 {{ | > | 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 | : chat-edit-enter ( o:edit-w -- ) text$ dup IF do-chat-cmd? 0= IF avalanche-text THEN ELSE 2drop THEN 64#-1 line-date 64! $lastline $free ; \ +db click( \ ) \ +db click-o( \ ) \ +db gui( \ ) {{ $80FFFFFF color, pres-frame {{ {{ glue*l $000000FF color, slide-frame dup .button1 {{ |
︙ | ︙ |
Changes to wiki/commands.md.
1 2 | # Commands # | | | 1 2 3 4 5 6 7 8 9 10 | # Commands # Version 0.8.8-20190404. 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 |
︙ | ︙ |