Skip to content

Commit 807e941

Browse files
authored
Merge pull request #7 from PicGo/dev
Merge Dev
2 parents 93d3c3a + 9fbdb0c commit 807e941

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/version.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"iOS": {
3-
"versionName": "1.5.1",
4-
"versionCode": "11"
3+
"versionName": "1.5.2",
4+
"versionCode": "12"
55
},
66
"Android": {
77
"versionName": "1.5.1",
8-
"versionCode": "11"
8+
"versionCode": "12"
99
}
1010
}

lib/utils/net.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ class NetUtils {
1111
_dio = new Dio(BaseOptions(
1212
connectTimeout: 30000, receiveTimeout: 30000, sendTimeout: 30000));
1313
if (!inProduction) {
14-
/// Tcyun
15-
dio.interceptors.add(TcyunInterceptor());
16-
1714
/// Log
1815
dio.interceptors
1916
.add(LogInterceptor(requestBody: true, responseBody: true));
2017
}
18+
19+
/// Tcyun Interceptor
20+
dio.interceptors.add(TcyunInterceptor());
2121
}
2222

2323
Dio get dio => _dio;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 1.5.1+11
18+
version: 1.5.2+12
1919

2020
environment:
2121
sdk: ">=2.7.0 <3.0.0"

0 commit comments

Comments
 (0)