flex 1.0.0 flex: ^1.0.0 copied to clipboard
A collection of classes, extensions and utilities to aid faster development.
Changelog #
1.0.0 #
- Migrate to NNBD
- Require Dart >= 2.15
- Refactor
PatientStreamQueue
internals - Refactor
PatientStreamQueue
API
0.5.1 #
- Fix bug in string template logic not detecting
\
properly - Fix bug in string template logic adding variable to beginning of substitution instead of the character immediately before, if present
- Fix bug in string template logic caused by match group 1 being null if the variable is at the beginning of the string
0.5.0 - ISO Localization #
- Add all ISO language codes
- Add all ISO country codes
- Add all ISO locale codes
- Fix bug in string template regex not allowing variable at the beginning of a string
0.4.1 #
- Change
String.fillTemplate
regex to support escaping$
with a\
0.4.0 - Add Plexus Localizations #
- Add localization implementation from Plexus
0.3.0+2 #
- Add comment explaining try/on block to bypass useless lint
0.3.0 - Vastly improve #
- Fix logic in
PatientStreamQueue._onCancel
- Split
PatientStreamQueue.dispose
intoPatientStreamQueue.close
returning aFuture<void>
, which disposes of thePatientStreamQueue
waiting for events to be processed depending on the value of named parameterwait
, andPatientStreamQueue.dispose
returning avoid
, which disposes of thePatientStreamQueue
without waiting for events to be processed - Wrap
stdin.echoMode
calls inprompt
andpromptSync
in try/catch to support platforms that don't support setting echo mode (ex. Dart-Code terminal output mode) - Split example into 3 files
- Add example launch configuration
0.2.2 #
- Fix logic in
PatientStreamQueue.dispose
0.2.1 #
- Add
sendEncodedEvent()
for sending Plexus encoded events
0.2.0 #
- Add
encodedEventHeader
andencodedEventSeparator
toconstants.dart
- Fix
PatientStreamQueue.dispose
,PatientStreamQueue._onListen
andPatientStreamQueue._onCancel
logic - Change typedefs to use generic function declaration syntax
- Enable
prefer_expression_function_bodies
,prefer_generic_function_type_aliases
anduse_function_type_syntax_for_parameters
inanalysis_options.yaml
- Switch
expose/list.dart
andexpose/maps.dart
to use generic typedefs instead of inline function declarations
0.1.0 #
Initial Development Release