Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bump version number |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | 0.6.4-20180503 |
Files: | files | file ages | folders |
SHA1: |
bfc30c4b6d2bc75b2eb5377c93546c3e |
User & Date: | bernd 2018-05-02 22:21:04.558 |
Context
2018-05-03
| ||
13:29 | Swap chat sides for own entries check-in: 6ee3b8a712 user: bernd tags: trunk | |
2018-05-02
| ||
22:21 | Bump version number check-in: bfc30c4b6d user: bernd tags: trunk, 0.6.4-20180503 | |
22:15 | GUI improvements check-in: fab0566621 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.6.4-20180503], [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_20180503 if [ "$(uname -o)" = "Cygwin" ] then CONFOPT="--prefix=/usr $*" else CONFOPT="$*" fi |
︙ | ︙ |
Changes to gui.fs.
︙ | ︙ | |||
177 178 179 180 181 182 183 | [IFUNDEF] child+ : child+ ( o -- ) o over >o to parent-w o> childs[] >stack ; [THEN] Create ke-imports#rgb Create imports#rgb-bg | | | | | 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | [IFUNDEF] child+ : child+ ( o -- ) o over >o to parent-w o> childs[] >stack ; [THEN] Create ke-imports#rgb Create imports#rgb-bg $33EE33FF , \ myself is pretty green $66CC66FF , \ manually imported is green, too $55DD55FF , \ scanned is more green $CCEE55FF , \ seen in chat is more yellow $EECC55FF , \ imported from DHT is pretty yellow $FF8844FF , \ invited is very yellow $FF0000FF , \ untrusted is last Create imports#rgb-fg $003300FF , $000000FF , $000000FF , $000000FF , |
︙ | ︙ |