Daniel Earwicker
Daniel Earwicker
The new language service stuff is great for users of templating frameworks, to be sure. The reason React is still superior is because it only adds a syntax for declaring...
If the only example I have of a date input is `03/02/2022` then the order of day/month is ambiguous. By specifying culture `en-us` I can get a single resolution with...
In Chrome typing becomes progressively slower as the document gets longer. Some obvious improvements: - The canvas is sized large enough for the whole document, which is unnecessary. We only...
I guess end-of-doc character should pick up alignment from predecessor?
New formatting flag similar to align, i.e. obey first word of line, apply to whole line. All intelligence would go in wrap. Bullet could be handled by an inline type....
**TypeScript Version:** 2.1.4 **Code** ```ts interface MutableValue { value: T; } interface ImmutableValue { readonly value: T; } let i: ImmutableValue = { value: "hi" }; i.value = "Excellent, I...
**Changes** In `GetChannelAsync` the `if (!item.HasImage(ImageType.Primary))` check means once a channel has an image, it is never updated. So it continues to have the wrong image even after it has...
### Please describe your bug I set up HD Homerun and Schedulesdirect, let the guide refresh and found a lot of channels incorrectly mapped. When I manually remapped them I...
### Is your enhancement related to a problem? Please describe. Some schemas have `patternProperties` so the author of the YAML file can specify any property names they like at some...
Given the input: ``` > ``` the parser says the attribute's value is `>` but the text content is ">". Similarly if the attribute value is `'` it is not...