Skip to content

Commit

Permalink
Bump all versions for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spatialillusions committed Apr 16, 2017
1 parent 6aad253 commit 5bf56c4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log
## Master
## 1.1.0 16 APR 2017

I would like to thank @okwolf that has contributed with unit tests and some code reorganization.

### Added

Expand All @@ -13,6 +15,8 @@

- Added 2525B symbols that are missing in 2525C, so now we have full support for 2525B as well.

- Initial unit tests added to the repository.

### Changed

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milsymbol",
"version": "1.0.0",
"version": "1.1.0",
"homepage": "https://github.com/spatialillusions/milsymbol",
"authors": [
"Måns Beckman (http://www.spatialillusions.com)"
Expand Down
4 changes: 2 additions & 2 deletions dist/milsymbol.js

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ All the following code can be used to inject functionality into milsymbol extern

Milsymbol is built using [webpack](https://webpack.js.org), and if you installed milsymbol npm everything you need to build milsymbol should have been installed as well since they are listed as devDependencies in package.json, if you don't have npm installed, you will have to install it to build milsymbol.

The structure of the code is that the webpack config (*webpack.config.js*) and entry point (*milsymbol.js*) is located under `/build` and all other source code is under `/src`. This way it is easy to edit the entry point, that decides what functionality that is included in milsymbol, without touching the other source code.
The structure of the code is that the webpack config (*webpack.config.js*) is located in the root directory, and the entry point (*index.js*) and all other source code is under `/src`.

Once you have changed the parts of the code that you want to change, you simply run:

Expand All @@ -304,6 +304,18 @@ npm run build

Webpack will then build milsymbol and minify the output into `/dist`.

It is also possible to build an un-minified version of milsymbol by running:

```
npm run build-dev
```

And finally tests are located in the `/test` and you can run the tests by running:

```
npm run test
```

## Draw instruction

The symbols in milsymbol is drawn using JSON draw instructions `drawInstruction`, these are then converted into Canvas draw instructions, or SVG output.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milsymbol",
"version": "1.0.0",
"version": "1.1.0",
"description": "Milsymbol.js is a small library in pure javascript that creates symbols according to MIL-STD-2525 and APP6.",
"main": "dist/milsymbol.js",
"directories": {
Expand Down

0 comments on commit 5bf56c4

Please sign in to comment.