Skip to content

Releases: davidomarf/ginpar

v1.0.1

08 Nov 01:19
v1.0.1
cee1676
Compare
Choose a tag to compare

Major changes

  • Add default value for the scripts field in the generated config.yaml by ginpar init

Minor changes

  • Remove dead code
  • Complete the docstrings

v0.8.3

05 Nov 00:36
v0.8.3
dd0576e
Compare
Choose a tag to compare

Hotfix

  • Add setup(); to the ginpar_updateDraw() function.
    Canvas size wasn't getting updated.

v0.8.2

04 Nov 23:47
v0.8.2
b79e6d3
Compare
Choose a tag to compare

Major Changes

  • Build the project before starting the server when ginpar serve is executed.

Minor Changes

  • Update the sphinx docs so it fits the current version.
  • Use autodoc to document the modules in the projects.

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • My code follows the code style of this project.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.
  • I have added tests to cover my changes.
  • All new and existing tests passed.

v0.8.1

04 Nov 03:06
v0.8.1
e269a79
Compare
Choose a tag to compare

Major Changes

  • Send sketch instead of sketch["name"] to the sketch page template.
  • Use the random and noise seeds of the sketch to name the file of the saved image.

Minor Changes

  • Add livereload as required module in setup.py.a

v0.8.0

03 Nov 09:56
v0.8.0
0cf6e0e
Compare
Choose a tag to compare

Major updates

  • Allow sketches to be globally seeded in the configuration file.
    • Globally seeded sketches can generate new seeds manually.
  • Create a string containing the current seeds for random generators.

Minor updates

  • Modify the name of the JS functions that ginpar generates. Append ginpar_ at the beginning.

v0.7.4

30 Oct 05:55
v0.7.4
a5cad15
Compare
Choose a tag to compare

Minor Changes

  • Use the paramater.name if provided, instead of generating them from the variable name.

Hotfix

30 Oct 00:24
v0.7.2
0c78f91
Compare
Choose a tag to compare

Fetch the list of theme templates after downloading the theme files.

v0.7.1

30 Oct 00:06
v0.7.1
f93dc39
Compare
Choose a tag to compare

Use the API from the docs for sketch data files.

v0.6.2

24 Oct 22:07
v0.6.2
3f45cbd
Compare
Choose a tag to compare

This is a hotfix for #25

v0.6.1

24 Oct 06:41
v0.6.1
0548a9f
Compare
Choose a tag to compare

Major changes

  • Commands
    • Implement ginpar new [SKETCH]
      • Create a new sketch inside the project's config.content_path
      • Use boilerplate code for sketches that already includes variables for dimensions.
    • Implement ginpar serve
      • Starts a new live-reloading server.
      • Builds on every file change inside config.content_path.
    • Update ginpar quickstart
      • Instead of copying files from the pypi package into the working directory, it clones a GitHub repository with the contents of the quickstart project, and removes all .git* files.
  • API
    • Use YAML instead of JSON for the site config file
      • Easier to read and write.
      • YAML is a superset of JSON, so users are still able to write in JSON.

Minor changes

  • Tests
    • Implement tests for all the CLI commands except serve.
  • Docs
    • Adopt numpydocs as the docstring style