Skip to content

Commit

Permalink
Update .APPX link to formal release; set v3.4.0 release date
Browse files Browse the repository at this point in the history
  • Loading branch information
djp952 committed Jan 31, 2021
1 parent 9fe7e8d commit 9fce8e3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions msbuild.proj
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@
<BuildNumber>$([System.Version]::Parse($(AddonVersion)).Revision)</BuildNumber>
<AppxVersionCode>18.9.$(BuildNumber).0</AppxVersionCode>
<PhoneProductId>1F9928BF-0F41-49C8-941A-466153ED2C55</PhoneProductId>
<KodiAppx>Kodi-20201023-0655c2c7-Leia-x64</KodiAppx>
<KodiAppx>Kodi-18.9-Leia_18.9.0.0_x64</KodiAppx>
<ZukiAppx>kodi-18.9-zuki.pvr.hdhomerundvr-x64-$(AddonVersion)</ZukiAppx>
<AppxNamespaces>&lt;Namespace Prefix='n' Uri='http://schemas.microsoft.com/appx/manifest/foundation/windows10' /&gt;&lt;Namespace Prefix='mp' Uri='http://schemas.microsoft.com/appx/2014/phone/manifest' /&gt;</AppxNamespaces>
</PropertyGroup>
Expand All @@ -658,7 +658,7 @@

<MakeDir Directories="tmp" ContinueOnError="false"/>
<Message Condition="!Exists('tmp\$(KodiAppx).appx')" Importance="high" Text="Downloading $(KodiAppx).appx ..."/>
<Exec Condition="!Exists('tmp\$(KodiAppx).appx')" Command="curl http://mirrors.kodi.tv/nightlies/windows/uwp64/Leia/$(KodiAppx).appx -L -o tmp\$(KodiAppx).appx " ContinueOnError="false" />
<Exec Condition="!Exists('tmp\$(KodiAppx).appx')" Command="curl https://mirrors.kodi.tv/releases/windows/UWP/$(KodiAppx).appx -L -o tmp\$(KodiAppx).appx " ContinueOnError="false" />

<RemoveDir Directories="out\$(KodiAppx)"/>
<Exec Command="makeappx unpack /p tmp\$(KodiAppx).appx /l /d out\$(KodiAppx)" ContinueOnError="false"/>
Expand Down
4 changes: 2 additions & 2 deletions pvr.hdhomerundvr/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
v3.4.0 (2021.01.xx)
v3.4.0 (2021.01.30)
- Update libhdhomerun library to version 20201023
- Update SQLite database engine to version 3.34.1
- Add "Export discovery diagnostic data" PVR Client Specific setting
- Add "HEVC Channels" channel group
- Add support for persistance of Recorded TV watched/unwatched (play count) flags
- Add support for persistent Recorded TV watched/unwatched (play count) flags
- Change "DVR stream read operation minimum size" advanced option to default to "Automatic" and allow for an updated range of 4KiB to 64KiB
- Replace forward slash characters with hyphen characters in Recorded TV folder names to work around Kodi limitation
- Trigger an XMLTV reload operation during startup if there are missing channel(s) in the Electronic Program Guide (EPG) listings
Expand Down
2 changes: 1 addition & 1 deletion src/pvr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3594,7 +3594,7 @@ PVR_ERROR SetRecordingPlayCount(PVR_RECORDING const& recording, int playcount)
try {

// Only handle a play count change to zero here, indicating the recording is being marked as unwatched, in this
// case there will no follow-up call to SetRecordingLastPlayedPosition
// case there will be no follow-up call to SetRecordingLastPlayedPosition
if(playcount == 0) set_recording_lastposition(connectionpool::handle(g_connpool), recording.strRecordingId, 0);
}

Expand Down

0 comments on commit 9fce8e3

Please sign in to comment.