Skip to content

Commit

Permalink
Merge pull request #130 from AlwinEsch/Matrix-change
Browse files Browse the repository at this point in the history
[Matrix] API change update / cleanups
  • Loading branch information
AlwinEsch authored Apr 24, 2020
2 parents 42a7fe2 + c136355 commit f0ee3d8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[![License: GPL v2+](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md)
[![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md)
[![Build Status](https://travis-ci.org/kodi-pvr/pvr.vdr.vnsi.svg?branch=Matrix)](https://travis-ci.org/kodi-pvr/pvr.vdr.vnsi/branches)
[![Build Status](https://dev.azure.com/teamkodi/kodi-pvr/_apis/build/status/kodi-pvr.pvr.vdr.vnsi?branchName=Matrix)](https://dev.azure.com/teamkodi/kodi-pvr/_build/latest?definitionId=69&branchName=Matrix)
[![Build Status](https://jenkins.kodi.tv/view/Addons/job/kodi-pvr/job/pvr.vdr.vnsi/job/Matrix/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/kodi-pvr%2Fpvr.vdr.vnsi/branches/)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/5120/badge.svg)](https://scan.coverity.com/projects/5120)

# VDR VNSI PVR
VDR VNSI PVR client addon for [Kodi] (http://kodi.tv)
VDR VNSI PVR client addon for [Kodi](https://kodi.tv)

## Build instructions

Expand All @@ -19,5 +19,5 @@ VDR VNSI PVR client addon for [Kodi] (http://kodi.tv)

##### Useful links

* [Kodi's PVR user support] (http://forum.kodi.tv/forumdisplay.php?fid=169)
* [Kodi's PVR development support] (http://forum.kodi.tv/forumdisplay.php?fid=136)
* [Kodi's PVR user support](https://forum.kodi.tv/forumdisplay.php?fid=169)
* [Kodi's PVR development support](https://forum.kodi.tv/forumdisplay.php?fid=136)
4 changes: 2 additions & 2 deletions pvr.vdr.vnsi/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.vdr.vnsi"
version="4.2.7"
version="4.2.8"
name="VDR VNSI Client"
provider-name="Team Kodi, FernetMenta">
<requires>@ADDON_DEPENDS@</requires>
Expand Down Expand Up @@ -173,7 +173,7 @@
<disclaimer lang="zh_CN">这是不稳定版的软件!作者不对录像失败、错误定时造成时间浪费或其它不良影响负责。</disclaimer>
<disclaimer lang="zh_TW">這是測試版軟體!其原創作者並無法對於以下情況負責,包含:錄影失敗,不正確的定時設定,多餘時數,或任何產生的其它不良影響...</disclaimer>
<platform>@PLATFORM@</platform>
<license>GPL-2.0+</license>
<license>GPL-2.0-or-later</license>
<source>https://github.com/kodi-pvr/pvr.vdr.vnsi</source>
<forum>https://forum.kodi.tv/forumdisplay.php?fid=169</forum>
<assets>
Expand Down
5 changes: 5 additions & 0 deletions pvr.vdr.vnsi/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
4.2.8
- Update PVR API 6.4.0
- Correct license name on addon.xml
- Minor cleanups

4.2.7
- Update PVR API 6.3.0

Expand Down
2 changes: 1 addition & 1 deletion src/VNSISession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ bool cVNSISession::Login()

if (m_name.empty())
{
XBMC->Log(LOG_NOTICE, "Logged in at '%lu+%i' to '%s' Version: '%s' with protocol version '%d'",
XBMC->Log(LOG_INFO, "Logged in at '%lu+%i' to '%s' Version: '%s' with protocol version '%d'",
vdrTime, vdrTimeOffset, ServerName, ServerVersion, protocol);
}
}
Expand Down

0 comments on commit f0ee3d8

Please sign in to comment.