Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jonatas
2020-12-04 17:11:33 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d16b8a8bd9d9b27e6d90e5a665e62dd2075a2ebe
d16b8a8b
1 parent
44839bb8
update to 3.22.1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
6 deletions
CHANGELOG.md
lib/get_connect/http/src/response/response.dart
pubspec.yaml
CHANGELOG.md
View file @
d16b8a8
## [3.22.1]
-
Improve: auto jsonDecode occurs only if response.header.contentType is "application/json"
-
Improve and fix requests types (@eduardoflorence)
-
Fix HeaderValue variables with same name (@haidang93)
## [3.22.0]
-
Added: more multipart options. Now you can send as multipart:
...
...
@@ -10,12 +16,9 @@ String path:
Or bytes (Flutter web work only with bytes):
'file':MultipartFile(File('file').readAsBytesSync(), filename: 'avatar.png'),
-
Improve: auto jsonDecode occurs only if response.header.contentType is "application/json"
-
Added: Upload Progress to MultipartRequest
-
Added support to List
<MultipartFile>
(@jasonlaw)
-
Improve and fix requests types (@eduardoflorence)
-
Fix HeaderValue variables with same name (@haidang93)
## [3.21.3]
-
Improve multipart file and defaultDecoder on GetConnect
...
...
lib/get_connect/http/src/response/response.dart
View file @
d16b8a8
...
...
@@ -229,7 +229,7 @@ class HeaderValue {
}
var
valueParameter
=
parseParameterValue
();
if
(
name
==
'charset'
&&
valueParameter
!=
null
)
{
valueParameter
=
valueParameter
.
toLowerCase
();
valueParameter
=
valueParameter
.
toLowerCase
();
}
parameters
[
name
]
=
valueParameter
;
bump
();
...
...
pubspec.yaml
View file @
d16b8a8
name
:
get
description
:
Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with GetX.
version
:
3.22.
0
version
:
3.22.
1
homepage
:
https://github.com/jonataslaw/getx
environment
:
...
...
Please
register
or
login
to post a comment