-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from ruchuby/develop
Starter v0.5.0
- Loading branch information
Showing
33 changed files
with
5,405 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
title: 设置界面 | ||
icon: gear | ||
author: ruchuby | ||
date: 2023-04-13 | ||
--- | ||
|
||
运行 **Starter** 后,右键右下角托盘图标打开菜单,点击**设置界面**。 | ||
|
||
## 常规 | ||
|
||
![设置界面](../../images/setting-1.jpg) | ||
|
||
目前,常规设置仅有**开机自启**开关。 | ||
|
||
## 控制 | ||
|
||
![设置界面](../../images/setting-2.jpg) | ||
|
||
快捷键设置,点击**修改**按钮可以修改对应的功能快捷键。 | ||
|
||
显示每个快捷键的**具体内容**,若按键**无效**也会有对应显示。 | ||
|
||
### 1. 按键类型 - 普通 | ||
|
||
普通按键类型仅仅支持 `Ctrl`, `Alt`, `Shift` 作为修饰的组合按键,或者单独按键。 | ||
|
||
可勾选**是否屏蔽原按键功能**,勾选后快捷键原功能将被屏蔽。 | ||
|
||
点击按键内容**热键输入框**,按下指定按键即可显示输入的按键内容,点击**确定**进行保存。 | ||
|
||
### 2. 按键类型 - 自定义 | ||
|
||
**自定义**按键类型可以**自由填写**热键内容,包括鼠标按键等, | ||
|
||
参考[热键 - 定义 & 使用 | AutoHotkey v2](https://www.autoahk.com/help/autohotkey/v2/docs/Hotkeys.htm#toc) | ||
|
||
:::warning | ||
热键内容的填写需要有一定AHK经验,否则建议使用其他类型 | ||
::: | ||
|
||
### 3. 按键类型 - 双击 | ||
|
||
**双击**按键类型必须填写**单个**按键名, | ||
|
||
参考[按键列表(键盘, 鼠标和操纵杆) | AutoHotkey v2](https://www.autoahk.com/help/autohotkey/v2/docs/KeyList.htm) | ||
|
||
可勾选**是否屏蔽原按键功能**,勾选后快捷键原功能将被屏蔽。 | ||
|
||
:::tip | ||
双击要求第一次键击**按住**时间小于500ms,且第一次键击**松开**到第二次键击**按下**的时间间隔小于500ms | ||
::: | ||
|
||
### 4. 按键类型 - 长按 | ||
|
||
**双击**按键类型必须填写**单个**按键名, | ||
|
||
参考[按键列表(键盘, 鼠标和操纵杆) | AutoHotkey v2](https://www.autoahk.com/help/autohotkey/v2/docs/KeyList.htm) | ||
|
||
可勾选**是否屏蔽原按键功能**,勾选后快捷键原功能将被屏蔽。 | ||
|
||
:::tip | ||
长按要求第一次键击**按住**时间超过500ms | ||
::: | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: 文件选择对话框导航 | ||
author: ruchuby | ||
date: 2023-04-12 | ||
--- | ||
|
||
## 介绍 | ||
|
||
文件对话框中路径导航功能,模仿Listary的 `Ctrl+G` 功能 | ||
|
||
让文件对话框导航到**资源管理器**中正在浏览的文件夹。 | ||
|
||
![文件选择对话框导航:主界面](./images/file-selection-dialog-nav-1.jpg) | ||
|
||
## 使用方式 | ||
|
||
当你正处于某个文件选择对话框时,长按 `CapsLK`,呼出智能模式搜索框 | ||
|
||
在搜索结果中可以看到**文件选择对话框路径导航**,启动此**插件智能项**即可进入插件界面 | ||
|
||
插件界面的列表中会列举所有正在运行的**资源管理器**中正在浏览的文件夹,**输入内容到搜索框可以对其进行筛选** | ||
|
||
筛选依据为:输入的内容是否为列表项**标题**或者**将标题内中文转拼音首字母后的标题**的一部分 | ||
|
||
最后,启动某列表项即可完成导航到指定路径。 | ||
|
||
![文件选择对话框导航:导航提示](./images/file-selection-dialog-nav-2.jpg) | ||
|
||
::: warning | ||
长按前,请不要选中任何文件或者文本,否则插件智能项不会出现在列表中(因为无法进入窗口匹配) | ||
::: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
title: OCR识别文字 | ||
author: ruchuby | ||
date: 2023-04-13 | ||
--- | ||
|
||
## 介绍 | ||
|
||
调用百度OCR在线识别文字,需要自行申请API密钥 | ||
|
||
![文件搜索:主界面](./images/ocr-1.jpg) | ||
|
||
|
||
## 配置 | ||
|
||
请先申请百度OCR,方法自行上网搜索。 | ||
|
||
右键 **Starter** 右下角托盘图标 > **Starter菜单** > **插件功能** > **OCR识别文字** > **设置** | ||
|
||
设置界面分别填入申请到的 `id` 和 `secret` ,点击**保存** | ||
|
||
## 使用 | ||
|
||
- ### 方式一 | ||
|
||
使用任意截图工具截取图片到**剪切板**,呼出**搜索框**,粘贴,转到**智能模式搜索框** | ||
|
||
![文件搜索:搜索框](./images/ocr-2.jpg) | ||
|
||
启动对应**插件智能项**进入识别界面,并识别图片 | ||
|
||
- ### 方式二 | ||
|
||
启动模式搜索框中关键词为`["OCR识别文字", "OCRSBWZ"]` | ||
|
||
启动对应**插件启动项**进入识别界面 | ||
|
||
- ### 方式三 | ||
|
||
右键 **Starter** 右下角托盘图标 > **Starter菜单** > **插件功能** > **OCR识别文字** > **显示**,进入识别界面 | ||
|
||
## 识别界面 | ||
|
||
左侧为正在识别的图片,**不用在意显示的图片变形,仅仅是控件显示问题** | ||
|
||
右侧为识别结果 | ||
|
||
:::tip | ||
**直接粘贴图片**就可以进行图片识别 | ||
|
||
**点击左侧图片**位置可以通过文件选择进行图片识别 | ||
::: | ||
|
||
::: warning | ||
修改识别结果**连接方式**或者**自动复制**选项时,打开**设置界面**并点击保存, | ||
|
||
**下次启动时才会使用保存的选择** | ||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
title: 定时提醒 | ||
author: ruchuby | ||
date: 2023-04-11 | ||
order: 3 | ||
--- | ||
|
||
## 介绍 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.