An open API service indexing awesome lists of open source software.

https://github.com/overturetool/overture-graphics-plugin

Live plotting for Overture using listeners
https://github.com/overturetool/overture-graphics-plugin

Last synced: over 1 year ago
JSON representation

Live plotting for Overture using listeners

Awesome Lists containing this project

README

          

# overture-graphics-plugin

### Electron
##### Initialize
1. `npm install`
2. `npm install -g typings`
3. `npm install -g gulp`
4. `gulp init`
5. `typings install`

##### Run
1. `gulp`
2. `npm start`

### Java
##### Package
`TODO`

## Release Procedure

Version numbers:
- even is release
- uneven are development versions which are snapshots

### Releasing the Java module

```bash
mvn -Dmaven.repo.local=repository release:clean
mvn -Dmaven.repo.local=repository release:prepare -DreleaseVersion=${RELEASE_VER} -DdevelopmentVersion=${NEW_DEV_VER} -DpushChanges=false
git push --follow-tags
mvn -Dmaven.repo.local=repository release:perform
```

### Releasing the Electron module

```bash
gulp build
gulp package-all
```