diff --git a/download/index.html b/download/index.html index 6651bf3a7..8d950bcf7 100644 --- a/download/index.html +++ b/download/index.html @@ -6,6 +6,7 @@
gf-bin-3.1.6-i386-linux.gz
+ (1.7 MB)
gf-lib-3.1.6.tar.gz
+ (4.4 MB)
gf-src-3.1.6.tar.gz
+ (11 MB)
-What's new? See the release notes. +What's new? See the release notes.
@@ -41,23 +48,14 @@ The Windows package is installed by just unpacking it anywhere.
It finds the libraries relative to the .exe file.
-To install a binary package for Linux: uncompress the package by tar -xfz
-
-To compile and install from source on Mac or Linux, do:
+To install a binary package for Linux: uncompress the executable and
+put it somewhere on your path, renaming it to just gf. For instance:
- tar xvfz gf-[VERSION].tgz - cd GF/src - runghc Setup configure --user - runghc Setup build - runghc Setup install + gunzip gf-bin-[version].gz + sudo mv gf-bin-[version] /usr/local/bin/gf
-The last command must be prefixed by sudo, if the installation is outside
-user-writeable area.
-
To install the libraries (if done separately), unpack them in the place to which your
GF_LIB_PATH points.
+To compile and install from source on Mac or Linux, do: +
++ tar xvfz gf-[VERSION].tgz + cd GF/src + runghc Setup configure --user + runghc Setup build + runghc Setup install ++
+The last command must be prefixed by sudo, if the installation is outside
+user-writeable area.
+
+The binaries now work out of the box for each platform and support +completions (file names and parsing), because readline has been +changed to haskeline. +
++To compile from source, GHC 6.12 is now required. But GHC is not needed +if the binary executables are used. +
+
+Binaries (.gfo and .pgf files) compiled with GF 3.1 are incompatible
+with 3.1.6 and must either be removed; alternatively, the -src flag can be
+used when compiling.
+
+Notice the new place to send bug reports (see GF's welcome message)! +
++Grammar language +
+SUMO,
+ category-theory and nqueens in examples)
+
+Shell commands and options (see help in GF for more information)
+
eb: example-based grammar file conversion
+ (see examples/animals/QuestionI.gf)
+vd = visualize_dependency: show dependency tree
+vp = visualize_parse: show parse tree
+gr, gt, mq, tq: use a seed tree with metavariables
+gr, p, tq: use -probs=FILE to bias or rank generated trees
+dg: hide modules when printing dependency graph
++Libraries +
++Examples +
++Internal +
++Javascript generation is not updated to the new PGF format. +GF 3.1 should still be used for building Javascript applications. +
+ + + + diff --git a/download/release-3.1.6.txt b/download/release-3.1.6.txt index c8263ffbb..843499757 100644 --- a/download/release-3.1.6.txt +++ b/download/release-3.1.6.txt @@ -1,5 +1,5 @@ GF Version 3.1.6 Release Notes - +23 April 2010 =Installation= @@ -53,6 +53,12 @@ Internal - unicode support from Haskell 6.12 instead of home-made coding +==Issues== + +Javascript generation is not updated to the new PGF format. +[GF 3.1 old-index.html] should still be used for building Javascript applications. + +