Skip to content

Commit

Permalink
1.Fix some bugs
Browse files Browse the repository at this point in the history
2.Add "offset" function
  • Loading branch information
chenmozhijin committed Apr 13, 2024
1 parent 0b29724 commit 18879f9
Show file tree
Hide file tree
Showing 24 changed files with 2,444 additions and 2,008 deletions.
3 changes: 2 additions & 1 deletion LDDC.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: Copyright (c) 2024 沉默の金
__version__ = "v0.6.1"
__version__ = "v0.6.2"
import logging
import os
import resource.resource_rc
Expand Down Expand Up @@ -61,6 +61,7 @@ def __init__(self) -> None:
self.setWindowTitle("LDDC")
self.resize(1050, 600)
self.setWindowIcon(QIcon(":/LDDC/img/icon/logo.png"))
self.set_sidebar_width(95)

self.search_widget = SearchWidget(self, threadpool)
self.local_match_widget = LocalMatchWidget(threadpool)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# LDDC

中文 | [English](./README_en.md)

> 精准歌词(逐字歌词)下载解密转换
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/015f636391584ffc82790ff7038da5ca)](https://app.codacy.com/gh/chenmozhijin/LDDC/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
Expand All @@ -22,8 +24,8 @@

## 预览

![image](img/1.jpg)
![image](img/2.jpg)
![image](img/zh_1.jpg)
![image](img/zh_2.jpg)

## 使用方法

Expand Down
46 changes: 46 additions & 0 deletions README_en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# LDDC

[中文](.\README.md) | English

> Accurate Lyrics (verbatim lyrics) Download, Decryption, and Conversion
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/015f636391584ffc82790ff7038da5ca)](https://app.codacy.com/gh/chenmozhijin/LDDC/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/chenmozhijin/LDDC/total)](https://github.com/chenmozhijin/LDDC/releases/latest)
[![Static Badge](https://img.shields.io/badge/Python-3.10%2B-brightgreen)](https://www.python.org/downloads/)
[![Static Badge](https://img.shields.io/badge/License-GPLv3-blue)](https://github.com/chenmozhijin/LDDC/blob/main/LICENSE)
[![release](https://img.shields.io/github/v/release/chenmozhijin/LDDC?color=blue)](https://github.com/chenmozhijin/LDDC/releases/latest)

## Features

- [x] Search for singles, albums, and playlists on QQ Music, Kugou Music, and NetEase Cloud Music
- [x] One-click download of lyrics for entire albums and playlists
- [x] One-click match lyrics for local song files
- [x] Support for saving in multiple formats (lrc, srt, ass)
- [x] Double-click to preview lyrics and save directly
- [x] Merge lyrics of various types (original, translated, romanized) at will
- [x] Save path with various placeholders for arbitrary combinations
- [x] Support for opening locally encrypted lyrics
- [x] Multi-platform support

## Preview

![image](img/en_1.jpg)
![image](img/en_2.jpg)

## Usage

See [LDDC User Guide](https://github.com/chenmozhijin/LDDC/wiki)

## Acknowledgments

Some functionalities are implemented with reference to the following projects:

### Lyrics Decryption

[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=WXRIW&repo=Lyricify-Lyrics-Helper)](https://github.com/WXRIW/Lyricify-Lyrics-Helper)
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=jixunmoe&repo=qmc-decode)](https://github.com/jixunmoe/qmc-decode)
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=parakeet-rs&repo=libparakeet)](https://github.com/parakeet-rs/libparakeet)

### Music Platform APIs

[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=MCQTSS&repo=MCQTSS_QQMusic)](https://github.com/MCQTSS/MCQTSS_QQMusic)
Binary file added img/en_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/en_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/zh_1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/zh_2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified resource/i18n/LDDC_en.qm
Binary file not shown.
Loading

0 comments on commit 18879f9

Please sign in to comment.