Milly

Results 42 issues of Milly

In Train > Preprocess images > `Split oversized images to two`, ## Fixed bug - If a non-square is specified, it will not keep the aspect ratio of the image....

The new `FilenameGenerator` class cannot handle nested brackets correctly. Fixed it. It can handle patterns like `[[datetime]]` to `[20221025030405]`.

the result of `JSON.stringify(new Error('msg'))` is `{}`. pass the `Error` object to logger as it is.

I want to refactor `helper/expr_string` and rename it into an `eval` module. Also, I would like to be able to collaborate with `Lambda`. Usage example: ```ts import type { Denops...

enhancement

This closes #332. ## Plugin API - `Entrypoint` can now return `AsyncDisposable`. - The promise returned by `Service.waitLoaded()` will be rejected for the following reason `string`: - `DenopsPluginFail:{name}` when the...

enhancement

Exposes the type `PluginMain` for the plugin's main function. Update the way to define the main function of the plugin as follows: ```ts // New approach export const main: PluginMain...

documentation
enhancement

Currently, there is no event to dispose the plugin on unload, such as before reloading plugin. Allows the plugin to perform dispose processing. The proposed API: ### Returns teardown callback...

enhancement

- Deno v1.32.2, added `deno.cache` command (https://github.com/denoland/deno/pull/20111) - Deno v1.37.0, added `deno.reloadImportRegistries` command (https://github.com/denoland/deno/pull/20823) - Deno v1.40.3, removed `deno/cache` and `deno/reloadImportRegistries` methods (https://github.com/denoland/deno/pull/22182) ## about `deno.cache` It is already exists,...

If `@@asyncIterator` is `null` or `undefined`, it should ignores and fallback to `@@iterator`. Tests have been merged into WPT. https://github.com/web-platform-tests/wpt/pull/46374 The proposal of `ReadableStream.from` uses TC39 [GetIterator][] and [GetMethod][] within...