Bo

Results 111 comments of Bo

@mplcoco 发一下日志:C:\Users\用户名\AppData\Roaming\Imagine\logs 下面的 main.log

TD_WARNING_ICON been added but have some bug: https://github.com/microsoft/win32metadata/issues/1029

@lucasfernog Would you take a look at this?

> We require all commits to be signed across Tauri's repositories. So while we wait for a plan on how we want to handle features going forward, you can use...

Update: This change shoud be compatible with deep-link (https://github.com/tauri-apps/tauri/issues/323), and here is the demo code for macOS: https://github.com/meowtec/tauri/tree/feat/deep-link-mac: This PR should be transformed to **draft** as i am trying to...

> https://github.com/FabianLars/tauri-plugin-deep-link It looks better to make both file associations and deep-link PRs separated.

## 规则的匹配 规则 URL 有三种类型,在添加时,不需要特别指定是哪一种类型,程序会自动进行判断。 ### 普通 URL ``` https://github.com/meowtec/Owl-redirector ``` 当浏览器访问这个 URL 时,会被匹配。 ### 正则 ``` /github\d{3}/ ``` url 中含`github\d\d\d`字符串时,就会被匹配。 所以下面的 url 会被匹配: ``` https://github123.com/meowtec http://baidu.com/?kw=github777 ``` ### URL...

## 处理 请求匹配到规则后,要对请求进行处理。处理方式分三种类型: ### 普通 URL 这是默认的方式。你需要在文本框中填入一个 URL。 - URL 为空:请求被阻止。 - URL 不为空:请求被重定向到这个 URL。 ### 内容 内容被编码为 Data URL,形式为 `data:text/html......`,匹配到的请求会被重定向到这个 Data URL。 使用这种方式可以改变 css/js 中的内容。但是对于 ajax 请求来说,Data URL 是跨域请求,因而会失败。...

## URL 测试 > v0.3.0 在编辑时,可以在最下方的输入框中输入测试的 URL,然后点击 `Test` 按钮,就可以看到测试结果。 测试结果有如下三种: - Not match > 表示输入的测试 URL 不匹配该规则,也就是说请求不会被修改。 - cancel > 输入的测试 URL 匹配该规则,并且测试 URL 被阻止。 - Some URL > 输入的测试...