mirror of
https://github.com/LC044/WeChatMsg
synced 2025-02-22 02:22:17 +08:00
支持显示群聊
This commit is contained in:
parent
99fa715e10
commit
716f030faa
@ -47,7 +47,7 @@ class MicroMsg:
|
|||||||
sql = '''SELECT UserName, Alias, Type, Remark, NickName, PYInitial, RemarkPYInitial, ContactHeadImgUrl.smallHeadImgUrl, ContactHeadImgUrl.bigHeadImgUrl
|
sql = '''SELECT UserName, Alias, Type, Remark, NickName, PYInitial, RemarkPYInitial, ContactHeadImgUrl.smallHeadImgUrl, ContactHeadImgUrl.bigHeadImgUrl
|
||||||
FROM Contact
|
FROM Contact
|
||||||
INNER JOIN ContactHeadImgUrl ON Contact.UserName = ContactHeadImgUrl.usrName
|
INNER JOIN ContactHeadImgUrl ON Contact.UserName = ContactHeadImgUrl.usrName
|
||||||
WHERE Type % 2 = 1
|
WHERE (Type % 2 = 1 OR Type=2)
|
||||||
AND NickName != ''
|
AND NickName != ''
|
||||||
ORDER BY
|
ORDER BY
|
||||||
CASE
|
CASE
|
||||||
|
@ -4,7 +4,7 @@ import os
|
|||||||
from re import findall
|
from re import findall
|
||||||
from PyQt5.QtCore import pyqtSignal, QThread
|
from PyQt5.QtCore import pyqtSignal, QThread
|
||||||
from PyQt5.QtWidgets import QFileDialog
|
from PyQt5.QtWidgets import QFileDialog
|
||||||
from eyed3 import load
|
# from eyed3 import load
|
||||||
|
|
||||||
from . import msg_db, micro_msg_db
|
from . import msg_db, micro_msg_db
|
||||||
from .package_msg import PackageMsg
|
from .package_msg import PackageMsg
|
||||||
@ -139,6 +139,7 @@ class Output(QThread):
|
|||||||
|
|
||||||
|
|
||||||
def modify_audio_metadata(audiofile, new_artist): # 修改音频元数据中的“创作者”标签
|
def modify_audio_metadata(audiofile, new_artist): # 修改音频元数据中的“创作者”标签
|
||||||
|
return
|
||||||
audiofile = load(audiofile)
|
audiofile = load(audiofile)
|
||||||
|
|
||||||
# 检查文件是否有标签
|
# 检查文件是否有标签
|
||||||
|
Loading…
Reference in New Issue
Block a user