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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="IMG_9016.webp" alt="DiscordLyrics by MallyDev2" width="100%">
<img src="assets/IMG_9016.webp" alt="DiscordLyrics by MallyDev2" width="100%">
</p>

<h1 align="center">DiscordLyrics</h1>
Expand Down Expand Up @@ -97,4 +97,4 @@ https://github.com/sponsors/MallyDev2

## License

Released under the [GPL-3.0 icense](LICENSE).
Released under the [GPL-3.0 License](LICENSE).
File renamed without changes
Binary file removed assets/discordlyrics-bg.webp
Binary file not shown.
Binary file removed assets/github-social-preview.webp
Binary file not shown.
Binary file removed assets/social-preview.webp
Binary file not shown.
Binary file modified dist/DiscordLyrics-Installer.exe
Binary file not shown.
Binary file modified dist/DiscordLyrics-release.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion package-lock.json

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
Expand Up @@ -4,7 +4,7 @@
"description": "Spotify lyrics status for BetterDiscord and Vencord.",
"private": false,
"author": "MallyDev2",
"license": "MIT",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/MallyDev2/DiscordLyrics#readme",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions scripts/build-release.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ copyFile(path.join(dist, "DiscordLyrics-Installer-UI.ps1"), path.join(packageDir
copyFile(path.join(dist, "DiscordLyrics-Installer.vbs"), path.join(packageDir, "DiscordLyrics-Installer.vbs"));
copyFile(path.join(dist, "DiscordLyrics-Installer.cmd"), path.join(packageDir, "DiscordLyrics-Installer.cmd"));
copyFile(path.join(root, "README.md"), path.join(packageDir, "README.md"));
if (fs.existsSync(path.join(root, "IMG_9016.webp"))) {
copyFile(path.join(root, "IMG_9016.webp"), path.join(packageDir, "IMG_9016.webp"));
if (fs.existsSync(path.join(root, "assets", "IMG_9016.webp"))) {
copyFile(path.join(root, "assets", "IMG_9016.webp"), path.join(packageDir, "assets", "IMG_9016.webp"));
}
copyFile(path.join(root, "LICENSE"), path.join(packageDir, "LICENSE"));
copyFile(path.join(root, "CHANGELOG.md"), path.join(packageDir, "CHANGELOG.md"));
Expand Down
Loading