Jebbs

Results 13 issues of Jebbs

假设有以下代码 ``` t := tango.Classic() g := tango.NewGroup() g.Use(tango.Static(tango.StaticOptions{ RootPath: "./admin", Prefix: "/", IndexFiles: []string{"index.html"}, })) t.Group("/admin", g) t.Run(":80") ``` 运行后,无论访问`http://localhost/`还是`http://localhost/admin/`都是404。这个似乎不符合直觉。 从这个代码来说,把 `tango.Static` 的 `Prefix` 设成`/admin`似乎也达成目的。但我这么做的初衷是希望给 `http://localhost/admin/` 做中间件,特别地控制它的权限。

enhancement

[error.zip](https://github.com/sketch-hq/SketchAPI/files/5472494/error.zip) Above is a file reported by one my user, many of them encountered issues in this part. ## How to reproduce 1. Sketch prompts font is missing 1. Replace...

With this file, which is reported by my plugin user: [text_color_undefined.sketch.zip](https://github.com/sketch-hq/SketchAPI/files/4496597/text_color_undefined.sketch.zip) executing following in playground: ```ts let document = sketch.getSelectedDocument(); let layer = document.pages[0].layers[0].layers[0]; console.log( layer.name, layer.style.textColor, //undefined layer.style.fontFamily, //undefined...

more-information-needed
need-reproduction

The following code throw an error of `Error: image needs to be a Buffer`, but: 1. The fill is not enabled. 2. even it is enabled, the fill type is...

more-information-needed

Windows is case-insensitive, but when cross-compiling dmlc from Linux with the MinGW tools this causes problems, because the file is named shlwapi.h in lowercase. include/dmlc/filesystem.h (L21) ```c++ #include #pragma comment(lib,...

In some cases, what the scraper got is only a landing page, with this PR, user can use scraper rules (e.g.: `.post.detail .title a`) to locate the link of the...

The PR does two aspect of works: 1. remove unwanted padding for scaled down images Large images (`.single .content img`) will be scaled down according to the style `max-width: 100%`....

The PR ports `Multiple config files support` to sing-box, and takes advice from #164. ```bash sing-box run -c inbound.json -c outbound.json sing-box run -r -c config_dir ```

The PR add subscription service support. Please see document files in the PR for detail. Together with #163, #164, we can achieve unattended running of `sing-box` without external tools required....

The PR ports the `leastload` and`leastping` balancers to `sing-box`, which were committed here: https://github.com/v2fly/v2ray-core/pull/589 Please see document files in the PR for detail. ### Preview config: ``` { "tag": "leastload",...