Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.5.4-20170725 |
Files: | files | file ages | folders |
SHA1: |
facd01c194685144595a36d45dbb565b |
User & Date: | bernd 2017-07-24 23:37:08.860 |
Context
2017-07-25
| ||
22:30 | Backlink from try it to get it check-in: 82c3a653bc user: bernd tags: trunk | |
2017-07-24
| ||
23:37 | Bump version number check-in: facd01c194 user: bernd tags: trunk, 0.5.4-20170725 | |
11:48 | Renat against all known addresses check-in: e245d57d63 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.5.4-20170725], [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_20170725 if [ "$(uname -o)" = "Cygwin" ] then CONFOPT="--prefix=/usr $*" else CONFOPT="$*" fi |
︙ | ︙ |
Changes to net2o-helper.fs.
︙ | ︙ | |||
112 113 114 115 116 117 118 | \ notification for address changes true Value connected? Forward dht-beacon Forward renat-all | | | > | 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | \ notification for address changes true Value connected? Forward dht-beacon Forward renat-all [IFDEF] android require android/net.fs [ELSE] [IFDEF] PF_NETLINK require linux/net.fs [THEN] [THEN] \ announce and renat event: :>renat ( -- ) renat-all ; : dht-beacon <event :>renat main-up@ event> 2drop ; : announce-me ( -- ) |
︙ | ︙ |