mirror of
				https://git.unlock-music.dev/um/web.git
				synced 2025-11-04 14:53:30 +08:00 
			
		
		
		
	其它: 移除主页说明失效的链接、更名 .github 到 .gitlab、加入 issue 模板。
				
					
				
			This commit is contained in:
		
							parent
							
								
									2872ceb3bb
								
							
						
					
					
						commit
						fd5c0957a2
					
				
							
								
								
									
										84
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										84
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							@ -1,84 +0,0 @@
 | 
				
			|||||||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
name: Test Build
 | 
					 | 
				
			||||||
on:
 | 
					 | 
				
			||||||
  push:
 | 
					 | 
				
			||||||
    paths:
 | 
					 | 
				
			||||||
      - ".github/workflows/*"
 | 
					 | 
				
			||||||
      - "**/*.js"
 | 
					 | 
				
			||||||
      - "**/*.ts"
 | 
					 | 
				
			||||||
      - "**/*.vue"
 | 
					 | 
				
			||||||
      - "public/**/*"
 | 
					 | 
				
			||||||
      - "package-lock.json"
 | 
					 | 
				
			||||||
      - "package.json"
 | 
					 | 
				
			||||||
  pull_request:
 | 
					 | 
				
			||||||
    branches: [ master ]
 | 
					 | 
				
			||||||
    types: [ opened, synchronize, reopened ]
 | 
					 | 
				
			||||||
    paths:
 | 
					 | 
				
			||||||
      - "**/*.js"
 | 
					 | 
				
			||||||
      - "**/*.ts"
 | 
					 | 
				
			||||||
      - "**/*.vue"
 | 
					 | 
				
			||||||
      - "public/**/*"
 | 
					 | 
				
			||||||
      - "package-lock.json"
 | 
					 | 
				
			||||||
      - "package.json"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
jobs:
 | 
					 | 
				
			||||||
  test-coverage:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - uses: actions/checkout@v2
 | 
					 | 
				
			||||||
      - run: npm ci
 | 
					 | 
				
			||||||
        # note: forks can not access to GITHUB_TOKEN for coverage update.
 | 
					 | 
				
			||||||
        #       instead, we just ran the test in this case.
 | 
					 | 
				
			||||||
      - name: Test only
 | 
					 | 
				
			||||||
        if: github.event_name != 'push'
 | 
					 | 
				
			||||||
        run: npm test
 | 
					 | 
				
			||||||
      - name: Test + Publish Coverage
 | 
					 | 
				
			||||||
        uses: ArtiomTr/jest-coverage-report-action@v2.0-rc.6
 | 
					 | 
				
			||||||
        if: github.event_name == 'push'
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          github-token: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
          annotations: none
 | 
					 | 
				
			||||||
  build:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    strategy:
 | 
					 | 
				
			||||||
      matrix:
 | 
					 | 
				
			||||||
        build: [ legacy, modern ]
 | 
					 | 
				
			||||||
        include:
 | 
					 | 
				
			||||||
          - build: legacy
 | 
					 | 
				
			||||||
            BUILD_ARGS: ""
 | 
					 | 
				
			||||||
            BUILD_EXTENSION: true
 | 
					 | 
				
			||||||
          - build: modern
 | 
					 | 
				
			||||||
            BUILD_ARGS: "-- --modern"
 | 
					 | 
				
			||||||
            BUILD_EXTENSION: false
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - uses: actions/checkout@v2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Use Node.js 16.x
 | 
					 | 
				
			||||||
        uses: actions/setup-node@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          node-version: "16"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Install Dependencies
 | 
					 | 
				
			||||||
        run: npm ci
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build
 | 
					 | 
				
			||||||
        run: npm run build ${{ matrix.BUILD_ARGS }}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Publish artifact
 | 
					 | 
				
			||||||
        uses: actions/upload-artifact@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          name: ${{ matrix.build }}
 | 
					 | 
				
			||||||
          path: ./dist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build Extension
 | 
					 | 
				
			||||||
        if: ${{ matrix.BUILD_EXTENSION }}
 | 
					 | 
				
			||||||
        run: npm run make-extension
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Publish artifact - Extension
 | 
					 | 
				
			||||||
        if: ${{ matrix.BUILD_EXTENSION }}
 | 
					 | 
				
			||||||
        uses: actions/upload-artifact@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          name: extension
 | 
					 | 
				
			||||||
          path: ./dist
 | 
					 | 
				
			||||||
							
								
								
									
										65
									
								
								.github/workflows/post-release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										65
									
								
								.github/workflows/post-release.yml
									
									
									
									
										vendored
									
									
								
							@ -1,65 +0,0 @@
 | 
				
			|||||||
