From 885dd84215faab3e3e18ea454d96fa4ea05e52d3 Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Tue, 2 Sep 2014 19:28:44 +0200 Subject: [PATCH] Rename to Limelight Embedded --- README.md | 37 ++++++++++--------- build.xml | 4 +- src/com/limelight/Limelight.java | 4 +- .../limelight/binding/PlatformBinding.java | 2 +- 4 files changed, 24 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 42b6cf9c..d90de6b7 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -#Limelight Pi +#Limelight Embedded Limelight is an open source implementation of NVIDIA's GameStream, as used by the NVIDIA Shield, but built for Linux/OSX/Windows. -Limelight Pi allows you to stream your full collection of Steam games from -your powerful Windows desktop to your Raspberry Pi. +Limelight Embedded allows you to stream your full collection of Steam games from +your powerful Windows desktop to your embedded system, like Raspberry Pi, CuBox-i and Hummingboard. For a demo see this [video](https://www.youtube.com/watch?v=XRW6O0bSHNw). @@ -19,7 +19,7 @@ implementation. ##Features -* Streams Steam and all of your games from your PC to your Raspberry Pi. +* Streams Steam and all of your games from your PC to your embedded system. ##Installation @@ -37,24 +37,29 @@ implementation. ##Quick Start -* Ensure your machine and Raspberry Pi are on the same network +* Ensure your machine and embedded system are on the same network * Turn on Shield Streaming in the GFE settings -* Start Limelight Pi with pair +* Start Limelight Embedded with pair * Accept the pairing confirmation on your PC -* Start Limelight Pi with stream +* Start Limelight Embedded with stream * Play games! ##Usage - Usage: java -jar limelight-pi.jar [options] host + Usage: java -jar limelight.jar [options] host Actions: + map Create mapping file for gamepad pair Pair device with computer stream Stream computer to device discover List available computers list List available games and applications help Show this help + Mapping options: + + -input Use as input + Streaming options: -720 Use 1280x720 resolution (default) @@ -81,18 +86,14 @@ implementation. * Set JAVA_HOME to your JDK installation directory for example ``export JAVA_HOME=/usr/lib/jvm/jdk-7-oracle-armhf`` * Build using Ant ``ant`` -##Contribute +## Discussion -This project is being actively developed at [XDA](http://forum.xda-developers.com/showthread.php?t=2505510) +[XDA](http://forum.xda-developers.com/showthread.php?t=2505510) +[Raspberry Pi Forum](http://www.raspberrypi.org/forums/viewtopic.php?f=78&t=65878) +[SolidRun Community](http://www.solid-run.com/community/viewtopic.php?f=13&t=1489&p=11173) + +##Contribute 1. Fork us 2. Write code 3. Send Pull Requests - -##Authors - -* [Iwan Timmer](https://github.com/irtimmer) -* [Cameron Gutman](https://github.com/cgutman) -* [Diego Waxemberg](https://github.com/dwaxemberg) -* [Aaron Neyer](https://github.com/Aaronneyer) -* [Andrew Hennessy](https://github.com/yetanothername) diff --git a/build.xml b/build.xml index b4f0e87c..3e155376 100644 --- a/build.xml +++ b/build.xml @@ -119,8 +119,8 @@ -libraryjars ${java.home}/lib/rt.jar - -injars ${build.dir}/limelight-pi.jar - -outjars ${build.dir}/limelight-pi-dist.jar + -injars ${build.dir}/limelight.jar + -outjars ${build.dir}/limelight-dist.jar -keepclasseswithmembers public class * { public static void main(java.lang.String[]); diff --git a/src/com/limelight/Limelight.java b/src/com/limelight/Limelight.java index c7e52712..17197885 100644 --- a/src/com/limelight/Limelight.java +++ b/src/com/limelight/Limelight.java @@ -30,7 +30,7 @@ import java.util.logging.Logger; /** - * Main class for Limelight Pi + * Main class for Limelight Embedded * @author Diego Waxemberg
* Cameron Gutman * Iwan Timmer @@ -335,7 +335,7 @@ public static void main(String args[]) { parse = false; if (args.length == 0 || !parse) { - System.out.println("Usage: java -jar limelight-pi.jar action [options] host/file"); + System.out.println("Usage: java -jar limelight.jar action [options] host/file"); System.out.println(); System.out.println(" Actions:"); System.out.println(); diff --git a/src/com/limelight/binding/PlatformBinding.java b/src/com/limelight/binding/PlatformBinding.java index 50848520..a61ceb3d 100644 --- a/src/com/limelight/binding/PlatformBinding.java +++ b/src/com/limelight/binding/PlatformBinding.java @@ -41,7 +41,7 @@ public static String getDeviceName() { try { return InetAddress.getLocalHost().getHostName(); } catch (UnknownHostException e) { - return "LimelightPi"; + return "Limelight"; } }