Version bump
This commit is contained in:
parent
377f721f1d
commit
5af5412009
4 changed files with 22 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
[![stable version](https://img.shields.io/badge/stable_version-1.8.18-blue.svg?maxAge=60&style=flat) ](https://github.com/croneter/binary_repo/raw/master/stable/repository.plexkodiconnect/repository.plexkodiconnect-1.0.2.zip)
|
[![stable version](https://img.shields.io/badge/stable_version-1.8.18-blue.svg?maxAge=60&style=flat) ](https://github.com/croneter/binary_repo/raw/master/stable/repository.plexkodiconnect/repository.plexkodiconnect-1.0.2.zip)
|
||||||
[![beta version](https://img.shields.io/badge/beta_version-2.0.4-red.svg?maxAge=60&style=flat) ](https://github.com/croneter/binary_repo/raw/master/beta/repository.plexkodiconnectbeta/repository.plexkodiconnectbeta-1.0.2.zip)
|
[![beta version](https://img.shields.io/badge/beta_version-2.0.5-red.svg?maxAge=60&style=flat) ](https://github.com/croneter/binary_repo/raw/master/beta/repository.plexkodiconnectbeta/repository.plexkodiconnectbeta-1.0.2.zip)
|
||||||
|
|
||||||
[![Installation](https://img.shields.io/badge/wiki-installation-brightgreen.svg?maxAge=60&style=flat)](https://github.com/croneter/PlexKodiConnect/wiki/Installation)
|
[![Installation](https://img.shields.io/badge/wiki-installation-brightgreen.svg?maxAge=60&style=flat)](https://github.com/croneter/PlexKodiConnect/wiki/Installation)
|
||||||
[![FAQ](https://img.shields.io/badge/wiki-FAQ-brightgreen.svg?maxAge=60&style=flat)](https://github.com/croneter/PlexKodiConnect/wiki/faq)
|
[![FAQ](https://img.shields.io/badge/wiki-FAQ-brightgreen.svg?maxAge=60&style=flat)](https://github.com/croneter/PlexKodiConnect/wiki/faq)
|
||||||
|
|
13
addon.xml
13
addon.xml
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="2.0.4" provider-name="croneter">
|
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="2.0.5" provider-name="croneter">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
<import addon="script.module.requests" version="2.9.1" />
|
<import addon="script.module.requests" version="2.9.1" />
|
||||||
|
@ -61,7 +61,16 @@
|
||||||
<summary lang="da_DK">Indbygget Integration af Plex i Kodi</summary>
|
<summary lang="da_DK">Indbygget Integration af Plex i Kodi</summary>
|
||||||
<description lang="da_DK">Tilslut Kodi til din Plex Media Server. Dette plugin forudsætter, at du administrere alle dine videoer med Plex (og ikke med Kodi). Du kan miste data som allerede er gemt i Kodi video og musik-databaser (dette plugin ændrer direkte i dem). Brug på eget ansvar!</description>
|
<description lang="da_DK">Tilslut Kodi til din Plex Media Server. Dette plugin forudsætter, at du administrere alle dine videoer med Plex (og ikke med Kodi). Du kan miste data som allerede er gemt i Kodi video og musik-databaser (dette plugin ændrer direkte i dem). Brug på eget ansvar!</description>
|
||||||
<disclaimer lang="da_DK">Brug på eget ansvar</disclaimer>
|
<disclaimer lang="da_DK">Brug på eget ansvar</disclaimer>
|
||||||
<news>version 2.0.4 (beta only):
|
<news>version 2.0.5 (beta only):
|
||||||
|
- WARNING: You will need to reset the Kodi database!
|
||||||
|
- Fix art and show info not showing for addon paths
|
||||||
|
- Fix episode information not working
|
||||||
|
- Big Kodi DB overhaul - ensure video metadata updates/deletes correctly
|
||||||
|
- Artwork code overhaul
|
||||||
|
- Greatly speed up switch of PMS
|
||||||
|
- And a lot of other stuff
|
||||||
|
|
||||||
|
version 2.0.4 (beta only):
|
||||||
- WARNING: You will need to reset the Kodi database!
|
- WARNING: You will need to reset the Kodi database!
|
||||||
- Many improvements to the Kodi database handling which should get rid of some weird bugs
|
- Many improvements to the Kodi database handling which should get rid of some weird bugs
|
||||||
- Many improvements to playback startup
|
- Many improvements to playback startup
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
version 2.0.5 (beta only):
|
||||||
|
- WARNING: You will need to reset the Kodi database!
|
||||||
|
- Fix art and show info not showing for addon paths
|
||||||
|
- Fix episode information not working
|
||||||
|
- Big Kodi DB overhaul - ensure video metadata updates/deletes correctly
|
||||||
|
- Artwork code overhaul
|
||||||
|
- Greatly speed up switch of PMS
|
||||||
|
- And a lot of other stuff
|
||||||
|
|
||||||
version 2.0.4 (beta only):
|
version 2.0.4 (beta only):
|
||||||
- WARNING: You will need to reset the Kodi database!
|
- WARNING: You will need to reset the Kodi database!
|
||||||
- Many improvements to the Kodi database handling which should get rid of some weird bugs
|
- Many improvements to the Kodi database handling which should get rid of some weird bugs
|
||||||
|
|
|
@ -75,7 +75,7 @@ COMPANION_PORT = int(_ADDON.getSetting('companionPort'))
|
||||||
PKC_MACHINE_IDENTIFIER = None
|
PKC_MACHINE_IDENTIFIER = None
|
||||||
|
|
||||||
# Minimal PKC version needed for the Kodi database - otherwise need to recreate
|
# Minimal PKC version needed for the Kodi database - otherwise need to recreate
|
||||||
MIN_DB_VERSION = '2.0.4'
|
MIN_DB_VERSION = '2.0.5'
|
||||||
|
|
||||||
# Database paths
|
# Database paths
|
||||||
_DB_VIDEO_VERSION = {
|
_DB_VIDEO_VERSION = {
|
||||||
|
|
Loading…
Reference in a new issue