Skip to content

Commit

Permalink
Merge pull request #4610 from jaylinski/matrix
Browse files Browse the repository at this point in the history
[plugin.video.formula1] 2.0.3
  • Loading branch information
basrieter authored Dec 23, 2024
2 parents 130b780 + c0d157c commit e2803ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
9 changes: 6 additions & 3 deletions plugin.video.formula1/addon.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.formula1" name="Formula 1" version="2.0.2" provider-name="jaylinski">
<addon id="plugin.video.formula1" name="Formula 1" version="2.0.3" provider-name="jaylinski">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" version="2.22.0"/>
<import addon="script.module.requests" version="2.29.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
Expand All @@ -16,7 +16,10 @@
<forum>https://forum.kodi.tv/showthread.php?tid=352138</forum>
<website>https://www.formula1.com</website>
<source>https://github.com/jaylinski/kodi-addon-formula1</source>
<news>2.0.2 (2021-05-22)
<news>2.0.3 (2024-12-22)
Updated player API key

2.0.2 (2021-05-22)
Switched to new player API (the old player API did not display the latest videos)

2.0.1 (2021-04-16)
Expand Down
5 changes: 3 additions & 2 deletions plugin.video.formula1/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
<img align="right" src="https://github.com/xbmc/xbmc/raw/master/addons/webinterface.default/icon-128.png" alt="Kodi logo">

[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/jaylinski/kodi-addon-formula1.svg)](https://github.com/jaylinski/kodi-addon-formula1/releases)
[![Build Status](https://travis-ci.com/jaylinski/kodi-addon-formula1.svg?branch=master)](https://travis-ci.com/jaylinski/kodi-addon-formula1)
[![CI Build Status](https://github.com/jaylinski/kodi-addon-formula1/actions/workflows/ci.yml/badge.svg)](https://github.com/jaylinski/kodi-addon-formula1/actions)
[![Link to Kodi releases](https://img.shields.io/badge/Kodi-v21%20%22Omega%22-green.svg)](https://kodi.wiki/view/Releases)
[![Link to Kodi releases](https://img.shields.io/badge/Kodi-v20%20%22Nexus%22-green.svg)](https://kodi.wiki/view/Releases)
[![Link to Kodi releases](https://img.shields.io/badge/Kodi-v19%20%22Matrix%22-green.svg)](https://kodi.wiki/view/Releases)
[![Link to Kodi releases](https://img.shields.io/badge/Kodi-v18%20%22Leia%22-green.svg)](https://kodi.wiki/view/Releases)

This [Kodi](https://github.com/xbmc/xbmc) Add-on provides a minimal interface for
[formula1.com](https://www.formula1.com/).
Expand Down
2 changes: 1 addition & 1 deletion plugin.video.formula1/resources/lib/f1/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Api:
"""This class uses the Formula 1 v1 API."""

api_base_url = "https://api.formula1.com/v1/"
api_key = "jHveMyuKQgXOCG3DN2ucX5zVmCpWNsFM" # Extracted from public Formula 1 Android App
api_key = "RNoNDmjJGUFSu1Re9GfMVzJfDClaUV47" # Extracted from public Formula 1 Android App
api_limit = 10
api_date_format = "%Y-%m-%dT%H:%M:%S"

Expand Down

0 comments on commit e2803ba

Please sign in to comment.