Arnav Singh
Arnav Singh
It prevents scrollbars if the video is larger than the viewport. It exists to hide the .libjass-font-measure divs when they're being used. Need to find another way to hide them,...
For 1.0 or whatever. - Setters for `libjass.debugMode`, `libjass.verboseMode`, `libjass.Set`, `libjass.Map`, `libjass.Promise` - must be set using `libjass.configure()` - Deprecation notice in `ASS` constructor. - Argument swapping in `WebRenderer` constructor....
- New flag on Dialogue - containsClipTag - New property on PreRenderedSub - renderedPosition. null by default. Updated at some time after sub is drawn. (When? Can't do it in...
- Not accurate, but text width can be estimated based on font size and number of characters in the span. - A more accurate method is [using the 2-D context...
Rotation
- Partial implementation in [this branch](https://github.com/Arnavion/libjass/commits/new-rotation) - [diff](https://github.com/Arnavion/libjass/compare/master...new-rotation) - Rotation is always applied in the order Y-X-Z - Rotations apply from the point where they're defined till the end of...
Tracking issue for https://github.com/PowerShell/PowerShell/issues/6181 PS Core uses an argument transformation attribute `ArgumentToEncodingTransformationAttribute ` on its `FileSystemProvider` commandlets' `-Encoding` parameters to convert well-known encoding names like `UTF8` to `System.Text.Encoding` objects. This...
`LPUNKNOWN`, `GUID`, reftypes not in the same typelib, etc. Even better, print the corresponding `use` statements for known imports.
The rust-overlay invokes the tarball's `install.sh`, which in the case of the `rust` package's tarball also ends up installing `clippy-preview`, `rustfmt-preview`, `rust-analysis`, `rls-preview`, etc that are optional extensions. This is...
I pointed out in https://github.com/paritytech/parity-wasm/pull/196#issuecomment-371278025 that LLVM/lld sometimes compiles integers to larger representations than they need. That particular case was an `i32.const 0` compiled as `0x41 0x80 0x80 0x80 0x80...
### What it does Rust 1.50 stabilized [`std::cmp::Ord::clamp`](https://doc.rust-lang.org/stable/std/cmp/trait.Ord.html#method.clamp), [`f32::clamp`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.clamp) and [`f64::clamp`.](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.clamp) When the user writes `foo.min(x).max(y)` or `foo.max(y).min(x)` where `foo` is `T: Ord` or `f32` or `f64`, clippy should suggest...