Overview
Comment: | Tcl Nano v1.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.0 |
Files: | files | file ages | folders |
SHA3-256: |
069a5e3abe1b58898f283599696ced9d |
User & Date: | rkeene on 2018-07-10 00:13:03 |
Other Links: | manifest | tags |
Context
2018-07-10
| ||
00:33 | Better formatting of Downloads wiki page check-in: 7e81c41b70 user: rkeene tags: trunk | |
00:13 | Tcl Nano v1.0 check-in: 069a5e3abe user: rkeene tags: trunk, 1.0 | |
00:06 | Corrected archive release name check-in: 0ba8b229dd user: rkeene tags: trunk | |
Changes
Added HEADER version [7655dadf01].
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 | @@UTIL@@ @@VERS@@ ================= Release information ------------------- - pkg: @@UTIL@@ version @@VERS@@ - url: https://chiselapp.com/user/rkeene/repository/tcl-nano/ - date: @@DATE@@ |
Added README.md version [e1c114dff2].
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | Tcl Nano ======== [Nano](https://nano.org) ------------------------ Nano is a low-latency payment platform that requires minimal resources; making Nano ideal for peer-to-peer transactions. [Tcl](https://www.tcl-lang.org/) -------------------------------- Tcl (Tool Command Language) is a very powerful but easy to learn dynamic programming language, suitable for a very wide range of uses, including web and desktop applications, networking, administration, testing and many more. Open source and business-friendly, Tcl is a mature yet evolving language that is truly cross platform, easily deployed and highly extensible. Tcl Nano -------- Tcl Nano implements a few different facets of Nano in Tcl, as well as allows for interoperating with other Nano implementations. - [Downloads](/wiki/Downloads) - [Manual](/wiki/Manual) |
Modified build/makearch.info from [97e70ed70e] to [73fd0e110e].
︙ | ︙ | |||
20 21 22 23 24 25 26 | # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README.md" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. UPDATE_VARS="nano.man" # This script is executed immediately after copying the files |
︙ | ︙ |
Modified configure.ac from [7717cae238] to [e0fd0d4949].
1 | dnl Define ourselves | | | 1 2 3 4 5 6 7 8 9 | dnl Define ourselves AC_INIT(tcl-nano, 1.0) dnl Checks for programs. AC_PROG_CC AC_PROG_MAKE_SET AC_PROG_INSTALL AC_GNU_SOURCE |
︙ | ︙ |