Skip to content

Commit

Permalink
feat: v4.44.6
Browse files Browse the repository at this point in the history
  • Loading branch information
surmon-china committed Sep 11, 2024
1 parent 782d4ed commit 5fb99f4
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<a href="https://github.com/surmon-china/surmon.me" target="blank">
<img src="/screenhots/logo.svg" height="48" alt="surmon.me logo" />
<img src="/screenshots/logo.svg" height="48" alt="surmon.me logo" />
</a>
</p>

Expand Down Expand Up @@ -57,7 +57,7 @@ $ pnpm run release

**Rule:**

- Any PR opend`CI:Build test`
- Any PR opened`CI:Build test`
- New tag `v*``CI:Create Release`
- Release created → `CI:Deploy``CI:Execute server script`

Expand Down
12 changes: 4 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,17 @@

<!-- meta -->
<meta charset="utf-8" />
<meta http-equiv="cleartype" content="on" />
<meta http-equiv="x-dns-prefetch-control" content="on" />
<meta name="author" content="Surmon" />
<meta name="MobileOptimized" content="320" />
<meta name="HandheldFriendly" content="True" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Surmon.me" />
<meta name="apple-touch-icon" content="/icon.png" />
<meta name="msapplication-TileImage" content="/icon.png" />
<meta name="msapplication-TileColor" content="#0088f5" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#0088f5" />

<!-- info -->
<link rel="apple-touch-icon" href="/icon.png" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="author" type="text/plain" href="/humans.txt" />

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": "surmon.me",
"version": "4.44.5",
"version": "4.44.6",
"description": "Surmon.me blog",
"author": "Surmon",
"license": "MIT",
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion src/server/getters/netease-music.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const getSongList = async (): Promise<Array<Song>> => {
const songs = songListDetail.data.songs || []
return (
songs
// Filtering to remove uncopyrighted music: https://binaryify.github.io/NeteaseCloudMusicApi/#/?id=%e8%8e%b7%e5%8f%96%e7%94%a8%e6%88%b7%e6%ad%8c%e5%8d%95
// Filtering to remove unlicensed music: https://binaryify.github.io/NeteaseCloudMusicApi/#/?id=%e8%8e%b7%e5%8f%96%e7%94%a8%e6%88%b7%e6%ad%8c%e5%8d%95
.filter((song) => !song.noCopyrightRcmd)
.slice(0, PLAY_LIST_LIMIT)
.map((song) => ({
Expand Down

0 comments on commit 5fb99f4

Please sign in to comment.