| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-06-27 | GF.Server: add 'import Control.Applicative' for compatibilit with GHC<7.10 | Thomas Hallgren | |
| One could also add stricter version constraints in gf.cabal, e.g. base>=4.8 (implies GHC>=7.10) if we want to only support building with GHC>=7.10. | |||
| 2018-06-27 | undo the partial fix for word completion since it breaks normal parsing | Krasimir Angelov | |
| 2018-06-20 | a simple fix for the linearizer | Krasimir Angelov | |
| 2018-06-20 | Revert "when linearizing missing functions with brackets, the name of the ↵ | Krasimir Angelov | |
| function should still be reported" This reverts commit 18204bdd25bd460904ac475f3ea340daa96589df. | |||
| 2018-06-20 | Revert "forgot to switch off the debugger" | Krasimir Angelov | |
| This reverts commit 5919dfa3366dfd2f2af8c3ce7749d066a2033f0d. | |||
| 2018-06-20 | forgot to switch off the debugger | Krasimir Angelov | |
| 2018-06-20 | when linearizing missing functions with brackets, the name of the function ↵ | Krasimir Angelov | |
| should still be reported | |||
| 2018-06-20 | added bracketedLinearizeAll | Krasimir Angelov | |
| 2018-06-20 | bracketedLinearize in Haskell now emits the BIND constructor like in Java | Krasimir Angelov | |
| 2018-06-15 | Split gftest to a new repo | Inari Listenmaa | |
| 2018-06-13 | Add TypeScript type definitions for gflib.js | John J. Camilleri | |
| 2018-06-12 | added transliteration arabic_unvocalized, which omits the vowels | Aarne Ranta | |
| 2018-06-12 | (gftest) Compare also functions of arity 0 + custom startcat for comparison | Inari Listenmaa | |
| 2018-06-04 | * update GF mode | odanoburu | |
| - moved to new repo at https://github.com/GrammaticalFramework/gf-emacs-mode - main changes: - use utf-8 encoding for inferior gf process - add display of operation types - update links | |||
| 2018-05-28 | Merge branch 'master' of https://github.com/GrammaticalFramework/GF | Krasimir Angelov | |
| 2018-05-28 | added comment for Windows | Krasimir Angelov | |
| 2018-05-28 | some tweaks for Windows | Krasimir Angelov | |
| 2018-05-24 | (gftest) Add --show-context + combine -o with -f,-c,-b | Inari Listenmaa | |
| 2018-05-24 | spell error in py.egs.README | Prasanth Kolachina | |
| 2018-05-24 | add bracketLinearizeAll for variants | Prasanth Kolachina | |
| 2018-05-22 | (gftest) Multiple concrete categories for context generation | Inari Listenmaa | |
| 2018-05-21 | (gftest) Better pruning + add new command line option | Inari Listenmaa | |
| 2018-05-21 | fixed typo which broke the compilation on Windows | Krasimir Angelov | |
| 2018-05-21 | Merge branch 'master' of https://github.com/GrammaticalFramework/GF | Krasimir Angelov | |
| 2018-05-21 | fix the compilation when the byte order cannot be detected statically | Krasimir Angelov | |
| 2018-05-21 | Update info about path to jni.h in Java binding install notes | John J. Camilleri | |
| 2018-05-21 | Missing -I in Java bindings Makefile | John J. Camilleri | |
| 2018-04-18 | Fixes for GHC 8.4.1 compatibility | Thomas Hallgren | |
| * In GHC 8.4.1, the operator <> has become a method of the Semigroup class and is exported from the Prelude. This is unfortunate, since <> is also exported from the standard library module Text.PrettyPrint, so in any module that defines a pretty printer, there is likely to be an ambiguity. This affects ~18 modules in GF. Solution: import Prelude hiding (<>) This works also in older versions of GHC, since GHC does't complain if you hide something that doesn't exists. * In GHC 8.4.1, Semigroup has become a superclass of Monoid. This means that anywhere you define an instance of the Monoid class you also have to define an instance in the Semigroup class. This affects Data.Binary.Builder in GF. Solution: conditionally define a Semigroup instance if compiling with base>=4.11 (ghc>=8.4.1) | |||
| 2018-04-12 | bugfix in the Haskell binding | Krasimir Angelov | |
| 2018-04-12 | Merge branch 'master' of https://github.com/GrammaticalFramework/GF | Krasimir Angelov | |
| 2018-04-12 | bugfix in the C parser | Krasimir Angelov | |
| 2018-04-09 | - rm duplicate lines | odanoburu | |
| 2018-04-09 | - rm trailing spaces | odanoburu | |
| 2018-04-06 | Add more helpful printouts if no grammar provided | Inari Listenmaa | |
| 2018-04-06 | Add a tool to generate test cases for GF grammars | Inari Listenmaa | |
| 2018-03-29 | gfse: show grammar comments in the list of public grammars | Thomas Hallgren | |
| gf -server now includes the comment field from the grammar in the response to /cloud requests with command=ls-t and ext=.json | |||
| 2018-03-29 | gfse: allow public grammars to be deleted in more cases | Thomas Hallgren | |
| The editor doesn't show delete buttons on grammars published by other users, but it was too picky when deciding which grammars you own. Now it should be possible to delete grammars from the device/browser you published it from, even if you don't have a private copy of it any more. On a related note, there seems to be problem with the way unique grammars names are created and maintained, causing published grammars to be duplicated in some cases. This needs to be overhauled. | |||
| 2018-03-29 | gfse: fix for some browser: hovering over an empty grammar comment to edit it | Thomas Hallgren | |
| This was a problem in Safari (an other similar browsers I presume), but not in Firefox: hovering over the grammar comment (shown below the grammar name when you edit a grammar) didn't reveal the button to edit it, thus preventing you from adding a comment. It was till possible by selecting the "Enable editing on touch devices." at the bottom of the screen, but most people probably didn't notice that it is possible to add a comment. | |||
| 2018-03-29 | Merge branch 'master' of www.grammaticalframework.org:/usr/local/www/GF | Thomas Hallgren | |
| 2018-03-29 | gfse: sort list of public grammars by age, by default | Thomas Hallgren | |
| There is also a menu so you can choose to sort the list by name or by age | |||
| 2018-02-22 | - tweak the tokenizer in pgf_lookup_sentence to threat .!?,: as separate tokens | Krasimir Angelov | |
| + bugfix which causes crashes | |||
| 2018-02-04 | partial fix for word completion in the C runtime | Krasimir Angelov | |
| 2018-01-23 | Remove "Warning: default encoding has changed from Latin-1 to UTF-8" | Thomas Hallgren | |
| The warning is about a change that was made in GF 3.6 (June 2014) and has probably outlived its purpose by now. | |||
| 2018-01-21 | some paradigm extensions | Aarne Ranta | |
| 2017-12-19 | bugfix for random generation with HOAS | Krasimir Angelov | |
| 2017-12-09 | silence some warnings on MINGW32 | Krasimir Angelov | |
| 2017-12-09 | added one more include to define alloca for Windows | Krasimir Angelov | |
| 2017-12-09 | Merge branch 'master' of https://github.com/GrammaticalFramework/GF | Krasimir Angelov | |
| 2017-12-09 | fix the compilation of sqlite3Btree.c on Windows | Krasimir Angelov | |
| 2017-12-06 | new option linerize -tabtreebank for tab-separated treebank generation | Aarne Ranta | |
