WeChatMsg/app/config.py

23 lines
900 B
Python
Raw Normal View History

2024-01-03 21:48:41 +08:00
version = '1.0.2'
2023-12-13 23:45:59 +08:00
contact = '701805520'
2023-12-17 13:15:49 +08:00
github = 'https://github.com/LC044/WeChatMsg'
2023-12-18 22:01:04 +08:00
website = 'https://memotrace.lc044.love/'
2024-01-03 21:48:41 +08:00
copyright = '© 2022-2024 SiYuan'
license = 'GPLv3'
2023-11-18 14:41:40 +08:00
description = [
2023-11-30 22:11:35 +08:00
'1. 支持获取个人信息<br>',
'2. 支持显示聊天界面<br>',
2023-12-17 13:15:49 +08:00
'3. 支持导出聊天记录<br>&nbsp;&nbsp;&nbsp;&nbsp;* csv<br>&nbsp;&nbsp;&nbsp;&nbsp;* html<br>&nbsp;&nbsp;&nbsp;&nbsp;* '
2024-01-03 21:48:41 +08:00
'txt<br>&nbsp;&nbsp;&nbsp;&nbsp;* docx<br>',
'4. 生成年度报告——圣诞特别版',
2023-11-18 14:41:40 +08:00
]
2023-12-17 13:15:49 +08:00
about = f'''
版本{version}<br>
2023-12-24 20:07:18 +08:00
QQ交流群:请关注微信公众号回复联系方式<br>
2023-12-17 13:15:49 +08:00
地址<a href='{github}'>{github}</a><br>
官网<a href='{website}'>{website}</a><br>
新特性:<br>{''.join(['' + i for i in description])}<br>
2024-01-03 21:48:41 +08:00
License <a href='https://github.com/LC044/WeChatMsg/blob/master/LICENSE'>{license}</a><br>
2023-12-17 13:15:49 +08:00
Copyright {copyright}
'''