name: Post Release
 | 
					 | 
				
			||||||
on:
 | 
					 | 
				
			||||||
  release:
 | 
					 | 
				
			||||||
    types: [ published ]
 | 
					 | 
				
			||||||
jobs:
 | 
					 | 
				
			||||||
  release-docker:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - uses: actions/checkout@v2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Setup vars
 | 
					 | 
				
			||||||
        id: vars
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          RELEASE_REF: ${{ github.ref }}
 | 
					 | 
				
			||||||
        run: echo "::set-output name=tag::${RELEASE_REF#refs/tags/}"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Download release content
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          echo "https://github.com/${{ github.repository }}/releases/download/${{ steps.vars.outputs.tag }}/modern.tar.gz"
 | 
					 | 
				
			||||||
          wget -O modern.tar.gz "https://github.com/${{ github.repository }}/releases/download/${{ steps.vars.outputs.tag }}/modern.tar.gz"
 | 
					 | 
				
			||||||
          mkdir ./dist
 | 
					 | 
				
			||||||
          tar zxf modern.tar.gz -C ./dist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Set up Docker Buildx
 | 
					 | 
				
			||||||
        uses: docker/setup-buildx-action@v1
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Login to DockerHub
 | 
					 | 
				
			||||||
        uses: docker/login-action@v1
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          username: ${{ secrets.DOCKERHUB_USERNAME }}
 | 
					 | 
				
			||||||
          password: ${{ secrets.DOCKERHUB_TOKEN }}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build docker and push (on modern)
 | 
					 | 
				
			||||||
        uses: docker/build-push-action@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          context: .
 | 
					 | 
				
			||||||
          file: ./Dockerfile
 | 
					 | 
				
			||||||
          platforms: linux/amd64,linux/arm64,linux/386
 | 
					 | 
				
			||||||
          push: true
 | 
					 | 
				
			||||||
          tags: |
 | 
					 | 
				
			||||||
            ix64/unlock-music:latest
 | 
					 | 
				
			||||||
            ix64/unlock-music:${{ steps.vars.outputs.tag }}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  gh-pages:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - name: Setup vars
 | 
					 | 
				
			||||||
        id: vars
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          RELEASE_REF: ${{ github.ref }}
 | 
					 | 
				
			||||||
        run: echo "::set-output name=tag::${RELEASE_REF#refs/tags/}"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Download release content
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          echo "https://github.com/${{ github.repository }}/releases/download/${{ steps.vars.outputs.tag }}/modern.tar.gz"
 | 
					 | 
				
			||||||
          wget -O modern.tar.gz "https://github.com/${{ github.repository }}/releases/download/${{ steps.vars.outputs.tag }}/modern.tar.gz"
 | 
					 | 
				
			||||||
          mkdir ./dist
 | 
					 | 
				
			||||||
          tar zxf modern.tar.gz -C ./dist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Deploy
 | 
					 | 
				
			||||||
        uses: peaceiris/actions-gh-pages@v3
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          github_token: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
          publish_dir: ./dist
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
							
								
								
									
										126
									
								
								.github/workflows/release-build.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										126
									
								
								.github/workflows/release-build.yml
									
									
									
									
										vendored
									
									
								
							@ -1,126 +0,0 @@
 | 
				
			|||||||
name: Build Release
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
on:
 | 
					 | 
				
			||||||
  push:
 | 
					 | 
				
			||||||
    tags:
 | 
					 | 
				
			||||||
      - "v*"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
