Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Nov 4, 2020
1 parent b355621 commit 9aedc0b
Show file tree
Hide file tree
Showing 6 changed files with 469 additions and 261 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ To start contributing you will need to fork the repo on github and clone it firs

## Building

Running `npm run prepare` will run compile both the nomnoml library and the webapp and run all unit tests.
Running `npm run build` will run compile the nomnoml library, the webapp and run all tests.

## Testing

Before committing and before making a pull request make sure that all unit tests and usecase tests are ok. Here is a good procedure:

1. Run `npm run prepare`
1. Run `npm run build`
2. Check `index.html`
3. Check `test/index.html`
15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.3.0] - 2020-11-04

- More options to style text
- Style node titles with `title=bold,italic,left`
- Style node bodys with `body=bold,italic,left`
- Nicer database graphics
- More descriptive compilation errors
- Switch to **Graphre** (a forked version of Dagre)
- Support Webpack

**Webapp**
- Folders in file system view
- Always as for filename when saving a #view url graph
- Improved file system view

## [1.2.0] - 2020-10-07

- Fixed layout bug when using HIDDEN nodes
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ var nomnoml;
})(nomnoml || (nomnoml = {}));
var nomnoml;
(function (nomnoml) {
nomnoml.version = '1.2.0';
nomnoml.version = '1.3.0';
function fitCanvasSize(canvas, rect, zoom) {
canvas.width = rect.width * zoom;
canvas.height = rect.height * zoom;
Expand Down
Loading

0 comments on commit 9aedc0b

Please sign in to comment.