Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Updated the README and bumped the version number. Welcome to v1.0!
Browse files Browse the repository at this point in the history
  • Loading branch information
winneon committed May 24, 2017
1 parent 7c7365e commit 3a1c9b5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,26 @@
# neutron

![demo](https://i.imgur.com/suv5xqc.gif)
![demo](http://i.imgur.com/u8Ph9W6.gif)

Neutron (name to be changed) is a desktop front-end for Spansh's popular [Neutron Router](https://www.spansh.co.uk/) for the space exploration, trading, and combat game, Elite: Dangerous. In addition to everything the Neutron Router offers, this front-end also provides real-time updates as you play, automatically copying new systems into your clipboard, and updating the remaining jump counts.

## Features

* Long-range route plotting
* Less time per route by plotting to discovered neutron stars
* Real-time updates on remaining jumps and upcoming systems
* A sexy interface
* Long-range route plotting.
* Less time per route by plotting to discovered neutron stars.
* Real-time updates on remaining jumps and upcoming systems.
* Auto-replotting when a detour is detected.
* Manual route controls.
* A sexy interface.


## Installation

Currently, Neutron is Windows x64 only, however I will expand it to macOS in the very near future. The primary Elite: Dangerous user base is Windows, so I don't feel *too* bad about my laziness.
Currently, Neutron is Windows x64 only, however I will expand it to macOS in the near future. The primary Elite: Dangerous user base is Windows, so I don't feel *too* bad about my laziness.

### Beta

To install, go to the [latest release]( https://github.com/winneon/neutron/releases/latest), download the neutron.exe file, and run it! It's that simple! Neutron should be available as shortcuts on your desktop and start menu afterwards.
To install, go to the [latest release]( https://github.com/winneon/neutron/releases/latest), download the neutron-setup.exe file, and run it! It's that simple! Neutron should be available as shortcuts on your desktop and start menu afterwards.

### Dev

Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A desktop front-end for Spansh's neutron router.",
"author": "Jesse Bryan <[email protected]>",
"productName": "Neutron",
"version": "0.3.1",
"version": "1.0.0",
"main": "index.js",
"production": false,
"dependencies": {
Expand Down
Binary file added build/icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Input extends React.Component {
return (
<div className="wrapper">
<span className="remaining"></span>
<input id={ this.props.id } name={ this.props.name } min={ this.props.min } max={ this.props.max } type={ this.props.type || "text" } placeholder={ this.props.placeholder } />
<input id={ this.props.id } name={ this.props.name } min={ this.props.min } max={ this.props.max } type={ this.props.type || "text" } step="any" placeholder={ this.props.placeholder } />
</div>
)
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "neutron",
"description": "A desktop front-end for Spansh's neutron router.",
"author": "Jesse Bryan <[email protected]>",
"version": "0.3.1",
"version": "1.0.0",
"xo": {
"space": true,
"semicolon": false
Expand Down Expand Up @@ -39,7 +39,7 @@
"dist": "npm run webpack:dist && npm run sass && build --em.production=true",
"pack": "npm run webpack:pack && npm run sass && build --dir",
"postinstall": "install-app-deps",
"release": "npm run webpack:dist && npm run sass && build --em.production=true",
"release": "build --em.production=true",
"sass": "node-sass --include-path sass --output-style compressed sass/base.scss app/dist/bundle.css",
"start": "npm run webpack:pack && npm run sass && electron app",
"webpack:dist": "cross-env NODE_ENV=production webpack -p",
Expand Down

0 comments on commit 3a1c9b5

Please sign in to comment.