Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.8.5-20190103 |
Files: | files | file ages | folders |
SHA1: |
cda45ac841e04ceb53cef7bc19641767 |
User & Date: | bernd 2019-01-03 18:01:54.520 |
Context
2019-01-03
| ||
18:12 | Add version to GUI spash screen check-in: bc7e0a156b user: bernd tags: trunk | |
18:01 | Bump version number check-in: cda45ac841 user: bernd tags: trunk, 0.8.5-20190103 | |
2019-01-02
| ||
20:23 | Scan improvements check-in: acf8d9ca22 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.5-20190103], [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 gui.fs.
︙ | ︙ | |||
242 243 244 245 246 247 248 | }}h pw-field ' pw-done edit[] {{ \large \sans $FFFFFFFF text-color, to x-color "👁" }}text \normal \bold show-sign-color# to x-color "\" }}text dup value show-pw-sign /center blackish }}z \regular : pw-show/hide ( flag -- ) | > > | | 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | }}h pw-field ' pw-done edit[] {{ \large \sans $FFFFFFFF text-color, to x-color "👁" }}text \normal \bold show-sign-color# to x-color "\" }}text dup value show-pw-sign /center blackish }}z \regular : pw-show/hide ( flag -- ) dup IF ['] transparent >body f@ ELSE show-sign-color# THEN show-pw-sign >o to text-color o> 2 config:passmode# @ 1 min rot select pw-field >o to pw-mode o> pw-field engage +sync ; ' pw-show/hide config:passmode# @ 1 > toggle[] \normal }}h box[] }}z box[] bx-tab {{ |
︙ | ︙ | |||
265 266 267 268 269 270 271 272 273 274 275 276 277 278 | phrase-unlock /hflip create-new-id /flop plus-login /flip minus-login /flop nick-edit /flop [ x-baseline ] FLiteral nick-edit >o fdup gap% f* to gap to baseline o> ELSE phrase-unlock /flop create-new-id /hflip plus-login /flop minus-login /flip nick-edit /vflip 0e nick-edit >o to baseline o> | > | 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 | phrase-unlock /hflip create-new-id /flop plus-login /flip minus-login /flop nick-edit /flop [ x-baseline ] FLiteral nick-edit >o fdup gap% f* to gap to baseline o> "nick" nick-field engage-edit ELSE phrase-unlock /flop create-new-id /hflip plus-login /flop minus-login /flip nick-edit /vflip 0e nick-edit >o to baseline o> |
︙ | ︙ |
Changes to wiki/commands.md.
1 2 | # Commands # | | | 1 2 3 4 5 6 7 8 9 10 | # Commands # Version 0.8.5-20190103. 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 |
︙ | ︙ |