Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: bump version 0.7.4b #78

Merged
merged 3 commits into from
Jul 15, 2024
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Spotify Integration by Oceanity <sub style="color:gray">v0.7.4a</sub>
# Spotify Integration by Oceanity <sub style="color:gray">v0.7.4b</sub>

This is a Firebot Script that will allow you to integrate Spotify functionality and information into your Firebot setup. Due to very stict limits on Spotify's API, it does require that you make your own application in Spotify's developer portal and supply your own Client ID and Secret.

Expand Down
5 changes: 5 additions & 0 deletions changelogs/changelog-0.7.4a.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## What's Changed

**Fixes**

- Fixed $var menu not opening on some Effects
5 changes: 5 additions & 0 deletions changelogs/changelog-0.7.4b.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## What's Changed

**Fixes**

- Fixed $var menu appearing above some input fields and cutting off at the top of the screen
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oceanity-spotify",
"scriptOutputName": "oceanitySpotifyIntegration",
"version": "0.7.4a",
"version": "0.7.4b",
"description": "Adds Spotify Song Requests to Firebot",
"main": "",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/tamperMonkey/lyricsGrabber.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Lyric Grabber
// @namespace https://oceanity.github.io
// @version 0.7.4a
// @version 0.7.4b
// @description Sends Spotify lyrics to Firebot
// @author Oceanity
// @match https://open.spotify.com/*
Expand All @@ -16,7 +16,7 @@
fetch: originalFetch
} = window;

const version = "0.7.4a";
const version = "0.7.4b";

// Consts
const lyricUrlRegex = /https:\/\/spclient\.wg\.spotify\.com\/color-lyrics\/v2\/track\/([a-zA-Z0-9]+)\/image\/.+/;
Expand Down
Loading