Skip to content

Commit

Permalink
Version 1.1 FINAL
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-lindau committed Jul 7, 2017
1 parent 637e3eb commit d9050d2
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 8 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Aerowinx PSX Smart Interface
[![Packagist](https://img.shields.io/badge/version-1.0-brightgreen.svg)](SmartInterface)
[![Packagist](https://img.shields.io/badge/version-1.1-brightgreen.svg)](SmartInterface)
[![Packagist](https://img.shields.io/badge/status-testing-orange.svg)](https://github.com/eric-lindau/PSX-Smart-Interface)
[![Packagist](https://img.shields.io/packagist/l/doctrine/orm.svg)](LICENSE.md)

Expand All @@ -23,3 +23,14 @@ This add-on relies on TCP port **10747** to interface with the PSX server, so th
## Built with
* [JInput](https://github.com/jinput/jinput) - Used to detect and interface with hardware controllers
* [Aerowinx Network](http://aerowinx.com/assets/networkers/Network%20Documentation.txt) - Used to interface with PSX over network (**documentation only**)

## Versions

### 1.0
* Added flight control functionality with combined analog inputs (aileron, elevator, rudder, tiller)
* Added UI for easy user assignment of hardware components to components within PSX
* Added network interface for add-on to communicate with PSX

### 1.1
* Improved stability and efficiency of add-on with CPU threading and fewer ticks per second
* Improved error catching and error notifications for easier problem solving
Binary file added SmartInterface-1.1.zip
Binary file not shown.
11 changes: 5 additions & 6 deletions SmartInterface/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified SmartInterface/out/artifacts/SmartInterface_jar/SmartInterface.jar
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion SmartInterface/src/SmartInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public void itemStateChanged(ItemEvent itemEvent) {
//*

//* JFrame init and config
JFrame frame = new JFrame("PSX SmartInterface");
JFrame frame = new JFrame("PSX SmartInterface v1.1");
frame.setPreferredSize(new Dimension(800, 600));
frame.setResizable(false);
frame.getContentPane().add(scrollPane);
Expand Down
Binary file removed Versions/1.0/SmartInterface-1.0.zip
Binary file not shown.
File renamed without changes.
Binary file added Versions/SmartInterface-1.1.zip
Binary file not shown.

0 comments on commit d9050d2

Please sign in to comment.