Skip to content

Commit

Permalink
release: v1.64.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newt-sc committed Jan 18, 2025
1 parent 9e88ec4 commit 0a7230e
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
if: "!startsWith(needs.validate.outputs.commit, 'chore:')"
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.11

- name: install
if: "!startsWith(needs.validate.outputs.commit, 'chore:')"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-tests-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.11

- name: install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-tests-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: setup-python
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: 3.11

- name: install
run: |
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v1.64.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.64.0):
* Remove RD support

* [v1.63.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.63.0):
* Fix episode browsing for some seasons with incomplete meta

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ Designed for low-end devices and Estuary skin.
* Caching of results
* Debrid support
* Premiumize
* RealDebrid
* AllDebrid
* Misc
* Migrate watched titles from Trakt.tv to IMDb (via rating)
Expand Down
2 changes: 1 addition & 1 deletion a4kStreaming/lib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def get_premiumize_apikey(core):
return core.kodi.get_setting('premiumize.apikey')

def get_realdebrid_apikey(core):
return core.kodi.get_setting('realdebrid.apikey')
return None # core.kodi.get_setting('realdebrid.apikey')

def get_alldebrid_apikey(core):
return core.kodi.get_setting('alldebrid.apikey')
Expand Down
5 changes: 4 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.63.0"
version="1.64.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -32,6 +32,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.64.0]:
* Remove RD support

[v1.63.0]:
* Fix episode browsing for some seasons with incomplete meta

Expand Down
5 changes: 4 additions & 1 deletion packages/addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<addons>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.63.0"
version="1.64.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -35,6 +35,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.64.0]:
* Remove RD support

[v1.63.0]:
* Fix episode browsing for some seasons with incomplete meta

Expand Down
2 changes: 1 addition & 1 deletion packages/addons.xml.crc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
53fd7e835df6943c19b8ee0f1878fecd4a4a34ab
93380a29097048259a2325e6eb4d16cb2a5734fc
6 changes: 3 additions & 3 deletions resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@
<setting id="premiumize.apikey" type="text" label="33402" default=""/>
<setting type="lsep" label="33403"/>
<setting type="sep"/>
<setting id="realdebrid.apikey" type="text" label="33404" default=""/>
<setting type="lsep" label="33405"/>
<setting type="sep"/>
<!-- <setting id="realdebrid.apikey" type="text" label="33404" default=""/> -->
<!-- <setting type="lsep" label="33405"/> -->
<!-- <setting type="sep"/> -->
<setting id="alldebrid.apikey" type="text" label="33406" default=""/>
</category>
<!-- IMDb -->
Expand Down

0 comments on commit 0a7230e

Please sign in to comment.