jobs:
 | 
					 | 
				
			||||||
  build:
 | 
					 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					 | 
				
			||||||
    steps:
 | 
					 | 
				
			||||||
      - uses: actions/checkout@v2
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Use Node.js 16.x
 | 
					 | 
				
			||||||
        uses: actions/setup-node@v2
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          node-version: "16"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Install Dependencies
 | 
					 | 
				
			||||||
        run: npm ci
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build Legacy
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GZIP: "--best"
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          npm run build
 | 
					 | 
				
			||||||
          tar -czf legacy.tar.gz -C ./dist .
 | 
					 | 
				
			||||||
          cd dist
 | 
					 | 
				
			||||||
          zip -rJ9 ../legacy.zip *
 | 
					 | 
				
			||||||
          cd ..
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build Extension (on legacy)
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GZIP: "--best"
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          npm run make-extension
 | 
					 | 
				
			||||||
          cd dist
 | 
					 | 
				
			||||||
          zip -rJ9 ../extension.zip *
 | 
					 | 
				
			||||||
          cd ..
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Build Modern
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GZIP: "--best"
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          npm run build -- --modern
 | 
					 | 
				
			||||||
          tar -czf modern.tar.gz -C ./dist .
 | 
					 | 
				
			||||||
          cd dist
 | 
					 | 
				
			||||||
          zip -rJ9 ../modern.zip *
 | 
					 | 
				
			||||||
          cd ..
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Checksum
 | 
					 | 
				
			||||||
        run: sha256sum *.tar.gz *.zip > sha256sum.txt
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Get current time
 | 
					 | 
				
			||||||
        id: date
 | 
					 | 
				
			||||||
        run: echo "::set-output name=date::$(date +'%Y/%m/%d')"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Create a Release
 | 
					 | 
				
			||||||
        id: create_release
 | 
					 | 
				
			||||||
        uses: actions/create-release@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          tag_name: ${{ github.ref }}
 | 
					 | 
				
			||||||
          release_name: "Build ${{ steps.date.outputs.date }}"
 | 
					 | 
				
			||||||
          draft: true
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - legacy.tar.gz
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./legacy.tar.gz
 | 
					 | 
				
			||||||
          asset_name: legacy.tar.gz
 | 
					 | 
				
			||||||
          asset_content_type: application/gzip
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - legacy.zip
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./legacy.zip
 | 
					 | 
				
			||||||
          asset_name: legacy.zip
 | 
					 | 
				
			||||||
          asset_content_type: application/zip
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - modern.tar.gz
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./modern.tar.gz
 | 
					 | 
				
			||||||
          asset_name: modern.tar.gz
 | 
					 | 
				
			||||||
          asset_content_type: application/gzip
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - modern.zip
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./modern.zip
 | 
					 | 
				
			||||||
          asset_name: modern.zip
 | 
					 | 
				
			||||||
          asset_content_type: application/zip
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - extension.zip
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./extension.zip
 | 
					 | 
				
			||||||
          asset_name: extension.zip
 | 
					 | 
				
			||||||
          asset_content_type: application/zip
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
      - name: Upload Release Assets - sha256sum.txt
 | 
					 | 
				
			||||||
        uses: actions/upload-release-asset@v1
 | 
					 | 
				
			||||||
        env:
 | 
					 | 
				
			||||||
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
					 | 
				
			||||||
        with:
 | 
					 | 
				
			||||||
          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
					 | 
				
			||||||
          asset_path: ./sha256sum.txt
 | 
					 | 
				
			||||||
          asset_name: sha256sum.txt
 | 
					 | 
				
			||||||
          asset_content_type: text/plain
 | 
					 | 
				
			||||||
							
								
								
									
										52
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										52
									
								
								README.md
									
									
									
									
									
								
							@ -1,22 +1,13 @@
 | 
				
			|||||||
# Unlock Music 音乐解锁
 | 
					# Unlock Music 音乐解锁
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- 在浏览器中解锁加密的音乐文件。 Unlock encrypted music file in the browser.
 | 
					- 在浏览器中解锁加密的音乐文件。 Unlock encrypted music file in the browser.
 | 
				
			||||||
- Unlock Music 项目是以学习和技术研究的初衷创建的,修改、再分发时请遵循 [License][license]
 | 
					- Unlock Music 项目是以学习和技术研究的初衷创建的,修改、再分发时请遵循[授权协议]。
 | 
				
			||||||
- Unlock Music 的 CLI 版本可以在 [unlock-music/cli][repo_cli] 找到,大批量转换建议使用 CLI 版本。
 | 
					- Unlock Music 的 CLI 版本可以在 [unlock-music/cli] 找到,大批量转换建议使用 CLI 版本。
 | 
				
			||||||
- 我们新建了 Telegram 群组 [`@unlock_music_chat`][tg_group] ,欢迎加入!
 | 
					- 我们新建了 Telegram 群组 [`@unlock_music_chat`] ,欢迎加入!
 | 
				
			||||||
- [相关的其他项目][related_projects]
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||

 | 
					[授权协议]: https://git.unlock-music.dev/um/web/src/branch/master/LICENSE
 | 
				
			||||||

 | 
					[unlock-music/cli]: https://git.unlock-music.dev/um/cli
 | 
				
			||||||

 | 
					[`@unlock_music_chat`]: https://t.me/unlock_music_chat
 | 
				
			||||||
 | 
					 | 
				
			||||||
[license]: https://github.com/unlock-music/unlock-music/blob/master/LICENSE
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[repo_cli]: https://github.com/unlock-music/cli
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[tg_group]: https://t.me/unlock_music_chat
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[related_projects]: https://github.com/unlock-music/unlock-music/wiki/和UnlockMusic相关的项目
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 特性
 | 
					## 特性
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -30,11 +21,7 @@
 | 
				
			|||||||
