Skip to content

Commit

Permalink
release 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
olir committed Jul 9, 2017
1 parent 2850c83 commit 883e117
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 49 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.project
.settings/
target/
velocity.log
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ It appears there on a virtual 160-inch curved 3D display.
I have uploaded some samples to vimeo: <a href="https://vimeo.com/user68089135"><img src="doc/vimeo.png"/></a>

## Status
Pre-release existing. Plattforms: Windows only (Developed/Tested on a Windows 10 64bit.)
Release 0.1: Windows only (Developed/Tested on a Windows 10 64bit.)

Install Pre-Requisites first (see below), then...
1. You can download and execute the jar file from the release (see section below)
2. You can execute releases with Java Webstart (see section below)
3. You can also use maven to run it with "mvn clean package exec:exec"
Install Pre-Requisites first (see below), then you have 3 options to start it:
A) Jar execution: Download and execute the jar file from the release (see section below)
B) Java Webstart: You can execute releases with Java Webstart (see section below)
C) From Maven: You can also use maven to run it with "mvn clean package exec:exec"

## Issues:
- Video editing / local filters is under construction
Expand Down Expand Up @@ -62,11 +62,11 @@ FFMPEG build contains H264 encoder based on the OpenH264 library, that should be
### Start via Java Webstart (Windows only)
(Under construction... need to fix some provileges to write files)
1. Install the pre-requistes above
- Go to Secuity tab within the Java Control Panel (Help: https://java.com/en/download/help/jcp_security.xml).
You have to add github as site exception: https://github.com/olir/Frankenstein/releases/download/0.0.1/
- Go to Security tab within the Java Control Panel (Help: https://java.com/en/download/help/jcp_security.xml).
You have to add github as site exception: https://github.com/olir/Frankenstein/releases/download/0.1/
2. Download & Open jnlp file from release:
- e.g.: [Pre-Release 0.0.1](https://github.com/olir/Frankenstein/releases/download/0.0.1/launch.jnlp)
3. Accept Warnings and Execute
- e.g.: [Pre-Release 0.1](https://github.com/olir/Frankenstein/releases/download/0.1/launch.jnlp)
3. Accept warnings and execute.



7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
<modelVersion>4.0.0</modelVersion>

<!-- Version Dependency Chaining -->
<!-- Create keystore with: keytool -genkey -alias webstart -keyalg RSA -keystore ../keystore -keysize 2048 -->
<properties>
<lbt4j.version>0.0.2</lbt4j.version>
<version>0.0.1-SNAPSHOT</version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<manifest.Codebase>*</manifest.Codebase>
<jnlp.URL>https://github.com/olir/Frankenstein/releases/download/0.0.1</jnlp.URL>
<jnlp.URL>https://github.com/olir/Frankenstein/releases/download/${version}</jnlp.URL>
<mainClass>de.screenflow.frankenstein.fxml.Main</mainClass>
<jks.keystore>${project.basedir}/src/main/jnlp/dummy-keystore</jks.keystore>
<jks.keypass>pass01</jks.keypass>
Expand All @@ -23,7 +22,7 @@
<!-- Maven Coordinates -->
<groupId>de.screenflow</groupId>
<artifactId>frankenstein</artifactId>
<version>0.0.1</version>
<version>${version}</version>


<prerequisites>
Expand Down
36 changes: 0 additions & 36 deletions velocity.log

This file was deleted.

0 comments on commit 883e117

Please sign in to comment.