Skip to content

Commit

Permalink
feat: 支持网站图片缩放,文档更新
Browse files Browse the repository at this point in the history
  • Loading branch information
yzqzy committed Jun 5, 2024
1 parent 1163736 commit 2e543d3
Show file tree
Hide file tree
Showing 16 changed files with 64 additions and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ PC 微信助手,基于 Electron、WeChat Hook 实现。
* [x] 查看群成员列表、导出群成员列表
* [x] 邀请成员、退出群聊、删除成员
- 任务管理
* [x] 标签管理(支持创建、修改、删除标签)
* [x] 定时任务(定时消息)
* 定时消息(支持 “文本、图片、文件、公众号” 配置)
* [x] 触发任务(消息防撤回、群红包监控、文本消息监控、消息转发)
Expand Down
7 changes: 7 additions & 0 deletions docs/.vitepress/theme/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.medium-zoom-overlay {
z-index: 30;
}

.medium-zoom-image--opened {
z-index: 31;
}
23 changes: 23 additions & 0 deletions docs/.vitepress/theme/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import DefaultTheme from 'vitepress/theme'
import { onMounted, watch, nextTick } from 'vue'
import { useRoute } from 'vitepress'
import mediumZoom from 'medium-zoom'

import './index.css'

export default {
...DefaultTheme,
setup() {
const route = useRoute()
const initZoom = () => {
mediumZoom('.main img', { background: 'var(--vp-c-bg)' })
}
onMounted(() => {
initZoom()
})
watch(
() => route.path,
() => nextTick(() => initZoom())
)
}
}
Binary file modified docs/assets/1_mosaic.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 modified docs/assets/2_mosaic.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 modified docs/assets/3_mosaic.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 modified docs/assets/4_mosaic.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 modified docs/assets/5_mosaic.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 modified docs/assets/6_mosaic.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 docs/assets/7_mosaic.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 removed docs/assets/application_cron.png
Binary file not shown.
Binary file modified docs/assets/application_mosaic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ outline: deep

## 三、任务管理

* 标签管理(支持自定义标签)
* 定时任务(定时消息)
* 定时消息(支持 “文本、图片、文件、公众号” 配置)
* 触发任务(消息防撤回、群红包监控、文本消息监控、消息转发)

<img src="./assets/7_mosaic.png" />

<br />

<img src="./assets/3_mosaic.png" />

<br />
Expand Down
30 changes: 16 additions & 14 deletions docs/supported-versions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,23 @@ outline: deep

# 版本使用说明

目前客户端主要支持两种类型的 hook,分别是 [wxhelper](https://github.com/ttttupup/wxhelper)[wechatsdk](https://github.com/WeChatAPIs/wechatAPI)
您可以从 [releases](https://github.com/yzqzy/wechat-assistant/releases) 下载微信助手程序安装包。

## 一、版本选择


| 系列 | 微信版本 | 联系人管理 | 群聊管理 | 任务管理 | 聊天记录备份 | 工具集 |
| --------- | --------- | ---------- | -------- | -------- | ------------ | ------ |
| wxhelper | 3.9.5.81 ||||||
| wxhelper | 3.9.8.25 ||||||
| wechatsdk | 3.9.10.19 ||||||

> wxhelper 3.9.8.25 版本由于开源功能限制,无法支持群聊管理和工具集模块。

## 一、hook 介绍
## 二、hook 介绍

目前客户端主要支持两种类型的 hook,分别是 [wxhelper](https://github.com/ttttupup/wxhelper)[wechatsdk](https://github.com/WeChatAPIs/wechatAPI)

### 1. wxhelper

Expand All @@ -22,15 +36,3 @@ outline: deep
* 付费 hook,长期使用需购买,支持全功能免费试用。
* 个人用户支持试用7天/企业用户支持试用14天。
* 长期使用稳定性较高,针对官方风控策略及时进行优化。

## 二、版本选择

| 系列 | 微信版本 | 联系人管理 | 群聊管理 | 任务管理 | 聊天记录备份 | 工具集 |
| --------- | --------- | ---------- | -------- | -------- | ------------ | ------ |
| wxhelper | 3.9.5.81 ||||||
| wxhelper | 3.9.8.25 ||||||
| wechatsdk | 3.9.10.19 ||||||

> wxhelper 3.9.8.25 版本由于开源功能限制,无法支持群聊管理和工具集模块。
您可以从 [releases](https://github.com/yzqzy/wechat-assistant/releases) 下载微信助手程序安装包。
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,7 @@
"devDependencies": {
"vitepress": "^1.2.2"
},
"dependencies": {}
"dependencies": {
"medium-zoom": "^1.1.0"
}
}
9 changes: 9 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2e543d3

Please sign in to comment.