Skip to content

Commit

Permalink
Rawr
Browse files Browse the repository at this point in the history
  • Loading branch information
Goldenfreddy0703 committed Nov 29, 2024
1 parent 3023b46 commit 738dcd0
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion repo/plugin.video.otaku.testing/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.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.25">
<addon id="plugin.video.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.26">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.beautifulsoup4"/>
Expand Down
3 changes: 3 additions & 0 deletions repo/plugin.video.otaku.testing/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Changelog v5.1.26 (2024-11-28):
- Fix Small Bugs

Changelog v5.1.25 (2024-11-28):
- Improved Airing Calendar for Mal
- Fix Small Bug with smartscroll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,4 @@ def delete_magnet(self, magnet_id):
@staticmethod
def resolve_uncached_source(source, runinbackground):
heading = f'{control.ADDON_NAME}: Cache Resolver'
control.ok_dialog(heading, 'Cache Reolver Has not been added for Premiumize')
control.ok_dialog(heading, 'Cache Reolver Has not been added for AllDebrid')
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ def resolve_single_magnet(self, hash_, magnet, episode='', pack_select=False):
@staticmethod
def resolve_uncached_source(source, runinbackground):
heading = f'{control.ADDON_NAME}: Cache Resolver'
control.ok_dialog(heading, 'Cache Reolver Has not been added for Premiumize')
control.ok_dialog(heading, 'Cache Reolver Has not been added for Debrid-Link')
13 changes: 7 additions & 6 deletions repo/plugin.video.otaku.testing/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ def update_dub_json():
def getChangeLog():
changelog_path = os.path.join(control.ADDON_PATH, 'changelog.txt')
news_path = os.path.join(control.ADDON_PATH, 'news.txt')
with open(changelog_path) as changelog_file, open(news_path) as news_file:

with open(changelog_path, encoding='utf-8') as changelog_file, open(news_path, encoding='utf-8') as news_file:
changelog_text = changelog_file.read()
news_text = news_file.read()

heading = '[B]%s - v%s - ChangeLog & News[/B]' % (control.ADDON_NAME, control.ADDON_VERSION)
from resources.lib.windows.textviewer import TextViewerXML
windows = TextViewerXML('textviewer.xml', control.ADDON_PATH, heading=heading, changelog_text=changelog_text, news_text=news_text)
Expand All @@ -96,10 +96,10 @@ def getChangeLog():

def getInstructions():
instructions_path = os.path.join(control.ADDON_PATH, 'instructions.txt')
with open(instructions_path) as instructions_file:

with open(instructions_path, encoding='utf-8') as instructions_file:
instructions_text = instructions_file.read()

heading = '[B]%s - v%s - Instructions[/B]' % (control.ADDON_NAME, control.ADDON_VERSION)
from resources.lib.windows.textviewer import TextViewerXML
windows = TextViewerXML('textviewer_1.xml', control.ADDON_PATH, heading=heading, instructions_text=instructions_text)
Expand Down Expand Up @@ -144,6 +144,7 @@ def version_check():
control.setSetting('otaku.version', control.ADDON_VERSION)
control.log(f"### {reuselang} Re-uselanguageinvoker")


if __name__ == "__main__":
control.log('################## RUNNING MAINTENANCE ######################')
version_check()
Expand Down
2 changes: 1 addition & 1 deletion repo/zips/addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<poster>poster.png</poster>
</assets>
</extension>
</addon><addon id="plugin.video.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.25">
</addon><addon id="plugin.video.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.26">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.beautifulsoup4" />
Expand Down
2 changes: 1 addition & 1 deletion repo/zips/addons.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0bd728c846bbf4ebc57da56651d01d3b
cd821ec9c53b560fcc05d256d72086d0
2 changes: 1 addition & 1 deletion repo/zips/plugin.video.otaku.testing/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.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.25">
<addon id="plugin.video.otaku.testing" name="Otaku Testing" provider-name="TeamOtaku" version="5.1.26">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.beautifulsoup4"/>
Expand Down
Binary file not shown.

0 comments on commit 738dcd0

Please sign in to comment.