Rename to Limelight Embedded

This commit is contained in:
Iwan Timmer 2014-09-02 19:28:44 +02:00
parent 47f5a03fa7
commit 885dd84215
4 changed files with 24 additions and 23 deletions

View File

@ -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 <device> Use <device> 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)

View File

@ -119,8 +119,8 @@
<target name="proguard">
<proguard>
-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[]);

View File

@ -30,7 +30,7 @@ import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Main class for Limelight Pi
* Main class for Limelight Embedded
* @author Diego Waxemberg<br>
* Cameron Gutman
* Iwan Timmer
@ -335,7 +335,7 @@ public class Limelight implements NvConnectionListener {
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();

View File

@ -41,7 +41,7 @@ public class PlatformBinding {
try {
return InetAddress.getLocalHost().getHostName();
} catch (UnknownHostException e) {
return "LimelightPi";
return "Limelight";
}
}