Gerald

Results 31 issues of Gerald

On Windows with Windows Defender enabled (the default behavior), download-artifact always fails with the error below: ``` cannot move downloaded into final location (another process downloaded faster?) path=xxx\winCodeSign\winCodeSign-2.6.0 tempFile=xxx\winCodeSign\087033947 error=rename...

Create two `tween`s and chain them: ```js const tween1 = new TWEEN.Tween({}) .to({}, 500) .onComplete(() => { console.log('complete'); tween1.stop(); tween2.stop(); }); const tween2 = new TWEEN.Tween({}) .to({}, 500); tween1.chain(tween2); tween2.chain(tween1);...

Bug
waiting-for-feedback

PDF功能很棒,但是有几点不足: - 不能记住上次打开的文件和阅读的位置 - 加载后顶部的地址栏太明显了,是否可以隐藏 - 不能单独退出PDF功能? - PDF加载过慢,能否按需、异步加载

Allow rewriting URLs before download starts. This is useful for cases with network problems. We can easily change the prefixes of the URLs to our mirrors by creating a `~/.downloadrc`...

Can the downloaded resources be cached? Otherwise we have to redownload them every time on `npm install` since many packages depend on this library. This is terrible in areas with...

Currently Markdown syntax groups are straightly named to HTML groups, e.g. `htmlH1` instead of `markdownH1`. But in some themes like [onedark](https://github.com/joshdick/onedark.vim), [vim-one](https://github.com/rakr/vim-one), etc., Markdown highlight groups are different from those...

There are nodes or parts that we may or may not want to render: - code blocks - images - ... We need an option for the parser (markmap-lib) to...

Parse Markdown to a lossless node tree, inserting empty nodes where needed to keep all hierarchical information. Input: ````md p0 ### h0.1 p1 ## h1 p2 - l1 - l2...

The header checking here excludes `+` and `/` which are valid characters in Base64 encoding, leading to incorrect auth failure: https://github.com/OpenMarshal/npm-WebDAV-Server/blob/5f237622e81886f0305293810725c07b54a2598f/src/user/v2/authentication/HTTPBasicAuthentication.ts#L34-L38 For example, with `user=abc, pass=1?2`, we get the base64...

If `depth` header is not set or not a number, `maxRequestDepth` does not work as expected. Because in such cases `depth` will never meet `0`: https://github.com/OpenMarshal/npm-WebDAV-Server/blob/5f237622e81886f0305293810725c07b54a2598f/src/server/v2/commands/Propfind.ts#L443