Showing
5 changed files
with
26 additions
and
24 deletions
1 | +## [3.4.5] | ||
2 | +- Fix typo on RxList.remove that could cause type errors. | ||
3 | +- Remove initialization console print | ||
4 | + | ||
1 | ## [3.4.4] | 5 | ## [3.4.4] |
2 | - Fix exception 'isInit called null' when tags are used in conjunction with dependencies. (@djade007) | 6 | - Fix exception 'isInit called null' when tags are used in conjunction with dependencies. (@djade007) |
3 | 7 |
@@ -182,8 +182,6 @@ class GetMaterialApp extends StatelessWidget { | @@ -182,8 +182,6 @@ class GetMaterialApp extends StatelessWidget { | ||
182 | onDispose?.call(); | 182 | onDispose?.call(); |
183 | }, | 183 | }, |
184 | initState: (i) { | 184 | initState: (i) { |
185 | - print( | ||
186 | - '[GETX] INITIALIZED: If you need help, join our community support channels: https://tinyurl.com/y3cp88l3'); | ||
187 | if (locale != null) Get.locale = locale; | 185 | if (locale != null) Get.locale = locale; |
188 | 186 | ||
189 | if (fallbackLocale != null) Get.fallbackLocale = fallbackLocale; | 187 | if (fallbackLocale != null) Get.fallbackLocale = fallbackLocale; |
@@ -330,7 +330,7 @@ class RxList<E> extends Iterable<E> implements RxInterface<List<E>> { | @@ -330,7 +330,7 @@ class RxList<E> extends Iterable<E> implements RxInterface<List<E>> { | ||
330 | bool remove(Object item) { | 330 | bool remove(Object item) { |
331 | bool hasRemoved = _list.remove(item); | 331 | bool hasRemoved = _list.remove(item); |
332 | if (hasRemoved) { | 332 | if (hasRemoved) { |
333 | - subject.add(item); | 333 | + subject.add(_list); |
334 | } | 334 | } |
335 | return hasRemoved; | 335 | return hasRemoved; |
336 | } | 336 | } |
@@ -383,7 +383,7 @@ class RxList<E> extends Iterable<E> implements RxInterface<List<E>> { | @@ -383,7 +383,7 @@ class RxList<E> extends Iterable<E> implements RxInterface<List<E>> { | ||
383 | 383 | ||
384 | void update(void fn(Iterable<E> value)) { | 384 | void update(void fn(Iterable<E> value)) { |
385 | fn(value); | 385 | fn(value); |
386 | - subject.add(null); | 386 | + subject.add(_list); |
387 | } | 387 | } |
388 | 388 | ||
389 | /// Replaces all existing items of this list with [items] | 389 | /// Replaces all existing items of this list with [items] |
@@ -7,49 +7,49 @@ packages: | @@ -7,49 +7,49 @@ packages: | ||
7 | name: async | 7 | name: async |
8 | url: "https://pub.dartlang.org" | 8 | url: "https://pub.dartlang.org" |
9 | source: hosted | 9 | source: hosted |
10 | - version: "2.4.2" | 10 | + version: "2.5.0-nullsafety" |
11 | boolean_selector: | 11 | boolean_selector: |
12 | dependency: transitive | 12 | dependency: transitive |
13 | description: | 13 | description: |
14 | name: boolean_selector | 14 | name: boolean_selector |
15 | url: "https://pub.dartlang.org" | 15 | url: "https://pub.dartlang.org" |
16 | source: hosted | 16 | source: hosted |
17 | - version: "2.0.0" | 17 | + version: "2.1.0-nullsafety" |
18 | characters: | 18 | characters: |
19 | dependency: transitive | 19 | dependency: transitive |
20 | description: | 20 | description: |
21 | name: characters | 21 | name: characters |
22 | url: "https://pub.dartlang.org" | 22 | url: "https://pub.dartlang.org" |
23 | source: hosted | 23 | source: hosted |
24 | - version: "1.1.0-nullsafety" | 24 | + version: "1.1.0-nullsafety.2" |
25 | charcode: | 25 | charcode: |
26 | dependency: transitive | 26 | dependency: transitive |
27 | description: | 27 | description: |
28 | name: charcode | 28 | name: charcode |
29 | url: "https://pub.dartlang.org" | 29 | url: "https://pub.dartlang.org" |
30 | source: hosted | 30 | source: hosted |
31 | - version: "1.1.3" | 31 | + version: "1.2.0-nullsafety" |
32 | clock: | 32 | clock: |
33 | dependency: transitive | 33 | dependency: transitive |
34 | description: | 34 | description: |
35 | name: clock | 35 | name: clock |
36 | url: "https://pub.dartlang.org" | 36 | url: "https://pub.dartlang.org" |
37 | source: hosted | 37 | source: hosted |
38 | - version: "1.0.1" | 38 | + version: "1.1.0-nullsafety" |
39 | collection: | 39 | collection: |
40 | dependency: transitive | 40 | dependency: transitive |
41 | description: | 41 | description: |
42 | name: collection | 42 | name: collection |
43 | url: "https://pub.dartlang.org" | 43 | url: "https://pub.dartlang.org" |
44 | source: hosted | 44 | source: hosted |
45 | - version: "1.15.0-nullsafety" | 45 | + version: "1.15.0-nullsafety.2" |
46 | fake_async: | 46 | fake_async: |
47 | dependency: transitive | 47 | dependency: transitive |
48 | description: | 48 | description: |
49 | name: fake_async | 49 | name: fake_async |
50 | url: "https://pub.dartlang.org" | 50 | url: "https://pub.dartlang.org" |
51 | source: hosted | 51 | source: hosted |
52 | - version: "1.1.0" | 52 | + version: "1.1.0-nullsafety" |
53 | flutter: | 53 | flutter: |
54 | dependency: "direct main" | 54 | dependency: "direct main" |
55 | description: flutter | 55 | description: flutter |
@@ -66,21 +66,21 @@ packages: | @@ -66,21 +66,21 @@ packages: | ||
66 | name: matcher | 66 | name: matcher |
67 | url: "https://pub.dartlang.org" | 67 | url: "https://pub.dartlang.org" |
68 | source: hosted | 68 | source: hosted |
69 | - version: "0.12.8" | 69 | + version: "0.12.10-nullsafety" |
70 | meta: | 70 | meta: |
71 | dependency: transitive | 71 | dependency: transitive |
72 | description: | 72 | description: |
73 | name: meta | 73 | name: meta |
74 | url: "https://pub.dartlang.org" | 74 | url: "https://pub.dartlang.org" |
75 | source: hosted | 75 | source: hosted |
76 | - version: "1.3.0-nullsafety" | 76 | + version: "1.3.0-nullsafety.2" |
77 | path: | 77 | path: |
78 | dependency: transitive | 78 | dependency: transitive |
79 | description: | 79 | description: |
80 | name: path | 80 | name: path |
81 | url: "https://pub.dartlang.org" | 81 | url: "https://pub.dartlang.org" |
82 | source: hosted | 82 | source: hosted |
83 | - version: "1.7.0" | 83 | + version: "1.8.0-nullsafety" |
84 | sky_engine: | 84 | sky_engine: |
85 | dependency: transitive | 85 | dependency: transitive |
86 | description: flutter | 86 | description: flutter |
@@ -92,55 +92,55 @@ packages: | @@ -92,55 +92,55 @@ packages: | ||
92 | name: source_span | 92 | name: source_span |
93 | url: "https://pub.dartlang.org" | 93 | url: "https://pub.dartlang.org" |
94 | source: hosted | 94 | source: hosted |
95 | - version: "1.7.0" | 95 | + version: "1.8.0-nullsafety" |
96 | stack_trace: | 96 | stack_trace: |
97 | dependency: transitive | 97 | dependency: transitive |
98 | description: | 98 | description: |
99 | name: stack_trace | 99 | name: stack_trace |
100 | url: "https://pub.dartlang.org" | 100 | url: "https://pub.dartlang.org" |
101 | source: hosted | 101 | source: hosted |
102 | - version: "1.9.5" | 102 | + version: "1.10.0-nullsafety" |
103 | stream_channel: | 103 | stream_channel: |
104 | dependency: transitive | 104 | dependency: transitive |
105 | description: | 105 | description: |
106 | name: stream_channel | 106 | name: stream_channel |
107 | url: "https://pub.dartlang.org" | 107 | url: "https://pub.dartlang.org" |
108 | source: hosted | 108 | source: hosted |
109 | - version: "2.0.0" | 109 | + version: "2.1.0-nullsafety" |
110 | string_scanner: | 110 | string_scanner: |
111 | dependency: transitive | 111 | dependency: transitive |
112 | description: | 112 | description: |
113 | name: string_scanner | 113 | name: string_scanner |
114 | url: "https://pub.dartlang.org" | 114 | url: "https://pub.dartlang.org" |
115 | source: hosted | 115 | source: hosted |
116 | - version: "1.0.5" | 116 | + version: "1.1.0-nullsafety" |
117 | term_glyph: | 117 | term_glyph: |
118 | dependency: transitive | 118 | dependency: transitive |
119 | description: | 119 | description: |
120 | name: term_glyph | 120 | name: term_glyph |
121 | url: "https://pub.dartlang.org" | 121 | url: "https://pub.dartlang.org" |
122 | source: hosted | 122 | source: hosted |
123 | - version: "1.1.0" | 123 | + version: "1.2.0-nullsafety" |
124 | test_api: | 124 | test_api: |
125 | dependency: transitive | 125 | dependency: transitive |
126 | description: | 126 | description: |
127 | name: test_api | 127 | name: test_api |
128 | url: "https://pub.dartlang.org" | 128 | url: "https://pub.dartlang.org" |
129 | source: hosted | 129 | source: hosted |
130 | - version: "0.2.17" | 130 | + version: "0.2.19-nullsafety" |
131 | typed_data: | 131 | typed_data: |
132 | dependency: transitive | 132 | dependency: transitive |
133 | description: | 133 | description: |
134 | name: typed_data | 134 | name: typed_data |
135 | url: "https://pub.dartlang.org" | 135 | url: "https://pub.dartlang.org" |
136 | source: hosted | 136 | source: hosted |
137 | - version: "1.3.0-nullsafety" | 137 | + version: "1.3.0-nullsafety.2" |
138 | vector_math: | 138 | vector_math: |
139 | dependency: transitive | 139 | dependency: transitive |
140 | description: | 140 | description: |
141 | name: vector_math | 141 | name: vector_math |
142 | url: "https://pub.dartlang.org" | 142 | url: "https://pub.dartlang.org" |
143 | source: hosted | 143 | source: hosted |
144 | - version: "2.1.0-nullsafety" | 144 | + version: "2.1.0-nullsafety.2" |
145 | sdks: | 145 | sdks: |
146 | - dart: ">=2.9.0-18.0 <2.9.0" | 146 | + dart: ">=2.10.0-0.0.dev <2.10.0" |
1 | name: get | 1 | name: get |
2 | description: Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX. | 2 | description: Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX. |
3 | -version: 3.4.4 | 3 | +version: 3.4.5 |
4 | homepage: https://github.com/jonataslaw/get | 4 | homepage: https://github.com/jonataslaw/get |
5 | 5 | ||
6 | environment: | 6 | environment: |
-
Please register or login to post a comment