Skip to content

Commit

Permalink
3.6.7
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 10, 2024
1 parent d8ec9b0 commit 436000a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions plugin.video.idanplus/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.idanplus" name="עידן+ פלוס" version="3.6.6" provider-name="Fishenzon">
<addon id="plugin.video.idanplus" name="עידן+ פלוס" version="3.6.7" provider-name="Fishenzon">
<requires>
<import addon="script.module.requests"/>
<import addon="script.module.xmltodict"/>
Expand All @@ -19,7 +19,7 @@
<platform>all</platform>
<summary lang="en">צפיה בערוצי עידן פלוס ובתכניות מהאתרים הרשמיים.</summary>
<description lang="en">צפיה בערוצי עידן פלוס ובתכניות מהאתרים הרשמיים.[CR]אפשרויות שונות בהגדרות ההרחבה ובקליק ימני על פריט ברשימה.</description>
<news>- Some fixes for Kan-VOD's lists.[CR]- No need to save icins locally.</news>
<news>- Some fixes for Kan-VOD's lists.[CR]- No need to save icons locally.[CR]- Fix link to Kan podcasts.</news>
<supportedcontent>
<content>tvshows</content>
</supportedcontent>
Expand Down
5 changes: 4 additions & 1 deletion plugin.video.idanplus/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
v3.6.7 - 10/11/2024
- Fix link to Kan podcasts.

v3.6.6 - 10/11/2024
- Some fixes for Kan-VOD's lists.
- No need to save icins locally.
- No need to save icons locally.

v3.6.5 - 06/11/2024
- Some fixes for Kan-VOD's lists.
Expand Down
Binary file not shown.
10 changes: 5 additions & 5 deletions plugin.video.idanplus/resources/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def VODs():
name = common.GetLabelColor(common.GetLocaleString(30607), bold=True, color="none")
common.addDir(name, 'https://www.kankids.org.il', 5, common.GetIconFullPath("23tv.jpg"), infos={"Title": name}, module='kan')
name = common.GetLabelColor("כאן - ארכיון", bold=True, color="none")
common.addDir(name, 'https://archive.kan.org.il/', 41, common.GetIconFullPath("kan.jpg"), infos={"Title": name}, module='kan')
common.addDir(name, 'https://www.kan.org.il/lobby/archive/', 41, common.GetIconFullPath("kan.jpg"), infos={"Title": name}, module='kan')
name = common.GetLabelColor(common.GetLocaleString(30608), bold=True, color="none")
common.addDir(name, 'https://www.mako.co.il/mako-vod-index?filter=provider&vcmId=3377c13070733210VgnVCM2000002a0c10acRCRD', 1, common.GetIconFullPath("24telad.png"), infos={"Title": name}, module='keshet')
name = common.GetLabelColor(common.GetLocaleString(30630), bold=True, color="none")
Expand Down Expand Up @@ -166,7 +166,7 @@ def Musics():

def Podcasts():
name = common.GetLabelColor("פודקאסטים - כאן", bold=True, color="none")
common.addDir(name, '', 31, common.GetIconFullPath('kan.jpg'), infos={"Title": name}, module='kan')
common.addDir(name, '4451', 31, common.GetIconFullPath('kan.jpg'), infos={"Title": name}, module='kan')
name = common.GetLabelColor("פודקאסטים לילדים - כאן", bold=True, color="none")
common.addDir(name, '', 33, common.GetIconFullPath('kan.jpg'), infos={"Title": name}, module='kan')
name = common.GetLabelColor("פודקאסטים ספורט 5", bold=True, color="none")
Expand Down Expand Up @@ -201,13 +201,13 @@ def GetModuleName(module, mode, moreData, catName=''):
if module == 'kan': moduleName = common.GetLocaleString(30400) if catName == '' else catName
elif module == 'keshet': moduleName = common.GetLocaleString(30603)
elif module == 'reshet': moduleName = common.GetLocaleString(30604)
elif module == '14tv': moduleName = common.GetLocaleString(30606)
elif module == '14tv': moduleName = common.GetLocaleString(30606)
elif module == '9tv': moduleName = common.GetLocaleString(30630)
elif module == '891fm': moduleName = common.GetLocaleString(30734)
elif module == 'sport5': moduleName = common.GetLocaleString(30632)
elif module == 'sport1': moduleName = common.GetLocaleString(31000)
elif module == '99fm': moduleName = common.GetLocaleString(30704)
elif module == 'glz': moduleName = common.GetLocaleString(30702)
elif module == '99fm': moduleName = common.GetLocaleString(30704)
elif module == 'glz': moduleName = common.GetLocaleString(30702)
elif module == '100fm': moduleName = common.GetLocaleString(30726)
return moduleName

Expand Down
2 changes: 1 addition & 1 deletion ver.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.6
3.6.7

0 comments on commit 436000a

Please sign in to comment.