| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-13 | Add TypeScript type definitions for gflib.js | John J. Camilleri | |
| 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 | spell error in py.egs.README | Prasanth Kolachina | |
| 2018-05-24 | add bracketLinearizeAll for variants | Prasanth Kolachina | |
| 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-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 | |
| 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 | fix the compilation of sqlite3Btree.c on Windows | Krasimir Angelov | |
| 2017-10-04 | further extend the API of the C runtime | Krasimir Angelov | |
| 2017-10-03 | in the PGF2 api: remove showCategory. add categoryContext and ↵ | Krasimir Angelov | |
| functionIsConstructor | |||
| 2017-09-28 | added exprSubstitute in the C runtime for substituting meta variables | Krasimir Angelov | |
| 2017-09-28 | the parser for abstract expressions in the C runtime now supports partial parses | Krasimir Angelov | |
| 2017-09-26 | added a method in Python for pretty printing a grammar | Krasimir Angelov | |
| 2017-09-25 | added showPGF in the Haskell API | Krasimir Angelov | |
| 2017-09-25 | handle productions in the internal creation API | Krasimir Angelov | |
| 2017-09-25 | make pgf_production_is_lexical public since it will be needed in the Haskell ↵ | Krasimir Angelov | |
| binding | |||
| 2017-09-25 | fix typo in jni_utils.c | Krasimir Angelov | |
| 2017-09-25 | fix the compilation of jsg.c after the last patch | Krasimir Angelov | |
| 2017-09-25 | handle BIND & CAPIT in bracketedLinearize for Java | Krasimir Angelov | |
| 2017-09-18 | added Expr.size() in the Java binding | Krasimir Angelov | |
| 2017-09-14 | make the API for indexing in the parser and the linearizer public since it ↵ | Krasimir Angelov | |
| will be needed in the Haskell binding | |||
| 2017-09-14 | an almost complete API for building new PGF files in the Haskell binding | Krasimir Angelov | |
| 2017-09-13 | fix gu_encode_double | Krasimir Angelov | |
| 2017-09-13 | corrections in the PGF writer | Krasimir Angelov | |
| 2017-09-13 | added PGF2.Internal.writePGF in the Haskell binding | Krasimir Angelov | |
| 2017-09-13 | added gu_out_u16be, gu_out_u64be and gu_out_f64be in libgu. The later is ↵ | Krasimir Angelov | |
| using gu_encode_double which is probably still wrong. Corrected gu_in_le and gu_in_f64be. | |||
| 2017-09-13 | added function pgf_write | Krasimir Angelov | |
| 2017-09-13 | added PGF writer to the C runtime | Krasimir Angelov | |
| 2017-09-11 | an almost complete API for creating the abstract syntax of a PGF in memory | Krasimir Angelov | |
| 2017-09-11 | an API to access the grammar's flags | Krasimir Angelov | |
