Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
pablouser1 committed Feb 2, 2024
1 parent 7a3427c commit 8a61195
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Para poder tener actualizaciones automáticas puedes usar los siguientes método
#### Zip
Para sistemas en los que __ puedes copiar archivos al disco (PC, Teléfono, Raspberry Pi...)

Descarga el [siguiente](https://kodi.pabloferreiro.es/repository.pabloferreiro/repository.pabloferreiro-1.2.0.zip) archivo e instálalo usando Kodi.
Descarga el [siguiente](https://kodi.pabloferreiro.es/repository.pabloferreiro/repository.pabloferreiro-1.2.1.zip) archivo e instálalo usando Kodi.

Una vez instalado ya puedes descargar Filmin para Kodi desde el menú de addons
#### Explorador
Expand All @@ -17,7 +17,7 @@ Accede a Ajustes -> Gestor de Archivos -> Añadir fuentes

Una vez ahí agrega la ruta `https://kodi.pabloferreiro.es` con el nombre que quieras.

Accede a Addons -> Instalar desde un archivo zip -> Carpeta con el nombre que pusiste -> repository.pabloferreiro -> repository.pabloferreiro-1.2.0.zip
Accede a Addons -> Instalar desde un archivo zip -> Carpeta con el nombre que pusiste -> repository.pabloferreiro -> repository.pabloferreiro-1.2.1.zip

Una vez instalado ya puedes descargar Filmin para Kodi desde el menú de addons

Expand Down
4 changes: 2 additions & 2 deletions resources/lib/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ def watching(self) -> list:

items = []
res = self._req(endpoint="/auth/keep-watching", uapi=True)
for item in res["data"]:
items.append(item["media"])

items = [x["media"] for x in res["data"]]

return items

Expand Down
1 change: 1 addition & 0 deletions resources/lib/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def change_profile(notify: bool = False):
if notify:
Dialog().ok("OK", settings.get_localized_string(40034))


def ask_domain():
"""
Let user pick a domain from a constant list
Expand Down
2 changes: 2 additions & 0 deletions resources/lib/views/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ class Catalog(Base):
subgenre_id: int

def set_state(self):
# TODO: Split and make more readable

item_type = _PARAMS.get("item_type")
genre_id = int(_PARAMS.get("genre_id", -1))
subgenre_id = int(_PARAMS.get("subgenre_id", -1))
Expand Down

0 comments on commit 8a61195

Please sign in to comment.