Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .idea/prettier.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# RantStats Extension for Rumble.com

## 1.5.2

- Fix dark text on red for subscriptions, gifts and raids

## 1.5.1

- Add options to disable gifts and raid capture

## 1.5.0

- Fix context menu showing up on all pages instead of only Rumble video pages
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rantstats-extension",
"version": "1.5.1",
"version": "1.5.2",
"packageManager": "yarn@4.6.0",
"description": "Add support for capturing paid Rumble Rants for Rumble.com livestreams.",
"main": "output/pages/content/content.js",
Expand Down
6 changes: 4 additions & 2 deletions src/components/rants/rant.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@
background: #bb0218;
}

&.notification * {
color: white;
&.notification *,
&.gift-notification *,
&.raid-notification * {
color: white !important;
}

.rant-amount,
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "RantStats Extension for Rumble.com",
"version": "1.5.1",
"version": "1.5.2",
"description": "Add support for capturing paid Rumble Rants for Rumble.com livestreams.",
"icons": {
"16": "images/icon-16.png",
Expand Down
Loading