Skip to content

Commit da8afea

Browse files
chore: replace broken links
1 parent 1700933 commit da8afea

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

CHANGELOG.md

+27-27
Original file line numberDiff line numberDiff line change
@@ -820,11 +820,11 @@
820820
* Export `flutter_typeahead` package so user gets access `TextFieldConfiguration` class
821821
* Deprecate `validator` attribute in FormBuilderDateTimePicker, only `validators` should be used
822822
* When TimePicker is cancelled, return original value instead of null
823-
* Fix bug where initialTime for TimePicker defaults to 12:00, use currentTime. Closes [#234](https://github.com/danvick/flutter_form_builder/issues/234)
823+
* Fix bug where initialTime for TimePicker defaults to 12:00, use currentTime. Closes [#234](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/234)
824824

825825
## [3.8.0+1]
826826

827-
* Fix bug where Changing readOnly of `FormBuilder` does not change readOnly of `FormBuilderDateTimePicker`. Closes [#179](https://github.com/danvick/flutter_form_builder/issues/179)
827+
* Fix bug where Changing readOnly of `FormBuilder` does not change readOnly of `FormBuilderDateTimePicker`. Closes [#179](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/179)
828828

829829
## [3.8.0]
830830

@@ -833,7 +833,7 @@
833833
* `FormBuilderFilterChip` - Creates a chip that acts like a checkbox. By [Cesar Flores](https://github.com/VOIDCRUSHER). Again!
834834
* `FormBuilderColorPicker` with help from [Benjamin](https://github.com/Reprevise)
835835
* `FormBuilderTouchSpin` replaced the confusingly named `FormBuilderStepper` which is now deprecated.
836-
* Fix some inconsistencies in controller and focus node disposal. Courtesy of [Thomas Järvstrand](https://github.com/tjarvstrand). Should close [#230](https://github.com/danvick/flutter_form_builder/issues/230)
836+
* Fix some inconsistencies in controller and focus node disposal. Courtesy of [Thomas Järvstrand](https://github.com/tjarvstrand). Should close [#230](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/230)
837837
* Bumped up `flutter_typeahead` from `1.7.0` to `1.8.0`
838838

839839
## [3.7.3]
@@ -852,29 +852,29 @@
852852

853853
## [3.7.0] - 5-Dec-2019
854854

855-
* Included `onSaved` callback to all fields. Closes [#175](https://github.com/danvick/flutter_form_builder/issues/175)
855+
* Included `onSaved` callback to all fields. Closes [#175](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/175)
856856
* Added `Key` option to all fields to make testing possible
857-
* Fixed bug where custom controller not working in TypeAhead. Closes [#144](https://github.com/danvick/flutter_form_builder/issues/144)
857+
* Fixed bug where custom controller not working in TypeAhead. Closes [#144](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/144)
858858
* Fix issue where `FormBuilderDateRangePicker` ignores `initialFirstDate` and `initialLastDate`
859-
* Fixed bug where readOnly not working in FormBuilderDateTimePicker. Closes [#179](https://github.com/danvick/flutter_form_builder/issues/179)
860-
* Allow double `values` for `FormBuilderStepper`. Closes [#182](https://github.com/danvick/flutter_form_builder/issues/182)
859+
* Fixed bug where readOnly not working in FormBuilderDateTimePicker. Closes [#179](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/179)
860+
* Allow double `values` for `FormBuilderStepper`. Closes [#182](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/182)
861861
* Only include clear icon next to DropdownButton if the value is not `null`
862-
* Revert `intl`, upgrade `flutter_chips_input` & `datetime_picker_formfield` - due incompatibilities. Closes [#183](https://github.com/danvick/flutter_form_builder/issues/183), [#185](https://github.com/danvick/flutter_form_builder/issues/185)
862+
* Revert `intl`, upgrade `flutter_chips_input` & `datetime_picker_formfield` - due incompatibilities. Closes [#183](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/183), [#185](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/185)
863863

864864
## [3.6.1] - 6-Nov-2019
865865

866-
* Fixed bug caused by dropping unimplemented attribute `onChipTapped` of `flutter_chips_input`. Closes [#168](https://github.com/danvick/flutter_form_builder/issues/168)
866+
* Fixed bug caused by dropping unimplemented attribute `onChipTapped` of `flutter_chips_input`. Closes [#168](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/168)
867867

868868
## [3.6.0] - 4-Nov-2019
869869

870-
* Added clear option to FormBuilderDropdown - set `allowClear` to true. Closes [#148](https://github.com/danvick/flutter_form_builder/issues/148)
871-
* Default `contentPadding` and `border` attributes removed from CheckboxList, Radio and SegmentedControl list. Closes [#160](https://github.com/danvick/flutter_form_builder/issues/160)
872-
* Added `numberFormat` attribute to Slider. Closes [#156](https://github.com/danvick/flutter_form_builder/issues/156)
870+
* Added clear option to FormBuilderDropdown - set `allowClear` to true. Closes [#148](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/148)
871+
* Default `contentPadding` and `border` attributes removed from CheckboxList, Radio and SegmentedControl list. Closes [#160](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/160)
872+
* Added `numberFormat` attribute to Slider. Closes [#156](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/156)
873873
* Add error text to date range picker. Thanks to [ffpetrovic](https://github.com/ffpetrovic)
874874
* Fixed bug where pushing cancel on timePicker causes crash. Thanks to [ayushin](https://github.com/ayushin)
875-
* Fixed bug where Switch doesn't obey initialValue from FormBuilder. Closes [#159](https://github.com/danvick/flutter_form_builder/issues/159)
876-
* Fixed bug where FormBuilderDropdown shows value instead of label when disabled/readOnly. Closes [#154](https://github.com/danvick/flutter_form_builder/issues/154)
877-
* Fixed bug where FormBuilderDateTimePicker value is parsed from TextField string. Closes [#164](https://github.com/danvick/flutter_form_builder/issues/164)
875+
* Fixed bug where Switch doesn't obey initialValue from FormBuilder. Closes [#159](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/159)
876+
* Fixed bug where FormBuilderDropdown shows value instead of label when disabled/readOnly. Closes [#154](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/154)
877+
* Fixed bug where FormBuilderDateTimePicker value is parsed from TextField string. Closes [#164](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/164)
878878
* Added default TextInputConfiguration options for ChipsInput
879879
* Fix example project - AndroidX compatibility. Thanks to [prasadsunny1](https://github.com/prasadsunny1)
880880
* Bumped up `flutter_typeahead` 1.6.1 -> 1.7.0
@@ -891,7 +891,7 @@
891891

892892
## [3.5.3]
893893

894-
* Fixed DateTimePicker bug: '`DateTime is not a subtype of type TimeOfDay`' when Input type is Time only. Closes [#131](https://github.com/danvick/flutter_form_builder/issues/131)
894+
* Fixed DateTimePicker bug: '`DateTime is not a subtype of type TimeOfDay`' when Input type is Time only. Closes [#131](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/131)
895895

896896
## [3.5.2]
897897

@@ -977,15 +977,15 @@
977977

978978
## [3.2.3]
979979

980-
* Allow `readonly` attribute for fields to be changed at runtime. Credit [Daniel Acorsi](https://github.com/dhaalves). Closes [#75](https://github.com/danvick/flutter_form_builder/issues/75)
980+
* Allow `readonly` attribute for fields to be changed at runtime. Credit [Daniel Acorsi](https://github.com/dhaalves). Closes [#75](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/75)
981981

982982
## [3.2.2]
983983

984984
* Bumped up `flutter_chips_input` from v1.2.0 to 1.3.0
985985

986986
## [3.2.1]
987987

988-
* Add missing attributes for `FormBuilderSlider` to customize `Slider` Widget including `activeColor`, `inactiveColor`, `onChangeStart`, `onChangeEnd`, `label` and `semanticFormatterCallback`. Closes [#80](https://github.com/danvick/flutter_form_builder/issues/80).
988+
* Add missing attributes for `FormBuilderSlider` to customize `Slider` Widget including `activeColor`, `inactiveColor`, `onChangeStart`, `onChangeEnd`, `label` and `semanticFormatterCallback`. Closes [#80](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/80).
989989
* Add support for `underline` to `FormBuilderDropdown`. Credit Jordan Nelson (github/jrnelson333).
990990
* Minor fixes to README
991991

@@ -996,7 +996,7 @@
996996

997997
## [3.1.3]
998998

999-
* Made `flutter_typeahead`'s `onSuggestionSelected` available to `FormBuilderTypeAhead` - Closes [#73](https://github.com/danvick/flutter_form_builder/issues/73). Credit to daWeed (github/psrcek)
999+
* Made `flutter_typeahead`'s `onSuggestionSelected` available to `FormBuilderTypeAhead` - Closes [#73](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/73). Credit to daWeed (github/psrcek)
10001000

10011001
## [3.1.2]
10021002

@@ -1014,7 +1014,7 @@
10141014

10151015
## [3.0.1]
10161016

1017-
* Fixed bug in where `focuNode` for `FormBuilderTextField` is ignored. Closes [#53](https://github.com/danvick/flutter_form_builder/issues/53)
1017+
* Fixed bug in where `focuNode` for `FormBuilderTextField` is ignored. Closes [#53](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/53)
10181018
* Fixed bug in where `textEditingConfiguration` for `FormBuilderTypeAhead` ignored
10191019

10201020
## [3.0.0]
@@ -1041,7 +1041,7 @@ functions that do different validations
10411041
* New Feature `FormBuilderValidators` comes with common validation functionality options such as:
10421042
required, min, max, minLength, maxLength, email, url, credit card etc.
10431043
* Added `valueTransformer` - transforms field value before saving to the final form value
1044-
* Added requested `onChanged` value notifier event on fields. Closes [#45](https://github.com/danvick/flutter_form_builder/issues/45)
1044+
* Added requested `onChanged` value notifier event on fields. Closes [#45](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/45)
10451045
* Prevent duplicate `attribute` names in fields - assertion
10461046
* **Breaking changes:**
10471047
* `FormBuilderInputOption` becomes `FormBuilderFieldOption`
@@ -1088,7 +1088,7 @@ Access form state using a `GlobalKey<FormBilderState>`
10881088
## [1.5.0]
10891089

10901090
* Now using `datetime_picker_formfield` plugin from pub for DatePicker and TimePicker.
1091-
Should close [#33](https://github.com/danvick/flutter_form_builder/issues/33)
1091+
Should close [#33](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/33)
10921092
* Added new `FormBuilderInput` - DateTimePicker
10931093
* **Breaking change**: DatePicker, TimePicker & DateTimePicker now return an object of
10941094
type `DateTime` instead of `String`
@@ -1098,8 +1098,8 @@ type `DateTime` instead of `String`
10981098

10991099
* The entire form or individual controls can now be made readonly by making `readonly` property
11001100
to `true`. Default value is `false`.
1101-
Closes [#11](https://github.com/danvick/flutter_form_builder/issues/11) and
1102-
[#16](https://github.com/danvick/flutter_form_builder/issues/16)
1101+
Closes [#11](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/11) and
1102+
[#16](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/16)
11031103

11041104
## [1.3.5]
11051105

@@ -1111,7 +1111,7 @@ Bug fix: Imported `dart:async` for use of `Future`s to be compatible with Dart <
11111111

11121112
## [1.3.3]
11131113

1114-
* Updated `flutter_typeahead` version. Closes [#15](https://github.com/danvick/flutter_form_builder/issues/15)
1114+
* Updated `flutter_typeahead` version. Closes [#15](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/15)
11151115

11161116
## [1.3.2]
11171117

@@ -1123,7 +1123,7 @@ Bug fix: Imported `dart:async` for use of `Future`s to be compatible with Dart <
11231123
* Moved ChipsInput into own library on pub.dartlang.org,
11241124
check it out [here](https://pub.dartlang.org/packages/flutter_chips_input)
11251125
* Updated example code to include proper use of Form's `onChanged` function after update.
1126-
Closes [#8](https://github.com/danvick/flutter_form_builder/issues/8)
1126+
Closes [#8](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/8)
11271127

11281128
## [1.3.0]
11291129

@@ -1168,7 +1168,7 @@ Closes [#8](https://github.com/danvick/flutter_form_builder/issues/8)
11681168
* Added resetButton
11691169

11701170
### Fixes
1171-
* Fixed bug where `TYPE_TEXT` validates as `TYPE_EMAIL` - Closes [#1](https://github.com/danvick/flutter_form_builder/issues/1)
1171+
* Fixed bug where `TYPE_TEXT` validates as `TYPE_EMAIL` - Closes [#1](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues/1)
11721172
* Fixed initial value setting `FormBuilderInput.checkboxList()`
11731173

11741174
### Breaking Changes

0 commit comments

Comments
 (0)