From bc7c5cf7abb564eda75f65ef6219c8bfaaa292a5 Mon Sep 17 00:00:00 2001 From: chocolateboy Date: Sat, 5 Apr 2014 10:06:28 +0100 Subject: [PATCH] 2.0.0 --- CHANGELOG.txt | 2 +- README.md | 6 +++--- pom.xml | 2 +- src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a368d14..c29e312 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -2.0.0 TBC +2.0.0 Sat Apr 5 09:47:31 2014 output video in the renderer's preferred format (i.e. don't downscale HD video if the renderer supports HD) scripts can now implement hooks for finalizeTranscoderArgs and isCompatible diff --git a/README.md b/README.md index d24b68f..5cf70c6 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ These instructions assume you have the [latest version](http://www.ps3mediaserve ## Installation -* download the [PMSEncoder jar file](https://github.com/chocolateboy/pmsencoder/releases/download/v2.0.0-rc3/pmsencoder-2.0.0-rc3.jar) and place it in the PMS [`plugins`](http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=32731#p32731) directory +* download the [PMSEncoder jar file](https://github.com/chocolateboy/pmsencoder/releases/download/v2.0.0/pmsencoder-2.0.0.jar) and place it in the PMS [`plugins`](http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=32731#p32731) directory * restart PMS ### Upgrading @@ -37,7 +37,7 @@ These instructions assume you have the [latest version](http://www.ps3mediaserve To upgrade to a new version of the plugin: * check the [release notes](https://github.com/chocolateboy/pmsencoder/wiki/Release-Notes) to see if there are any breaking changes or other incompatibilities -* replace the old jar file in the [`plugins`](http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=32731#p32731) directory with the [new version](https://github.com/chocolateboy/pmsencoder/releases/download/v2.0.0-rc3/pmsencoder-2.0.0-rc3.jar) and restart PMS +* replace the old jar file in the [`plugins`](http://www.ps3mediaserver.org/forum/viewtopic.php?f=6&t=3507&p=32731#p32731) directory with the [new version](https://github.com/chocolateboy/pmsencoder/releases/download/v2.0.0/pmsencoder-2.0.0.jar) and restart PMS ### Uninstalling @@ -106,7 +106,7 @@ For more details, discussion and troubleshooting tips, see the [wiki](http://wik ## Version -2.0.0-rc3 +2.0.0 ## License diff --git a/pom.xml b/pom.xml index c22b649..d9364f9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.chocolatey pmsencoder - 2.0.0-SNAPSHOT + 2.0.0 PMSEncoder A plugin for PS3 Media Server that adds support for scriptable web video streaming. diff --git a/src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy b/src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy index 114b8ef..9720525 100644 --- a/src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy +++ b/src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy @@ -42,7 +42,7 @@ public class Plugin implements ExternalListener, FinalizeTranscoderArgsListener, private static final String NAME = 'PMSEncoder' private static final String SCRIPT_DIRECTORY = 'pmsencoder.script.directory' private static final String SCRIPT_POLL = 'pmsencoder.script.poll' - private static final String VERSION = '2.0.0-SNAPSHOT' + private static final String VERSION = '2.0.0' // 1 second is flaky - it results in overlapping file change events private static final int MIN_SCRIPT_POLL_INTERVAL = 2 private static Log4jLogger pmsencoderLogger