Skip to content

Commit b5d8bc3

Browse files
committed
chore(release): 1.1.0
1 parent 0ba0c45 commit b5d8bc3

File tree

5 files changed

+54
-20
lines changed

5 files changed

+54
-20
lines changed

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1-
# Changelog
2-
3-
All notable changes to this project will be documented in this file.
4-
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [1.1.0](https://github.com/TomasTNunes/TMDB-Player/compare/v1.0.0...v1.1.0) (2025-02-01)
6+
7+
8+
### Features
9+
10+
* add compatibility and support for firefox android ([c4fb879](https://github.com/TomasTNunes/TMDB-Player/commit/c4fb8791e725be18839343ba7fd8c3e5878a44c1))
11+
12+
13+
### Bug Fixes
14+
15+
* fix custom buttons layout in mobile devices ([#7](https://github.com/TomasTNunes/TMDB-Player/issues/7)) ([3989cb5](https://github.com/TomasTNunes/TMDB-Player/commit/3989cb5cda6686c1cfbf5027bd1fb63837f1b876))
16+
517
## [1.0.0]
618

719
### Features

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tmdb-player",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Adds a custom play button to TMDB pages, allowing users to stream movies and TV shows for free.",
55
"scripts": {
66
"build": "bash scripts/build.sh",

src/chromium/manifest.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"manifest_version": 3,
33
"name": "TMDB Player",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"description": "Adds a custom play button to TMDB pages, allowing users to stream movies and TV shows for free.",
66
"permissions": [
7-
"storage"
7+
"storage"
88
],
99
"host_permissions": [
1010
"https://www.themoviedb.org/*"
@@ -14,13 +14,23 @@
1414
},
1515
"content_scripts": [
1616
{
17-
"matches": ["https://www.themoviedb.org/movie/*"],
18-
"js": ["content/utils.js", "content/movie.js"],
17+
"matches": [
18+
"https://www.themoviedb.org/movie/*"
19+
],
20+
"js": [
21+
"content/utils.js",
22+
"content/movie.js"
23+
],
1924
"run_at": "document_end"
2025
},
2126
{
22-
"matches": ["https://www.themoviedb.org/tv/*"],
23-
"js": ["content/utils.js", "content/tv.js"],
27+
"matches": [
28+
"https://www.themoviedb.org/tv/*"
29+
],
30+
"js": [
31+
"content/utils.js",
32+
"content/tv.js"
33+
],
2434
"run_at": "document_end"
2535
}
2636
],

src/firefox/manifest.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"manifest_version": 3,
33
"name": "TMDB Player",
4-
"version": "1.0.0",
4+
"version": "1.1.0",
55
"description": "Adds a custom play button to TMDB pages, allowing users to stream movies and TV shows for free.",
66
"permissions": [
7-
"storage"
7+
"storage"
88
],
99
"host_permissions": [
1010
"https://www.themoviedb.org/*"
@@ -15,17 +15,29 @@
1515
}
1616
},
1717
"background": {
18-
"scripts": ["background/background.js"]
18+
"scripts": [
19+
"background/background.js"
20+
]
1921
},
2022
"content_scripts": [
2123
{
22-
"matches": ["https://www.themoviedb.org/movie/*"],
23-
"js": ["content/utils.js", "content/movie.js"],
24+
"matches": [
25+
"https://www.themoviedb.org/movie/*"
26+
],
27+
"js": [
28+
"content/utils.js",
29+
"content/movie.js"
30+
],
2431
"run_at": "document_end"
2532
},
2633
{
27-
"matches": ["https://www.themoviedb.org/tv/*"],
28-
"js": ["content/utils.js", "content/tv.js"],
34+
"matches": [
35+
"https://www.themoviedb.org/tv/*"
36+
],
37+
"js": [
38+
"content/utils.js",
39+
"content/tv.js"
40+
],
2941
"run_at": "document_end"
3042
}
3143
],

0 commit comments

Comments
 (0)