From 2d85550e5466c18f248321f7eab333025098ea53 Mon Sep 17 00:00:00 2001 From: Thomas Hallgren Date: Fri, 11 Aug 2017 21:11:24 +0200 Subject: Final changes before the release of GF 3.9 --- bin/build-binary-dist.sh | 0 bin/gfmap | 0 bin/update_html | 0 debian/changelog | 6 ++ download/index-3.8.t2t | 178 +++++++++++++++++++++++++++++++++++++++++++++ download/index-next.t2t | 180 ---------------------------------------------- download/index.t2t | 79 ++++++++++---------- download/release-3.9.t2t | 73 +++++++++++++++++++ download/release-next.t2t | 80 --------------------- gf.cabal | 2 +- index.html | 4 +- src/runtime/c/setup.sh | 0 12 files changed, 302 insertions(+), 300 deletions(-) mode change 100644 => 100755 bin/build-binary-dist.sh mode change 100644 => 100755 bin/gfmap mode change 100644 => 100755 bin/update_html create mode 100644 download/index-3.8.t2t delete mode 100644 download/index-next.t2t create mode 100644 download/release-3.9.t2t delete mode 100644 download/release-next.t2t mode change 100644 => 100755 src/runtime/c/setup.sh diff --git a/bin/build-binary-dist.sh b/bin/build-binary-dist.sh old mode 100644 new mode 100755 diff --git a/bin/gfmap b/bin/gfmap old mode 100644 new mode 100755 diff --git a/bin/update_html b/bin/update_html old mode 100644 new mode 100755 diff --git a/debian/changelog b/debian/changelog index 476d09d0b..b3cb6db35 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gf (3.9-1) vivid xenial zesty; urgency=low + + * GF 3.9 + + -- Thomas Hallgren Fri, 11 Aug 2017 20:00:00 +0200 + gf (3.8-1) precise trusty vivid; urgency=low * GF 3.8 diff --git a/download/index-3.8.t2t b/download/index-3.8.t2t new file mode 100644 index 000000000..1222cdff1 --- /dev/null +++ b/download/index-3.8.t2t @@ -0,0 +1,178 @@ +Grammatical Framework Download and Installation + + +%!style:../css/notes.css +%!postproc(html): <meta name = "viewport" content = "width = device-width"><TITLE> +%!postproc(html): <H1> <H1><a href="../"><IMG src="../doc/Logos/gf0.png"></a> +%!postproc(html): <TD><I> <TD><small> +%!postproc(html): </I></TD> </small></TD> + +**GF 3.8** was released on 22 June 2016. + +What's new? See the [Release notes release-3.8.html]. + + +== Binary packages == + +|| Platform | Download | Features | How to install +| Mac OS X | [gf-3.8.pkg gf-3.8.pkg] | //GF+S+C+P// | Double-click on the package icon (*) +| Mac OS X | [gf-3.8-bin-intel-mac.tar.gz gf-3.8-bin-intel-mac.tar.gz] | //GF+S+C+P// | ``sudo tar -C /usr/local -zxf gf-3.8-bin-intel-mac.tar.gz`` +%| Fedora (32-bit) | [Fedora RPMs /~hallgren/tmp/Fedora/] | //GF+S+C+J+P// | ``sudo rpm -i ...`` +| Ubuntu (32-bit) | [gf_3.8-1_i386.deb gf_3.8-1_i386.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.8-1_i386.deb`` +| Ubuntu (64-bit) | [gf_3.8-1_amd64.deb gf_3.8-1_amd64.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.8-1_amd64.deb`` +| Windows | [gf-3.8-bin-windows.zip gf-3.8-bin-windows.zip] | //GF+S// | ``unzip gf-3.8-bin-windows.zip`` +%| MINGW | [gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz] | //GF+S+C// | ``tar -C / gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz`` +%| ... | ... | ... | ... + +Features: GF = GF shell and grammar compiler and the Resource Grammar Library, +S = ``gf -server`` mode, +C = C run-time system, +J/P = Java/Python binding to the C run-time system + +%More binary packages might be added later. + +===Notes=== + +The Windows package is installed by just unpacking it anywhere. +%It finds the libraries relative to the ``.exe`` file. +You will probably need to set the ``PATH`` and ``GF_LIB_PATH`` environment +variables, see Inari's notes on +[Installing GF on Windows http://www.grammaticalframework.org/~inari/gf-windows.html#toc3]. + +%The new experimental MINGW package is for use in the +%[MINGW http://www.mingw.org] environment in Windows. Unpack it in the MSYS shell +%(which is started with ``C:\MinGW\msys\1.0\msys.bat``). +%It should work out of the box without any additional settings. + +The ``.deb`` packages should work on Ubuntu 12.04, 14.04 and 16.04 and similar +Linux distributions. + +The packages for Mac OS X should work on at least 10.9, 10.10 and 10.11 (Mavericks, Yosemite and El Capitan). + +(*) **Note** that for compatibility with OS X 10.11, +``gf-3.8.pkg`` will install the ``gf`` executable in ``/usr/local/bin`` +instead of ``/usr/bin``, so make sure ``/usr/local/bin`` is in your ``$PATH``. +Also, if you still have an older version of GF installed in ``/usr/bin``, +remove it and/or make sure ``/usr/local/bin`` comes before ``/usr/bin`` +in your ``$PATH`` so you don't accidentally run the old version. + +The Mac OS and Linux ``.tar.gz`` packages are designed to be installed in +``/usr/local``. +You can install them in other locations, but then you need to set the +``GF_LIB_PATH`` environment variable: + +``` + export GF_LIB_PATH=/usr/local/share/gf-3.8/lib +``` + +where ``/usr/local`` should be replaced with the path to the location where you +unpacked the package. + + +==Installing the latest release from source== + +[GF is on Hackage http://hackage.haskell.org/package/gf], so under normal +circumstances the prodedure is fairly simple: + ++ Install a recent version of the + [Haskell Platform http://hackage.haskell.org/platform], + e.g. version 7.10.3 (see note 2 below) ++ ``cabal update`` ++ On Linux: install some C libraries from your Linux distribution + (see note 1 below) ++ ``cabal install gf`` + + +You can also download the full source package from here: +[``gf-3.8.tar.gz`` gf-3.8.tar.gz]. + +=== Notes === + +The above steps installs GF for a single user. +% and does not require root privileges. +The executables are put in ``$HOME/.cabal/bin`` +(or, with recent versions of the Haskell platform on Mac OS X, +in ``$HOME/Library/Haskell/bin``), so it is a good +idea to put a line in your ``.bash_profile`` or ``.profile`` +to add that directory to you path: + +``` + PATH=$HOME/.cabal/bin:$PATH +``` +or +``` + PATH=$HOME/Library/Haskell/bin:$PATH +``` + +**Note 1**. +GF uses [``haskeline`` http://hackage.haskell.org/package/haskeline], which +on Linux depends on some non-Haskell libraries that +won't be installed automatically by cabal, and therefore need to be installed +manually. Here is one way to do this: + +- On Ubuntu: ``sudo apt-get install libghc-haskeline-dev`` +- On Fedora: ``sudo yum install ghc-haskeline-devel`` + + +**Note 2**. +The GF source code has been updated to compile with GHC 8.0.1. Using older +versions of GHC (7.10.3, 7.10.2, 7.8, 7.6) should work too. + +=== Known problems === + +There seems to be a bug in some versions of Cabal that can cause + +``` + Distribution/Simple/PackageIndex.hs:124:8-13: Assertion failed +``` + +if the same version of GF is +already installed. If you encounter this, you can use ``ghc-pkg unregister gf`` +to remove the installed version of GF and ``ghc-pkg list gf`` to verify that +it is gone. + +==Installing from the latest developer source code== + +The first time: +%, assuming you already have the Haskell Platform and darcs + +``` + darcs get --lazy http://www.grammaticalframework.org/ GF + cd GF + cabal install +``` + +Subsequently: + +``` + cd GF + darcs pull -a + cabal install +``` + +Alternatively, you can get the code from the +[GF GitHub https://github.com/GrammaticalFramework/GF/] mirror, which is +updated nightly. + +The above notes for installing from source apply also in these cases. +For more info on working with the GF source code, see the +[GF Developers Guide ../doc/gf-developers.html]. + +==Older releases== + +- [GF 3.7.1 index-3.7.1.html] (October 2015) +- [GF 3.7 index-3.7.html] (June 2015) +- [GF 3.6 index-3.6.html] (June 2014) +- [GF 3.5 index-3.5.html] (August 2013) +- [GF 3.4 index-3.4.html] (January 2013). +- [GF 3.3.3 index-3.3.3.html] (March 2012). +- [GF 3.3 index-3.3.html] (October 2011). +- [GF 3.2.9 index-3.2.9.html] source-only snapshot (September 2011). +- [GF 3.2 index-3.2.html] (December 2010). +- [GF 3.1.6 index-3.1.6.html] (April 2010). +- [GF 3.1 old-index.html] (December 2009). + + +-------------------- + +[www.grammaticalframework.org http://www.grammaticalframework.org] diff --git a/download/index-next.t2t b/download/index-next.t2t deleted file mode 100644 index 4f44ccc5b..000000000 --- a/download/index-next.t2t +++ /dev/null @@ -1,180 +0,0 @@ -Grammatical Framework Download and Installation - - -%!style:../css/notes.css -%!postproc(html): <TITLE> <meta name = "viewport" content = "width = device-width"><TITLE> -%!postproc(html): <H1> <H1><a href="../"><IMG src="../doc/Logos/gf0.png"></a> -%!postproc(html): <TD><I> <TD><small> -%!postproc(html): </I></TD> </small></TD> - -**GF 3.9** will be released on ?? August 2017. - -What's new? See the [Release notes release-3.9.html]. - - -== Binary packages == - -|| Platform | Download | Features | How to install -| macOS | [gf-3.9.pkg gf-3.9.pkg] | //GF+S+C+J+P// | Double-click on the package icon (*) -| macOS | [gf-3.9-bin-intel-mac.tar.gz gf-3.9-bin-intel-mac.tar.gz] | //GF+S+C+J+P// | ``sudo tar -C /usr/local -zxf gf-3.9-bin-intel-mac.tar.gz`` -%| Fedora (32-bit) | [Fedora RPMs /~hallgren/tmp/Fedora/] | //GF+S+C+J+P// | ``sudo rpm -i ...`` -| Ubuntu (32-bit) | [gf_3.9-1_i386.deb gf_3.9-1_i386.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.9-1_i386.deb`` -| Ubuntu (64-bit) | [gf_3.9-1_amd64.deb gf_3.9-1_amd64.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.9-1_amd64.deb`` -| Windows | [gf-3.9-bin-windows.zip gf-3.9-bin-windows.zip] | //GF+S// | ``unzip gf-3.9-bin-windows.zip`` -%| MINGW | [gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz] | //GF+S+C// | ``tar -C / gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz`` -%| ... | ... | ... | ... - -Features: GF = GF shell and grammar compiler and the Resource Grammar Library, -S = ``gf -server`` mode, -C = C run-time system, -J/P = Java/Python binding to the C run-time system - -%More binary packages might be added later. - -===Notes=== - -The Windows package is installed by just unpacking it anywhere. -%It finds the libraries relative to the ``.exe`` file. -You will probably need to set the ``PATH`` and ``GF_LIB_PATH`` environment -variables, see Inari's notes on -[Installing GF on Windows http://www.grammaticalframework.org/~inari/gf-windows.html#toc3]. - -%The new experimental MINGW package is for use in the -%[MINGW http://www.mingw.org] environment in Windows. Unpack it in the MSYS shell -%(which is started with ``C:\MinGW\msys\1.0\msys.bat``). -%It should work out of the box without any additional settings. - -The ``.deb`` packages should work on Ubuntu 16.04 and 17.04 and similar -Linux distributions. - -The packages for macOS (Mac OS X) should work on at -least 10.11 and 10.12 (El Capitan and Sierra). - -(*) **Note** that for compatibility with OS X 10.11 and newer, -``gf-3.9.pkg`` will install the ``gf`` executable in ``/usr/local/bin`` -instead of ``/usr/bin``, so make sure ``/usr/local/bin`` is in your ``$PATH``. -Also, if you still have an older version of GF installed in ``/usr/bin``, -remove it and/or make sure ``/usr/local/bin`` comes before ``/usr/bin`` -in your ``$PATH`` so you don't accidentally run the old version. - -The Mac OS and Linux ``.tar.gz`` packages are designed to be installed in -``/usr/local``. -You can install them in other locations, but then you need to set the -``GF_LIB_PATH`` environment variable: - -``` - export GF_LIB_PATH=/usr/local/share/gf-3.9/lib -``` - -where ``/usr/local`` should be replaced with the path to the location where you -unpacked the package. - - -==Installing the latest release from source== - -[GF is on Hackage http://hackage.haskell.org/package/gf], so under normal -circumstances the prodedure is fairly simple: - -+ Install a recent version of the - [Haskell Platform http://hackage.haskell.org/platform], - e.g. version 7.10.3 (see note 2 below) -+ ``cabal update`` -+ On Linux: install some C libraries from your Linux distribution - (see note 1 below) -+ ``cabal install gf`` - - -You can also download the full source package from here: -[``gf-3.9.tar.gz`` gf-3.9.tar.gz]. - -=== Notes === - -The above steps installs GF for a single user. -% and does not require root privileges. -The executables are put in ``$HOME/.cabal/bin`` -(or, with recent versions of the Haskell platform on Mac OS X, -in ``$HOME/Library/Haskell/bin``), so it is a good -idea to put a line in your ``.bash_profile`` or ``.profile`` -to add that directory to you path: - -``` - PATH=$HOME/.cabal/bin:$PATH -``` -or -``` - PATH=$HOME/Library/Haskell/bin:$PATH -``` - -**Note 1**. -GF uses [``haskeline`` http://hackage.haskell.org/package/haskeline], which -on Linux depends on some non-Haskell libraries that -won't be installed automatically by cabal, and therefore need to be installed -manually. Here is one way to do this: - -- On Ubuntu: ``sudo apt-get install libghc-haskeline-dev`` -- On Fedora: ``sudo yum install ghc-haskeline-devel`` - - -**Note 2**. -The GF source code has been updated to compile with GHC 8.2.1. Using older -versions of GHC (e.g. 8.0.x and 7.10.3) should still work too. - -%=== Known problems === -% -%There seems to be a bug in some versions of Cabal that can cause -% -%``` -% Distribution/Simple/PackageIndex.hs:124:8-13: Assertion failed -%``` -% -%if the same version of GF is -%already installed. If you encounter this, you can use ``ghc-pkg unregister gf`` -%to remove the installed version of GF and ``ghc-pkg list gf`` to verify that -%it is gone. - -==Installing from the latest developer source code== - -The first time: -%, assuming you already have the Haskell Platform and darcs - -``` - git clone https://github.com/GrammaticalFramework/GF.git - cd GF - cabal install -``` - -Subsequently: - -``` - cd GF - git pull - cabal install -``` - -%Alternatively, you can get the code from the -%[GF GitHub https://github.com/GrammaticalFramework/GF/] mirror, which is -%updated nightly. - -The above notes for installing from source apply also in these cases. -For more info on working with the GF source code, see the -[GF Developers Guide ../doc/gf-developers.html]. - -==Older releases== - -- [GF 3.8 index-3.8.html] (June 2016) -- [GF 3.7.1 index-3.7.1.html] (October 2015) -- [GF 3.7 index-3.7.html] (June 2015) -- [GF 3.6 index-3.6.html] (June 2014) -- [GF 3.5 index-3.5.html] (August 2013) -- [GF 3.4 index-3.4.html] (January 2013). -- [GF 3.3.3 index-3.3.3.html] (March 2012). -- [GF 3.3 index-3.3.html] (October 2011). -- [GF 3.2.9 index-3.2.9.html] source-only snapshot (September 2011). -- [GF 3.2 index-3.2.html] (December 2010). -- [GF 3.1.6 index-3.1.6.html] (April 2010). -- [GF 3.1 old-index.html] (December 2009). - - --------------------- - -[www.grammaticalframework.org http://www.grammaticalframework.org] diff --git a/download/index.t2t b/download/index.t2t index 1222cdff1..1fc8f0681 100644 --- a/download/index.t2t +++ b/download/index.t2t @@ -7,21 +7,22 @@ Grammatical Framework Download and Installation %!postproc(html): <TD><I> <TD><small> %!postproc(html): </I></TD> </small></TD> -**GF 3.8** was released on 22 June 2016. +**GF 3.9** was released on 11 August 2017. -What's new? See the [Release notes release-3.8.html]. +What's new? See the [Release notes release-3.9.html]. == Binary packages == || Platform | Download | Features | How to install -| Mac OS X | [gf-3.8.pkg gf-3.8.pkg] | //GF+S+C+P// | Double-click on the package icon (*) -| Mac OS X | [gf-3.8-bin-intel-mac.tar.gz gf-3.8-bin-intel-mac.tar.gz] | //GF+S+C+P// | ``sudo tar -C /usr/local -zxf gf-3.8-bin-intel-mac.tar.gz`` +| macOS | [gf-3.9.pkg gf-3.9.pkg] | //GF+S+C+J+P// | Double-click on the package icon +| macOS | [gf-3.9-bin-intel-mac.tar.gz gf-3.9-bin-intel-mac.tar.gz] | //GF+S+C+J+P// | ``sudo tar -C /usr/local -zxf gf-3.9-bin-intel-mac.tar.gz`` %| Fedora (32-bit) | [Fedora RPMs /~hallgren/tmp/Fedora/] | //GF+S+C+J+P// | ``sudo rpm -i ...`` -| Ubuntu (32-bit) | [gf_3.8-1_i386.deb gf_3.8-1_i386.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.8-1_i386.deb`` -| Ubuntu (64-bit) | [gf_3.8-1_amd64.deb gf_3.8-1_amd64.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.8-1_amd64.deb`` -| Windows | [gf-3.8-bin-windows.zip gf-3.8-bin-windows.zip] | //GF+S// | ``unzip gf-3.8-bin-windows.zip`` -%| MINGW | [gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz] | //GF+S+C// | ``tar -C / gf-3.8-bin-i686-MINGW32_NT-6.1.tar.gz`` +%| Raspian 8.0 | [gf_3.9-1_armhf.deb gf_3.9-1_armhf.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.9-1_armhf.deb`` +| Ubuntu (32-bit) | [gf_3.9-1_i386.deb gf_3.9-1_i386.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.9-1_i386.deb`` +| Ubuntu (64-bit) | [gf_3.9-1_amd64.deb gf_3.9-1_amd64.deb] | //GF+S+C+J+P// | ``sudo dpkg -i gf_3.9-1_amd64.deb`` +| Windows | [gf-3.9-bin-windows.zip gf-3.9-bin-windows.zip] | //GF+S// | ``unzip gf-3.9-bin-windows.zip`` +%| MINGW | [gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz] | //GF+S+C// | ``tar -C / gf-3.9-bin-i686-MINGW32_NT-6.1.tar.gz`` %| ... | ... | ... | ... Features: GF = GF shell and grammar compiler and the Resource Grammar Library, @@ -44,17 +45,18 @@ variables, see Inari's notes on %(which is started with ``C:\MinGW\msys\1.0\msys.bat``). %It should work out of the box without any additional settings. -The ``.deb`` packages should work on Ubuntu 12.04, 14.04 and 16.04 and similar +The ``.deb`` packages should work on Ubuntu 16.04 and 17.04 and similar Linux distributions. -The packages for Mac OS X should work on at least 10.9, 10.10 and 10.11 (Mavericks, Yosemite and El Capitan). +The packages for macOS (Mac OS X) should work on at +least 10.11 and 10.12 (El Capitan and Sierra). -(*) **Note** that for compatibility with OS X 10.11, -``gf-3.8.pkg`` will install the ``gf`` executable in ``/usr/local/bin`` -instead of ``/usr/bin``, so make sure ``/usr/local/bin`` is in your ``$PATH``. -Also, if you still have an older version of GF installed in ``/usr/bin``, -remove it and/or make sure ``/usr/local/bin`` comes before ``/usr/bin`` -in your ``$PATH`` so you don't accidentally run the old version. +%(*) **Note** that for compatibility with OS X 10.11 and newer, +%``gf-3.9.pkg`` will install the ``gf`` executable in ``/usr/local/bin`` +%instead of ``/usr/bin``, so make sure ``/usr/local/bin`` is in your ``$PATH``. +%Also, if you still have an older version of GF installed in ``/usr/bin``, +%remove it and/or make sure ``/usr/local/bin`` comes before ``/usr/bin`` +%in your ``$PATH`` so you don't accidentally run the old version. The Mac OS and Linux ``.tar.gz`` packages are designed to be installed in ``/usr/local``. @@ -62,7 +64,7 @@ You can install them in other locations, but then you need to set the ``GF_LIB_PATH`` environment variable: ``` - export GF_LIB_PATH=/usr/local/share/gf-3.8/lib + export GF_LIB_PATH=/usr/local/share/gf-3.9/lib ``` where ``/usr/local`` should be replaced with the path to the location where you @@ -84,7 +86,7 @@ circumstances the prodedure is fairly simple: You can also download the full source package from here: -[``gf-3.8.tar.gz`` gf-3.8.tar.gz]. +[``gf-3.9.tar.gz`` gf-3.9.tar.gz]. === Notes === @@ -115,21 +117,21 @@ manually. Here is one way to do this: **Note 2**. -The GF source code has been updated to compile with GHC 8.0.1. Using older -versions of GHC (7.10.3, 7.10.2, 7.8, 7.6) should work too. - -=== Known problems === - -There seems to be a bug in some versions of Cabal that can cause - -``` - Distribution/Simple/PackageIndex.hs:124:8-13: Assertion failed -``` - -if the same version of GF is -already installed. If you encounter this, you can use ``ghc-pkg unregister gf`` -to remove the installed version of GF and ``ghc-pkg list gf`` to verify that -it is gone. +The GF source code has been updated to compile with GHC 8.2.1. Using older +versions of GHC (e.g. 8.0.x and 7.10.3) should still work too. + +%=== Known problems === +% +%There seems to be a bug in some versions of Cabal that can cause +% +%``` +% Distribution/Simple/PackageIndex.hs:124:8-13: Assertion failed +%``` +% +%if the same version of GF is +%already installed. If you encounter this, you can use ``ghc-pkg unregister gf`` +%to remove the installed version of GF and ``ghc-pkg list gf`` to verify that +%it is gone. ==Installing from the latest developer source code== @@ -137,7 +139,7 @@ The first time: %, assuming you already have the Haskell Platform and darcs ``` - darcs get --lazy http://www.grammaticalframework.org/ GF + git clone https://github.com/GrammaticalFramework/GF.git cd GF cabal install ``` @@ -146,13 +148,13 @@ Subsequently: ``` cd GF - darcs pull -a + git pull cabal install ``` -Alternatively, you can get the code from the -[GF GitHub https://github.com/GrammaticalFramework/GF/] mirror, which is -updated nightly. +%Alternatively, you can get the code from the +%[GF GitHub https://github.com/GrammaticalFramework/GF/] mirror, which is +%updated nightly. The above notes for installing from source apply also in these cases. For more info on working with the GF source code, see the @@ -160,6 +162,7 @@ For more info on working with the GF source code, see the ==Older releases== +- [GF 3.8 index-3.8.html] (June 2016) - [GF 3.7.1 index-3.7.1.html] (October 2015) - [GF 3.7 index-3.7.html] (June 2015) - [GF 3.6 index-3.6.html] (June 2014) diff --git a/download/release-3.9.t2t b/download/release-3.9.t2t new file mode 100644 index 000000000..fc1e71447 --- /dev/null +++ b/download/release-3.9.t2t @@ -0,0 +1,73 @@ +GF 3.9 Release Notes +August 2017 + +%!style:../css/notes.css +%!postproc(html): <TITLE> <meta charset="UTF-8"><meta name = "viewport" content = "width = device-width"> <TITLE> +%!postproc(html): <H1> <H1><a href="../"><IMG src="../doc/Logos/gf0.png"></a> + +==Installation== + +See the [download page http://www.grammaticalframework.org/download/index.html]. + + +==What's new== + +The [GF repository on GitHub https://github.com/GrammaticalFramework/GF/] +is now our master source repository, not just a read-only mirror. +Bug reports and feature requests can be submitted to the +[issue tracker https://github.com/GrammaticalFramework/GF/issues], +and we also accept pull requests. + +Over 200 changes have been pushed to the source repository since +[the release of GF 3.8 release-3.8.html] in June 2016. + + +===GF compiler and run-time library=== + + +====New features and notable changes==== + +- Support for language-specific depencency configurations (in addition to abstract syntax based ones); see ``help vd`` in the GF shell + +- An experimental support for sentence lookup which makes it possible +to find the sentence from the grammar that matches best a set of keywords. +Right now it is usable only with controlled languages since it might be +very innefficient for some grammars. + +- A new .NET binding for the GF runtime is available. + +- The API in the Java binding is extended and it covers more from +the full functionality of the C runtime. + + +====Changes of interest to compiler developers==== + +- The compiler source code has been updated for compatibility with GHC 8.2.1. + + +===Resource Grammar Library=== + +- New languages: + - Icelandic + - Norwegian Nynorsk + + +- API now usable for incomplete languages via ``Missing`` modules: + implemented for Arabic and Latin. +- Punctuation with ``BIND`` and ``SOFT_BIND`` tokens for a number of languages + + +- Various fixes for several languages. + +- Various fixes in the translation dictionaries. + + +===Apps and Cloud services=== + +- PGF service: support for language-specific depencency configurations in + ``command=deptree``. + + +-------------------- + +[www.grammaticalframework.org http://www.grammaticalframework.org] diff --git a/download/release-next.t2t b/download/release-next.t2t deleted file mode 100644 index 6dad61389..000000000 --- a/download/release-next.t2t +++ /dev/null @@ -1,80 +0,0 @@ -GF 3.9 Release Notes -August 2017 - -%!style:../css/notes.css -%!postproc(html): <TITLE> <meta charset="UTF-8"><meta name = "viewport" content = "width = device-width"> <TITLE> -%!postproc(html): <H1> <H1><a href="../"><IMG src="../doc/Logos/gf0.png"></a> - -==Installation== - -See the [download page http://www.grammaticalframework.org/download/index.html]. - - -==What's new== - -The [GF repository on GitHub https://github.com/GrammaticalFramework/GF/] -is now our master source repository, not just a read-only mirror. -Bug reports and feature requests can be submitted to the -[issue tracker https://github.com/GrammaticalFramework/GF/issues], -and we also accept pull requests. - -Over 200 changes have been pushed to the source repository since -[the release of GF 3.8 release-3.8.html] in June 2016. - - -===GF compiler and run-time library=== - -- An experimental support for sentence lookup which makes it possible -to find the sentence from the grammar that matches best a set of keywords. -Right now it is usable only with controlled languages since it might be -very innefficient for some grammars. - -- A new .NET binding for the GF runtime is available. - -- The API in the Java binding is extended and it covers more from -the full functionality of the C runtime. - -====New features and notable changes==== - -- Support for language-specific depencency configurations (in addition to abstract syntax based ones); see ``help vd`` in the GF shell - - -====Other changes and bug fixes==== - -- ... - - -====Changes of interest to compiler developers==== - -- The compiler source code has been updated for compatibility with GHC 8.2.1 - - -===Resource Grammar Library=== - -- New languages: - - Icelandic - - Norwegian Nynorsk - - -- API now usable for incomplete languages via ``Missing`` modules: - implemented for Arabic and Latin. -- Punctuation with ``BIND`` and ``SOFT_BIND`` tokens for a number of languages - - -- Various fixes for several languages. - - ... - - -- Numerous fixes in the translation dictionaries. - - ... - - -===Apps and Cloud services=== - -- PGF service: support for language-specific depencency configurations in - ``command=deptree``. -- ... - --------------------- - -[www.grammaticalframework.org http://www.grammaticalframework.org] diff --git a/gf.cabal b/gf.cabal index 92e041799..38dc6ddb9 100644 --- a/gf.cabal +++ b/gf.cabal @@ -1,5 +1,5 @@ name: gf -version: 3.8-darcs +version: 3.9 cabal-version: >= 1.10 build-type: Custom diff --git a/index.html b/index.html index 050de9c31..824dfe23a 100644 --- a/index.html +++ b/index.html @@ -81,7 +81,7 @@ function sitesearch() { <li><a href="http://ci.zjyto.net/job/GF/job/Build/"><img src="http://ci.zjyto.net/job/GF/job/Build/badge/icon" alt="GF build status"></a> --> <li><a href="doc/gf-developers.html">GF Developers Guide</a> - <li><A HREF="https://github.com/GrammaticalFramework/GF/">GitHub mirror</A> + <li><A HREF="https://github.com/GrammaticalFramework/GF/">GF on GitHub</A> <li><A HREF="https://github.com/GrammaticalFramework/gf-contrib/">Contibutions GitHub</A> <li><A HREF="http://code.google.com/p/grammatical-framework/wiki/SideBar?tm=6">Wiki</A> <li><a href="/~hallgren/gf-experiment/browse/">Browse Source Code</a> @@ -120,6 +120,8 @@ document.write('<div style="float: right; margin-top: 3ex;"> <form onsubmit="re <div class=news2> <table class=news> +<tr><td>2016-08-11:<td><strong>GF 3.9 released!</strong> + <a href="download/release-3.9.html">Release notes</a>. <tr><td>2017-06-29:<td>GF is moving to <a href="https://github.com/GrammaticalFramework/GF/">GitHub</a>! <tr><td>2017-03-13:<td><strong>GF Summer School in Riga (Latvia), 14-25 August 2017</strong> <a href="http://school.grammaticalframework.org/2017/">Summer diff --git a/src/runtime/c/setup.sh b/src/runtime/c/setup.sh old mode 100644 new mode 100755 -- cgit v1.2.3