- [x] 网易云音乐格式 (.ncm)
 | 
					- [x] 网易云音乐格式 (.ncm)
 | 
				
			||||||
- [x] 虾米音乐格式 (.xm)
 | 
					- [x] 虾米音乐格式 (.xm)
 | 
				
			||||||
- [x] 酷我音乐格式 (.kwm)
 | 
					- [x] 酷我音乐格式 (.kwm)
 | 
				
			||||||
- [x] 酷狗音乐格式 (.kgm/.vpr) ([CLI 版本][kgm_cli])
 | 
					- [x] 酷狗音乐格式 (.kgm/.vpr)
 | 
				
			||||||
 | 
					 | 
				
			||||||
[kgm_cli]: https://github.com/unlock-music/unlock-music/wiki/其他音乐格式工具#酷狗音乐-kgmvpr解锁工具
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
[joox_wiki]: https://github.com/unlock-music/joox-crypto/wiki/加密格式
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 其他特性
 | 
					### 其他特性
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -43,27 +30,17 @@
 | 
				
			|||||||
- [x] 批量解锁
 | 
					- [x] 批量解锁
 | 
				
			||||||
- [x] 渐进式 Web 应用 (PWA)
 | 
					- [x] 渐进式 Web 应用 (PWA)
 | 
				
			||||||
- [x] 多线程
 | 
					- [x] 多线程
 | 
				
			||||||
- [x] 写入Meta和封面图片
 | 
					- [x] 写入元信息与专辑封面
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 使用方法
 | 
					## 使用方法
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 安装浏览器扩展
 | 
					### 使用预构建版本
 | 
				
			||||||
 | 
					
 | 
				
			||||||
[](https://chrome.google.com/webstore/detail/gldlhhhmienbhlpkfanjpmffdjblmegd)
 | 
					- 从 [Release] 下载预构建的版本
 | 
				
			||||||
[<img src="https://developer.microsoft.com/en-us/store/badges/images/Chinese_Simplified_get-it-from-MS.png" height="60" alt="Microsoft Edge Addons"/>](https://microsoftedge.microsoft.com/addons/detail/ggafoipegcmodfhakdkalpdpcdkiljmd)
 | 
					  - :warning: 本地使用请下载`legacy版本`(`modern版本`只能通过 **http(s)协议** 访问)
 | 
				
			||||||
[](https://addons.mozilla.org/zh-CN/firefox/addon/unlock-music/)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
### 使用已构建版本
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
- 从[GitHub Release](https://github.com/unlock-music/unlock-music/releases/latest)下载已构建的版本
 | 
					 | 
				
			||||||
  - 本地使用请下载`legacy版本`(`modern版本`只能通过 **http(s)协议** 访问)
 | 
					 | 
				
			||||||
- 解压缩后即可部署或本地使用(**请勿直接运行源代码**)
 | 
					- 解压缩后即可部署或本地使用(**请勿直接运行源代码**)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 使用 Docker 镜像
 | 
					[release]: https://git.unlock-music.dev/um/web/releases/latest
 | 
				
			||||||
 | 
					 | 
				
			||||||
```shell
 | 
					 | 
				
			||||||
docker run --name unlock-music -d -p 8080:80 ix64/unlock-music
 | 
					 | 
				
			||||||
```
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
### 自行构建
 | 
					### 自行构建
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -77,15 +54,16 @@ docker run --name unlock-music -d -p 8080:80 ix64/unlock-music
 | 
				
			|||||||
   npm ci
 | 
					   npm ci
 | 
				
			||||||
   ```
 | 
					   ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
2. 然后进行构建。编译后的文件保存到 dist 目录下:
 | 
					2. 然后进行构建:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   ```sh
 | 
					   ```sh
 | 
				
			||||||
   npm run build
 | 
					   npm run build
 | 
				
			||||||
   ```
 | 
					   ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   - 构建后的产物可以在 `dist` 目录找到。
 | 
				
			||||||
   - 如果是用于开发,可以执行 `npm run serve`。
 | 
					   - 如果是用于开发,可以执行 `npm run serve`。
 | 
				
			||||||
 | 
					
 | 
				
			||||||
3. 如需构建浏览器扩展,build 完成后还需要执行:
 | 
					3. 如需构建浏览器扩展,构建成功后还需要执行:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   ```sh
 | 
					   ```sh
 | 
				
			||||||
   npm run make-extension
 | 
					   npm run make-extension
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user