-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maintaining three individual xml files to update version and changelog information was rather silly
- Loading branch information
Showing
13 changed files
with
78 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
v1.0.3 | ||
- Add "SD Channels" channel group | ||
- Use IPv4 specific backend discovery URLs (ipv4.my.hdhomerun.com) | ||
- Resolve issue with SQLite database being locked during initialization of a new connection | ||
v1.0.3 (2017.03.05) | ||
- Add "SD Channels" channel group | ||
- Use IPv4 specific backend discovery URLs (ipv4.my.hdhomerun.com) | ||
- Resolve issue with SQLite database being locked during initialization of a new connection | ||
|
||
v1.0.2 (2017.02.06) | ||
- Add option to enable discovery of extended (8 hour) Electronic Program Guide data | ||
- Update SQLite database engine to v3.17.0 | ||
- (Linux) Switch to statically linked OpenSSL (1.0.2k) and zlib (1.2.8) libraries for better system compatibility | ||
- (Android) Initial release for Android ARM and x86 devices. Experimental with known issues -- see documentation (https://github.com/djp952/pvr.hdhomerundvr/wiki) | ||
|
||
v1.0.2 | ||
- Add option to enable discovery of extended (8 hour) Electronic Program Guide data | ||
- Update SQLite database engine to v3.17.0 | ||
- (Linux) Switch to statically linked OpenSSL (1.0.2k) and zlib (1.2.8) libraries for better system compatibility | ||
- (Android) Initial release for Android ARM and x86 devices. Experimental with known issues -- see documentation (https://github.com/djp952/pvr.hdhomerundvr/wiki) | ||
v1.0.1 (2017.02.15) | ||
- Fix minor problem with one database table not being truncated at startup | ||
- (Linux) Use older GNU C++ Compiler (g++ 4.9) for better system compatibility | ||
|
||
v1.0.1 | ||
- Fix minor problem with one database table not being truncated at startup | ||
- (Linux) Use older GNU C++ Compiler (g++ 4.9) for better system compatibility | ||
|
||
v1.0.0 | ||
- Initial release | ||
v1.0.0 (2017.02.10) | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<#@ template debug="false" hostspecific="true" language="C#" #> | ||
<#@ assembly name="System.Core" #> | ||
<#@ import namespace="System.IO" #> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<addon id="pvr.hdhomerundvr" version="<#= new Version(File.ReadAllText(this.Host.ResolvePath(this.Host.ResolveParameterValue("", "", "versiontxt")))).ToString(3) #>" name="HDHomeRun DVR PVR Client" provider-name="Michael Brehm (djp952)"> | ||
<requires> | ||
<import addon="xbmc.pvr" version="4.1.0"/> | ||
</requires> | ||
<extension point="xbmc.pvrclient" needs_configuration="false" library_<#= this.Host.ResolveParameterValue("", "", "platform") #>="<#= this.Host.ResolveParameterValue("", "", "dllname") #>"/> | ||
<extension point="xbmc.addon.metadata"> | ||
<summary lang="en_GB">HDHomeRun DVR PVR Client</summary> | ||
<description lang="en_GB">HDHomeRun DVR frontend. Supports streaming Live TV, Recordings, Electronic Program Guide (EPG) and Timers. Requires a SiliconDust HDHomeRun DVR Service subscription (https://www.silicondust.com/dvr-service) and an active HDHomeRun RECORD device on the local network.</description> | ||
<license>MIT License (https://opensource.org/licenses/MIT)</license> | ||
<website>https://github.com/djp952/pvr.hdhomerundvr/wiki</website> | ||
<source>https://github.com/djp952/pvr.hdhomerundvr</source> | ||
<platform><#= this.Host.ResolveParameterValue("", "", "platform") #></platform> | ||
</extension> | ||
</addon> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters