All Versions
24
Latest Version
Avg Release Cycle
28 days
Latest Release
2369 days ago

Changelog History
Page 1

  • v0.5.6

    October 29, 2017
  • v0.5.6.1

    October 07, 2018
  • v0.5.5 Changes

    September 03, 2017
    * Dropped `Default` constraint requisite and `data-default` dependency.
    * As a result, `editorGenericSimple` is replaced with `editorGeneric`.
    * Improved haddocks and README.
    * Cleaned up module export lists.
    * Renamed Usage to Purpose and the Value constructor to Data. 
    * Renamed `editorGenericSimpleBi` to `editorGenericBi`.
    
  • v0.5.4 Changes

    August 28, 2017
    * Generic derivation of `editor` for dual purpose datatypes.
    
  • v0.5.4.1

    August 28, 2017
  • v0.5.3 Changes

    August 28, 2017
    * Generic derivation for `render`.
    * Dropped dependency on the lens package.
    * Added a new example CRUD exercising the Biapplicative interface.
    * Fixed building of examples with Cabal 2.
    * Changes to the validation module type signatures.
    
  • v0.5.2 Changes

    August 13, 2017
    * Name changes:
      - `EditorFactory` is now `Editor`.
      - `Editor` is now `GenericWidget`.
    * Added a module with utilities for doing data validation.
    
  • v0.5.1 Changes

    July 30, 2017
    * Fix a build issue with GHC 8.2.1
    
  • v0.5.0 Changes

    July 30, 2017
    This is a major release with lots of internal rewrites and new features:
    * Introduced monoidal layout builders like `Columns` for easier layout of
      `field` style editors. Generic editors do not yet take advantage of this,
      but in the future they will via metadata.
    * Introduced a `Biapplicative` interface for defining editors with richly
      typed widgets. This is quite experimental and only record types are
      supported, examples/Person.hs contains an example.
    * Reorganized module and data type structure. The main changes are:
      - `EditorDef` no longer exists.
      - `Editor` has been generalized and now exposes the widget type.
      - `EditorFactory` is now a `Biapplicative` but no longer has a `Profunctor` instance.
    
  • v0.4.1 Changes

    July 13, 2017
    * Improved the rendering of constructors in generic sum editors