Xheldon

Results 17 issues of Xheldon

看到 `sw.js` 里面有这么一个逻辑: ```js function revalidateContent(cachedResp, fetchedResp) { // revalidate when both promise resolved return Promise.all([cachedResp, fetchedResp]) .then(([cached, fetched]) => { const cachedVer = cached.headers.get('last-modified') const fetchedVer = fetched.headers.get('last-modified') console.log(`"${cachedVer}"...

该软件有个 bug,如果 AE 导出的文件名是 file_1, file_2 ... file_9, file_10, 则 file_10 会排在 file_1 和 file_2 之间导致生成的帧错乱,我 fork 修复了这个问题: https://github.com/Xheldon/iSparta 作者三年前更新的该软件,期间也没有任何动静,期待作者合入 #57 ,不行就去我的仓库查看好了。

官网: https://notion-flow.xheldon.com 插件下载地址:https://chromewebstore.google.com/detail/notion-flow/mcabmofnikepdpecekdlildkmffpmokh Youtube 介绍:https://www.youtube.com/watch?v=aPitTcsruhM ## 基础功能 显示分级标题、动画定位分级标题 ![CleanShot_2024_01_10_at_12_02_02@2x](https://github.com/ruanyf/weekly/assets/9780154/c852880d-8446-45e5-bef5-2f19778248f7) ## 高级功能 ### 发布 Notion 内容到 Github ![img](https://github.com/ruanyf/weekly/assets/9780154/ff8f3e5e-fa28-4714-8da9-5a101fc30f89) 图片上传到配置的 OSS 服务和 CDN 地址。默认 Markdown 格式,支持自定义 Notion 模块转换函数。 可以用来发布基于 Github Pages 的静态博客,如...

weekly

首先感谢提供翻译! 目前有的翻译版如:https://doodlewind.github.io/slate-doc-cn/ 存在问题是它的版本比较旧(0.47版),你的翻译版本比较新(0.57版),但是你的没有在线版,因此我想将其放到线上如 https://slate.xheldon.com 地址基于 gitbook,标注上你的名字和 github 项目地址,是否可行? @loveloki 感谢!

The tooltips props is: ```javascript align={{ points: ['tl', 'bl'], overflow: {adjustX: true, adjustY: false}, }} onPopupAlign={(dom, al) => { dom.scrollIntoView(false); }} ``` When i scroll page let the trigger node...

My extension has the same problem. After using the [official example code](https://learn.microsoft.com/en-us/microsoft-edge/extensions-chromium/developer-guide/sidebar#enable-a-sidebar-for-a-specific-site-only), once the user switches to another tab, the sidebar disappears and it does not automatically open again when...

Bug
Investigating

### What problem does this feature solve? 目前默认情况,即使是一个 Upload 组件(不是 Dragger),也可以通过将文件拖拽到按钮的方式,进行上传,这不是符合预期的行为。(如果我需要拖拽上传,我会使用 Dragger) ### What does the proposed API look like? ``` ```

Inactive
unconfirmed

### Check List - [X] I have already read [Docs page](https://hexo.io/docs/) & [Troubleshooting page](https://hexo.io/docs/troubleshooting). - [X] I have already searched existing issues and they are not help to me. -...

I am working on a heic/heif compression tool using the Electron tech stack. I want to use libheif-js to compress a buffer read from the hard drive by `node:fs` to...