Skip to content
This repository has been archived by the owner on Apr 11, 2018. It is now read-only.

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chocolateboy committed Apr 5, 2014
1 parent d9f83c6 commit bc7c5cf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ 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

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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.chocolatey</groupId>
<artifactId>pmsencoder</artifactId>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0</version>
<name>PMSEncoder</name>
<description>A plugin for PS3 Media Server that adds support for scriptable web video streaming.</description>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/com/chocolatey/pmsencoder/Plugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bc7c5cf

Please sign in to comment.