Skip to content

Commit

Permalink
Merge tag 'v1.15.0' into develop
Browse files Browse the repository at this point in the history
Release 1.15.0 v1.15.0
  • Loading branch information
craigrodway committed Feb 19, 2019
2 parents 32042a5 + 4bbbb42 commit 5ab399d
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions src/CHANGES.md
@@ -1,6 +1,35 @@
# Living Lab Changelog


## v1.15.0

* Added support for [pkg](https://www.npmjs.com/package/pkg).

### Pkg support

The Living Lab project can now be built as a standalone runtime using `pkg`.

To build Living Lab, run `npm run pkg-win` or `npm run pkg-mac` from the `src` directory.
The runtimes will be built into the respective platform directories in `../pkg/`.

When installed with the Living Lab project, the sqlite3 module installs a driver for the
given platform at install-time. This can't be bundled in the `pkg` process and must be
copied manually to the pkg platform directory.

The file will be here: `src\node_modules\sqlite3\lib\binding\{platform}\node_sqlite3.node`

When the standalone Living Lab is ran, it will use `config` and `data` folders that are in
the same level as the executable. For example:

```
|-- pkg
|-- data
|-- config
|-- living-lab.exe
|-- node_sqlite3.node
```


## v1.14.1

* Added default global documentation for Player pages.
Expand Down
4 changes: 2 additions & 2 deletions src/package.json
@@ -1,6 +1,6 @@
{
"name": "living-lab",
"version": "1.14.1",
"version": "1.15.0",
"private": true,
"description": "Living Lab project",
"main": "server.js",
Expand Down Expand Up @@ -39,7 +39,7 @@
"sqlite3": "^3.1.13"
},
"author": "Newcastle University",
"license": "UNLICENSED",
"license": "MIT",
"devDependencies": {
"gulp": "^4.0.0",
"gulp-clean-css": "^3.9.2",
Expand Down

0 comments on commit 5ab399d

Please sign in to comment.