Skip to content

Commit

Permalink
添加程序资源
Browse files Browse the repository at this point in the history
  • Loading branch information
iwxyi committed May 8, 2021
1 parent 08c0f16 commit 1402f08
Show file tree
Hide file tree
Showing 9 changed files with 83 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ ui_*.h
qrc_*.cpp
Thumbs.db
*.res
*.rc
/.qmake.cache
/.qmake.stash

Expand Down
3 changes: 3 additions & 0 deletions CatlikeQQ.pro
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ CONFIG += c++11
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

RC_FILE += resources/resource.rc

# You can also make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
Expand Down Expand Up @@ -58,6 +60,7 @@ HEADERS += \
notification/replyedit.h \
notification/smoothlistwidget.h \
notification/smoothscrollbean.h \
resources/resource.rc \
third_party/utils/mysettings.h \
third_party/utils/netimageutil.h \
web_service/cqhttpservice.h \
Expand Down
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
猫样QQ
===

——基于`cqhttp`的QQ通知



## 介绍

当QQ来通知时,在屏幕右侧显示通知,按各个私聊/群聊分组,并支持快速回复。

> 本程序旨在通知悬浮窗,并非完全替代 QQ/TIM,建议结合使用。


## 截图

![消息截图](screenshots/screenshot1.png)

![配置截图](screenshots/screenshot2.png)



## 用法

### 启动cqhttp

1. 双击 `cqhttp.exe`,扫码登录。如出现需要认证的信息, 请自行认证设备。

### 启动猫样QQ

1. 双击 `猫样QQ.exe``CatlikeQQ.exe` 启动
2.`账号绑定`页面,输入地址:`ws://127.0.0.1:6700`(以实际配置为准)



## 常见问题

Q: 为什么挂一段时间后就会出现 `消息发送失败,账号可能被风控` ?

A: 如果你刚开始使用 cqhttp 建议挂机3-7天,即可解除风控

Binary file added resources/icons/appicon.ico
Binary file not shown.
Binary file added resources/icons/notification.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions resources/resource.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#if defined(UNDER_CE)
#include <winbase.h>
#else
#include <winver.h>
#endif
IDI_ICON1 ICON DISCARDABLE "icons/appicon.ico"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080404b0"
BEGIN
VALUE "CompanyName", "��һϦ���ܿƼ�"
VALUE "FileDescription", "�QQ"
VALUE "FileVersion", "1.0"
VALUE "InternalName", "CatlikeQQ"
VALUE "LegalCopyright", "Copyright (C)2021-2021"
VALUE "OriginalFilename", "CatlikeQQ.exe"
VALUE "ProductName", "�QQ"
VALUE "ProductVersion", "0.1"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x804, 1200
END
END
Binary file added resources/程序说明.pdf
Binary file not shown.
Binary file added screenshots/screenshot1.png
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 screenshots/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1402f08

Please sign in to comment.