Skip to content

Commit

Permalink
Updated changelogs and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Oceanity committed Jul 15, 2024
1 parent 8b1a5d0 commit 9982dab
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
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

0 comments on commit 9982dab

Please sign in to comment.