Skip to content

Commit

Permalink
Version 1.2 FINAL
Browse files Browse the repository at this point in the history
  • Loading branch information
eric-lindau committed Jul 17, 2017
1 parent 893a8f2 commit 41ff7f8
Show file tree
Hide file tree
Showing 11 changed files with 217 additions and 235 deletions.
4 changes: 2 additions & 2 deletions 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.1-brightgreen.svg)](SmartInterface)
[![Packagist](https://img.shields.io/badge/version-1.2-brightgreen.svg)](SmartInterface)
[![Packagist](https://img.shields.io/badge/build-passing-brightgreen.svg)](https://github.com/eric-lindau/PSX-Smart-Interface)
[![Packagist](https://img.shields.io/packagist/l/doctrine/orm.svg)](LICENSE.md)

Expand Down Expand Up @@ -36,7 +36,7 @@ This add-on relies on the IP address and TCP port specified in the automatically
* 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.

### 1.2 (not yet released)
### 1.2
* Added feature that saves user definitions for persistent use as well as allows for user configuration of advanced settings.
* Added functionality with many more analog, button, and rotary components.
* Improved network efficiency and fixed a critical network bug that was causing PSX server to freeze/crash.
Binary file removed SmartInterface-1.1.zip
Binary file not shown.
Binary file added SmartInterface-1.2.zip
Binary file not shown.
431 changes: 206 additions & 225 deletions SmartInterface/.idea/workspace.xml

Large diffs are not rendered by default.

Binary file modified SmartInterface/out/artifacts/SmartInterface_jar/SmartInterface.jar
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### Please do not remove any lines of this cfg; simply edit them.
## Network config
# Host/port of PSX server
localhost:10747
127.0.0.1:10747
## General config
# Minimize window on add-on startup
0
Expand Down
Binary file modified SmartInterface/out/production/SmartInterface/SmartInterface.class
Binary file not shown.
Binary file modified SmartInterface/out/production/SmartInterface/Utils.class
Binary file not shown.
2 changes: 2 additions & 0 deletions SmartInterface/saved.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
114. Razer DeathAdder - x`Aileron - Capt`1
115. Razer DeathAdder - y`Toe Brake Right - F/O`1
13 changes: 6 additions & 7 deletions SmartInterface/src/SmartInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@
import java.util.Arrays;

/**
* PSX Smart Interface: This add-on allows a user to differentiate hardware
* components as either "Captain" or "First Officer" controls, combining
* inputs logically while interfacing with the main PSX server. This allows
* physical setups without mechanically synchronized pilot and co-pilot
* controls to operate logically.
* An add-on for Aerowinx PSX that provides easy, smart configuration of hardware
* components as they relate to PSX.
*
* https://github.com/eric-lindau/PSX-Smart-Interface
*
* @author Eric Lindau
* @version 1.1
* @version 1.2
*/
class SmartInterface {

Expand Down Expand Up @@ -798,7 +797,7 @@ public void itemStateChanged(ItemEvent itemEvent) {
// 569 used to offset width of bar itself
scrollPane.setPreferredSize(new Dimension(800, 569));

JFrame frame = new JFrame("PSX SmartInterface v1.1: Pre-1.2 FINAL Test 2");
JFrame frame = new JFrame("PSX SmartInterface v1.2");
frame.setPreferredSize(new Dimension(800, 600));
frame.setResizable(false);
frame.getContentPane().add(scrollPane);
Expand Down
Binary file added Versions/SmartInterface-1.2.zip
Binary file not shown.

0 comments on commit 41ff7f8

Please sign in to comment.