Andrei Andreev
Andrei Andreev
### Description In Git, refs can be packed with [git pack-refs](https://git-scm.com/docs/git-pack-refs) which creates a single `.git/packed-refs` file with all the refs. According to [documentation](https://git-scm.com/docs/git-pack-refs): > This command is used to...
### Description Currently, Unity task is using an internal log parser with predefined log patterns (since Unity's build log doesn't mark lines with log levels): https://github.com/nuke-build/nuke/blob/c748538e1485aaaa7788639fd9d7887cba2f31c3/source/Nuke.Common/Tools/Unity/Logging/LogParser.cs#L28-L43 I have a bunch...
I don't know for sure, but you could probably add `com.unity.modules.uielements` to package dependencies for auto-resolution, or maybe just note that UIElements package is required. Thanks for the package tho,...
Same as https://github.com/Cysharp/UniTask/issues/222
The only format which is acceptable now is `1e308` The formats that are throwing exceptions: - `1E308` - `1E+308` - `1e+308` - `e308` - `e+308` Related issue: https://github.com/Patashu/break_infinity.js/issues/36
I haven't checked other operations, but in some cases `add` can return the same instance that was passed as left-hand side `Decimal`. https://github.com/Patashu/break_infinity.js/blob/master/src/break_infinity.ts#L869 We need to decide if we want...
Add support of parsing numbers like `e100` in addition to `1e100` For ex. `Decimal.fromString("e100")`
**Feature Description** Another (now-archived) hierarchy-enchancing plugin [Smart Hierarchy](https://github.com/neon-age/Smart-Hierarchy) does a cool thing with activation checkbox which is activation swiping. Basically, dragging mouse across several checkboxes with LMB down bulk-toggles these...