Skip to content

Commit 4329c8c

Browse files
authored
Merge pull request #16 from CodingAleCR/release/0.2.0
Release: 0.2.0
2 parents 7b0629c + bc6ff58 commit 4329c8c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+669
-728
lines changed

.gitignore

Lines changed: 17 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,24 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
61
.DS_Store
7-
.atom/
8-
.buildlog/
9-
.history
10-
.svn/
11-
12-
# IntelliJ related
13-
*.iml
14-
*.ipr
15-
*.iws
16-
.idea/
17-
18-
# Visual Studio Code related
19-
.vscode/
20-
21-
# Flutter/Dart/Pub related
22-
**/doc/api/
232
.dart_tool/
24-
.flutter-plugins
3+
254
.packages
26-
.pub-cache/
275
.pub/
28-
/build/
296

30-
# Android related
31-
**/android/**/gradle-wrapper.jar
32-
**/android/.gradle
33-
**/android/captures/
34-
**/android/gradlew
35-
**/android/gradlew.bat
36-
**/android/local.properties
37-
**/android/**/GeneratedPluginRegistrant.java
7+
build/
388

39-
# iOS/XCode related
40-
**/ios/**/*.mode1v3
41-
**/ios/**/*.mode2v3
42-
**/ios/**/*.moved-aside
43-
**/ios/**/*.pbxuser
44-
**/ios/**/*.perspectivev3
45-
**/ios/**/*sync/
46-
**/ios/**/.sconsign.dblite
47-
**/ios/**/.tags*
48-
**/ios/**/.vagrant/
49-
**/ios/**/DerivedData/
50-
**/ios/**/Icon?
51-
**/ios/**/Pods/
52-
**/ios/**/.symlinks/
53-
**/ios/**/profile
54-
**/ios/**/xcuserdata
55-
**/ios/.generated/
56-
**/ios/Flutter/App.framework
57-
**/ios/Flutter/Flutter.framework
58-
**/ios/Flutter/Generated.xcconfig
59-
**/ios/Flutter/app.flx
60-
**/ios/Flutter/app.zip
61-
**/ios/Flutter/flutter_assets/
62-
**/ios/ServiceDefinitions.json
63-
**/ios/Runner/GeneratedPluginRegistrant.*
649

65-
# Exceptions to above rules.
66-
!**/ios/**/default.mode1v3
67-
!**/ios/**/default.mode2v3
68-
!**/ios/**/default.pbxuser
69-
!**/ios/**/default.perspectivev3
70-
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
10+
.atom/
11+
.idea
12+
.vscode
13+
packages/**/ios/
14+
packages/**/android/
15+
doc/
16+
pubspec.lock
17+
.flutter-plugins
18+
*.iml
19+
coverage/
20+
.test_coverage.dart
21+
*.log
22+
flutter_export_environment.sh
23+
!packages/**/example/ios/
24+
!packages/**/example/android/

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.2.0
4+
5+
* Added: Unit testing for a few of the files.
6+
* Modified: Android and iOS projects both in the plugin and the example now use Kotlin/Swift.
7+
* Modified: Android projects both in the plugin and the example now use AndroidX namespaces.
8+
* Fixed: Last '&' character was not removed from parametized URLs.
9+
* Fixed: Duplicate GET parameters when using `get`.
10+
311
## 0.1.1
412

513
* Fixed: HTTP Methods have misaligned parameters. Now they are called via named parameters to avoid type mismatch exceptions when being used.

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# http_interceptor
22

3+
[![Pub](https://img.shields.io/pub/v/http_interceptor.svg)](https://pub.dev/packages/http_interceptor)
4+
[![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart)
5+
[![License: MIT](https://img.shields.io/badge/license-MIT-purple.svg)](https://opensource.org/licenses/MIT)
6+
[![codecov](https://codecov.io/gh/CodingAleCR/http_interceptor/branch/master/graph/badge.svg)](https://codecov.io/gh/CodingAleCR/http_interceptor)
7+
[![Star on GitHub](https://img.shields.io/github/stars/codingalecr/http_interceptor.svg?style=flat&logo=github&colorB=deeppink&label=stars)](https://github.com/codingalecr/http_interceptor)
8+
39
A middleware library that lets you modify requests and responses if desired. Based of on [http_middleware](https://github.com/TEDConsulting/http_middleware)
410

511
## Getting Started

analysis_options.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include: package:effective_dart/analysis_options.1.2.1.yaml

android/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

android/build.gradle

Lines changed: 0 additions & 34 deletions
This file was deleted.

android/gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

android/settings.gradle

Lines changed: 0 additions & 1 deletion
This file was deleted.

android/src/main/AndroidManifest.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

android/src/main/java/codingalecr/http_interceptor/HttpInterceptorPlugin.java

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)