Skip to content

Commit

Permalink
fix issue in setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tobalan committed Mar 20, 2023
1 parent d71df9b commit 583aa69
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions 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.jiotv" name="JioTV" version="2.3.1" provider-name="tobalan">
<addon id="plugin.video.jiotv" name="JioTV" version="2.3.2" provider-name="tobalan">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.codequick" version="1.0.2"/>
Expand All @@ -22,8 +22,11 @@
<forum>https://botallen.com/discord</forum>
<website>https://botallen.com</website>
<email>[email protected]</email>
<source>https://github.com/krreet/plugin.video.jiotv</source>
<source>https://github.com/tobalan/plugin.video.jiotv</source>
<news>
[- 2.3.2 -]
[added] generate playlist is off by default

[- 2.3.1 -]
[added] caching of reponses

Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[- 2.3.2 -]
[added] generate playlist is off by default

[- 2.3.1 -]
[added] caching of reponses

Expand Down
2 changes: 1 addition & 1 deletion resources/lib/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def set_setting(id, value):
set_setting("catchupEnabled", "true")
set_setting("catchupWatchEpgBeginBufferMins", "0")
set_setting("catchupWatchEpgEndBufferMins", "0")
_setup(M3U_SRC, EPG_PATH)
_setup(M3U_SRC, EPG_SRC)


# Cache cleanup
Expand Down
2 changes: 1 addition & 1 deletion resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<category label="Setup">
<setting id="channelsrc" type="bool" label="Channel API 3.0" default="true"/>
<setting label="Setup Simple IPTV PVR" type="action" id="pvrsetup" action="RunPlugin(plugin://plugin.video.jiotv/resources/lib/main/pvrsetup/)" option="close"/>
<setting id="m3ugen" type="bool" label="Generate Playlist On Startup" default="true"/>
<setting id="m3ugen" type="bool" label="Generate Playlist On Startup" default="false"/>
<!-- <setting id="extraPl" type="text" label="Extra Playlist"/> -->
<setting id="applyAllSettings1" type="action" label="Apply all settings" action="RunPlugin(plugin://plugin.video.jiotv/resources/lib/main/applyall/)" option="close"/>
</category>
Expand Down

0 comments on commit 583aa69

Please sign in to comment.