| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-11-09 | Change cabal version to 2.4, to match GHC 8.6.5 | John J. Camilleri | |
| 2020-11-09 | Fix whitespace in binary build script | John J. Camilleri | |
| 2020-11-09 | Comment cabal freeze and caching in case it was causing build error below | John J. Camilleri | |
| https://github.com/GrammaticalFramework/gf-core/runs/1374091798?check_suite_focus=true | |||
| 2020-11-09 | Install Haskell via setup-haskell action, install build tools for C runtime | John J. Camilleri | |
| 2020-11-09 | Try to install GHC/Cabal via Homebrew | John J. Camilleri | |
| 2020-11-09 | Add first attempt at GitHub action file for building .pkg | John J. Camilleri | |
| 2020-10-27 | Merge pull request #79 from anka-213/fix-infinite-loop | Inari Listenmaa | |
| Fix infinite recursion on error | |||
| 2020-10-26 | Fix infinite recursion on error | Andreas Källberg | |
| The implementation was meant to lift from SIO to IO, but instead it was just the identity function, which means that `fail = id . fail` and we have an infinite loop. | |||
| 2020-10-09 | Merge pull request #78 from anka-213/solve-syntax-error-bug | John J. Camilleri | |
| Fix syntax error problem for older versions of GHC | |||
| 2020-10-08 | Make CI green | Andreas Källberg | |
| See https://github.com/joerick/cibuildwheel/issues/446 | |||
| 2020-10-08 | Fix syntax error problem for older versions of GHC | Andreas Källberg | |
| 2020-10-02 | Merge pull request #77 from inariksit/tutorial-fixes | Inari Listenmaa | |
| Minor tweaks and updates to the tutorial | |||
| 2020-10-02 | Merge branch 'master' of https://github.com/GrammaticalFramework/gf-core | krangelov | |
| 2020-10-02 | fix parsing with HOAS | krangelov | |
| 2020-10-02 | (Tutorial) Rename TV (transitive verb) to V2, the name used in RGL | Inari Listenmaa | |
| 2020-10-02 | (Tutorial) Remove reference to morpho_list + overly verbose path | Inari Listenmaa | |
| 2020-10-02 | (Tutorial) Update the pre syntax | Inari Listenmaa | |
| 2020-09-29 | (Tutorial) Remove mentions to pt -typecheck | Inari Listenmaa | |
| The GF shell no longer has `put_tree -typecheck` option, and typechecking is done automatically when parsing. The metavariable thing is a bit unclear: you don't get it when parsing "dim the light", or "switch on the fan, but you do get it when you `gt` after adding `switchOn` and `switchOff`. ``` > p "switch on the fan" CAction fan (switchOff fan) (DKindOne fan) > gt CAction light dim (DKindOne light) CAction ?3 (switchOff ?3) (DKindOne ?3) CAction ?3 (switchOn ?3) (DKindOne ?3) ``` My hypothesis is that you don't get metavariable when parsing e.g. "dim the light", because even though `light` is suppressed in `CAction`, it still appears in `DKindOne`, so it gets to contribute to the whole tree with its string. | |||
| 2020-09-29 | link to CoLi paper, mention of iOS | aarneranta | |
| 2020-09-18 | Add instructions for uploading PGF2 to Hackage | John J. Camilleri | |
| 2020-09-18 | Bump PGF2 to 1.2.1 | John J. Camilleri | |
| 2020-09-18 | Fix bug where shell commands were ignored, introduced by #71 | John J. Camilleri | |
| 2020-09-14 | Merge pull request #71 from anka-213/fix-newer-cabal | John J. Camilleri | |
| Fix support for newer stackage snapshots | |||
| 2020-09-14 | Bump default stack.yaml to ghc8.6.5 | Andreas Källberg | |
| 2020-09-14 | Bump stackage snapshots to latest versions | Andreas Källberg | |
| 2020-09-12 | Remove MonadFail requirements for aeson code | Andreas Källberg | |
| 2020-09-12 | Fix incorrect type and update dependencies | Andreas Källberg | |
| 2020-09-12 | First attempt at github actions for stack | Andreas Källberg | |
| 2020-09-09 | Import orphan instances of MonadFail for ghc<8 | Andreas Källberg | |
| Also upgrade alex/happy so automatic install works | |||
| 2020-09-08 | Add stack file for ghc8.8.4 | Andreas Källberg | |
| 2020-09-05 | Merge remote-tracking branch 'origin/master' into fix-newer-cabal | Andreas Källberg | |
| 2020-09-05 | Add two more missing MonadFail imports | Andreas Källberg | |
| 2020-09-05 | Fix wrong indent | Andreas Källberg | |
| 2020-09-05 | Update package database on ubuntu build | Andreas Källberg | |
| Fixes 404 error: https://github.com/GrammaticalFramework/gf-core/runs/1076062405 | |||
| 2020-09-05 | MonadFail: Make backwards-compatible | Andreas Källberg | |
| 2020-09-05 | Fix MonadFail for c-runtime as well | Andreas Källberg | |
| 2020-08-31 | (Tutorial) Minor typofixes + current error message | Inari Listenmaa | |
| 2020-08-31 | Merge pull request #73 from inariksit/video-tutorial-page | Inari Listenmaa | |
| (Homepage) Change link of video tutorials to a page + small fixes | |||
| 2020-08-30 | (Homepage) Change link of video tutorials to a page + small fixes | Inari Listenmaa | |
| Also added video tutorial link to the footer. | |||
| 2020-08-30 | Fix wording + formatting slightly | Inari Listenmaa | |
| 2020-08-30 | Add a page for all GF video tutorials | Inari Listenmaa | |
| 2020-08-21 | (Tutorial) Fix to make calculator example compile | Inari Listenmaa | |
| In abstract: startcat needs to be defined to run the commands that are shown later in the doc. In concrete: ss and SS are defined in Prelude. | |||
| 2020-08-19 | Add stack file for a more recent ghc | Andreas Källberg | |
| 2020-08-14 | remove the deprecated pgf_print_expr_tuple | krangelov | |
| 2020-08-14 | Merge branch 'master' of https://github.com/GrammaticalFramework/gf-core | krangelov | |
| 2020-08-14 | added an API for cloning expressions/types/literals | krangelov | |
| 2020-08-11 | Merge pull request #70 from inariksit/haskell | Inari Listenmaa | |
| New features in PGF to Haskell translation | |||
| 2020-08-05 | Add cabal dist-newtyle to gitignore | Andreas Källberg | |
| 2020-08-05 | Remove NoMonadFailDesugaring flag | Andreas Källberg | |
| I've fixed so everything has the fail it needs now | |||
| 2020-08-05 | Fix testsuite compatability with newer Cabal | Andreas Källberg | |
