Skip to content

Commit

Permalink
Switched to minor version 4
Browse files Browse the repository at this point in the history
A minor update not a patch
  • Loading branch information
surfbryce committed May 29, 2023
1 parent 92ef886 commit 5b6fac4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/beautiful-lyrics.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "beautiful-lyrics",
"version": "2.3.3",
"version": "2.4.0",
"private": true,
"scripts": {
"build": "spicetify-creator --out=dist --minify",
Expand Down
2 changes: 1 addition & 1 deletion src/Services/AutoUpdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const CheckForUpdate = async () => {
// Make sure that we have a difference in version AND that we aren't below the first auto-update version
if (
isDifferent
&& ((cachedVersion.Major > 2) || ((cachedVersion.Major == 2) && (cachedVersion.Minor >= 3)))
&& ((cachedVersion.Major > 2) || ((cachedVersion.Major == 2) && (cachedVersion.Minor >= 4)))
) {
// Now send out the notifcation
Spicetify.showNotification(
Expand Down

0 comments on commit 5b6fac4

Please sign in to comment.