Jonas Finnemann Jensen
Jonas Finnemann Jensen
All dependency types can have `version` constraints... they are not used for picking a different git revision or different path :D But they will produce an solver conflict..
`gdjs.RuntimeGamePixiRenderer.prototype.isFullScreen` does not detect that users press escape and leave fullscreen mode. This is easy to see from [source for `RuntimeGamePixiRenderer`](https://docs.gdevelop-app.com/GDJS%20Runtime%20Documentation/pixi-renderers_runtimegame-pixi-renderer.js.html). ## To Reproduce * Create an object that is...
Implemented in https://github.com/dart-lang/sdk/issues/56186 (credits @@srawlins). We should probably document this on `dart.dev` too. But I figured it would be harmless to add it to dartdoc. This is certainly one of...
Why shouldn't we always have `showUndocumentedCategories: true`? (this isn't the default today). If someone wrote an `{@category foo}` tag, then why wouldn't we want to always include it? If authors...
It appears to me that `useCategories` defaults to `true`, and that nobody reads it. ```dart DartdocOptionArgOnly('useCategories', true, resourceProvider, help: 'Display categories in the sidebar of packages'), ``` ```dart bool get...
In many cases I only care what type of exception I'm getting. I don't care about the exception at-most I might want to do a `e.toString()`. **Example:** ```dart for (int...
We put a lot of work into messages coming out of `dart pub get`. We have messages like: * Current package version have been retracted. * Newer a.b.c version available....
* [x] https://github.com/google/dart-neats/pull/291 * [x] Support for `@DefaultValue(JsonValue{'foo': 42, 'bar': null}))` on fields with `JsonValue`. * [x] Tests for `.distinct()` with `JsonValue`. * [x] Expressions and tests for `JsonValue` *...
As of writing there is some preliminary support for MariaDB. We use `package:mysql1`, and a `DatabaseAdapter` and `SqlDialect` implementation for MariaDB / MySQL. There are some features we can't support...
`toExpr()` will not call `DateTime.toUtc()`, but maybe it should! Mixing UTC and local-time in a database is probably not a good idea. I think postgres adapter already converts to UTC...