Skip to content

Commit

Permalink
Merge pull request #49 from Felix-Franz/unstable
Browse files Browse the repository at this point in the history
release 2.0 stable
  • Loading branch information
Felix-Franz committed Oct 28, 2017
2 parents 99dd162 + c4ec217 commit 3b30dbc
Show file tree
Hide file tree
Showing 316 changed files with 34,326 additions and 883 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.sh eol=lf
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
*.class
.classpath
.project
/.settings

# Mobile Tools for Java (J2ME)
.mtj.tmp/
.settings/
.idea/
target/
out/

# Package Files #
*.jar
Expand All @@ -13,3 +12,5 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

*.iml
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ A desktop software to control one or more instances of VLC media player simultan

## Using the software

If you are interested in using the software just go to the releases:
[Releases](//github.com/Felix-Franz/VLCController/releases)
If you are interested in using the software read the wiki first or just go to the releases:
* [Wiki](//github.com/Felix-Franz/VLCController/wiki/)
* [Releases](//github.com/Felix-Franz/VLCController/releases)

## Using the Code

Just [clone the repository](https://youtu.be/ptK9-CNms98) and import it into eclipse!
Just clone the repository into [IntelliJ](https://www.jetbrains.com/idea/)!
This project is using Maven!
2 changes: 0 additions & 2 deletions bin/.gitignore

This file was deleted.

20 changes: 0 additions & 20 deletions bin/README.txt

This file was deleted.

6 changes: 0 additions & 6 deletions bin/Start.bat

This file was deleted.

5 changes: 0 additions & 5 deletions bin/Start.sh

This file was deleted.

22 changes: 0 additions & 22 deletions bin/conf/server.conf

This file was deleted.

33 changes: 0 additions & 33 deletions bin/conf/webpage/index-advanced.html

This file was deleted.

32 changes: 0 additions & 32 deletions bin/conf/webpage/index-simple.html

This file was deleted.

33 changes: 0 additions & 33 deletions bin/conf/webpage/index.html

This file was deleted.

130 changes: 0 additions & 130 deletions bin/conf/webpage/styles.css

This file was deleted.

Binary file removed bin/docs/1.PNG
Binary file not shown.
Binary file removed bin/docs/2.PNG
Binary file not shown.
8 changes: 8 additions & 0 deletions conf/player.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[
{
"name": "local_device",
"host": "127.0.0.1",
"port": 4212,
"password": "pass"
}
]
8 changes: 8 additions & 0 deletions conf/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"loggingLevel": "INFO",
"port": 8080,
"connectorTimeout": 1000,
"openBrowserOnStart": true,
"maxVLCConnectionThreads": 10,
"shutdownTime": 30
}
15 changes: 15 additions & 0 deletions frontend.webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<servlet>
<servlet-name>backend.rest.core.Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>backend.rest.core.Application</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>backend.rest.core.Application</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
</web-app>
14 changes: 14 additions & 0 deletions frontend.webapp/desktop.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
.controlbtn {
padding: 1em;
padding-left: 1.5em;
padding-right: 1.5em;
margin-top: 1em;
}

#controlBackward {
margin-right: 1em;
}

#controlForward {
margin-left: 1em;
}

0 comments on commit 3b30dbc

Please sign in to comment.