From 41be81e5321484c2e6226ec2b7a60e89f90d0019 Mon Sep 17 00:00:00 2001 From: MohammadTaha Basiri Date: Sat, 30 Apr 2022 21:53:26 +0430 Subject: [PATCH] version 2.1.0 build 17 --- .fandogh/fandogh.yaml | 2 +- Dockerfile | 2 +- lib/services/network/request_helper.dart | 2 +- lib/views/home/settings/settings.dart | 2 +- pubspec.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.fandogh/fandogh.yaml b/.fandogh/fandogh.yaml index 1adea9d..7d0fe06 100644 --- a/.fandogh/fandogh.yaml +++ b/.fandogh/fandogh.yaml @@ -3,7 +3,7 @@ name: app-test spec: allow_http: false disable_default_domains: true - image: app:2.0.10.16 + image: app:2.1.0.17 image_pull_policy: IfNotPresent path: / replicas: 1 diff --git a/Dockerfile b/Dockerfile index f75af4b..6d09261 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM nginx:latest -COPY ./build/web /usr/share/nginx/html/ +COPY . /usr/share/nginx/html/ ENTRYPOINT ["nginx", "-g", "daemon off;"] diff --git a/lib/services/network/request_helper.dart b/lib/services/network/request_helper.dart index 56ec7da..0170ce6 100644 --- a/lib/services/network/request_helper.dart +++ b/lib/services/network/request_helper.dart @@ -3,7 +3,7 @@ import 'package:didvan/models/requests/radar.dart'; import 'package:didvan/models/requests/studio.dart'; class RequestHelper { - static const String baseUrl = 'https://test.api.didvan.app'; + static const String baseUrl = 'https://api.didvan.app'; static const String _baseUserUrl = baseUrl + '/user'; static const String _baseRadarUrl = baseUrl + '/radar'; static const String _baseNewsUrl = baseUrl + '/news'; diff --git a/lib/views/home/settings/settings.dart b/lib/views/home/settings/settings.dart index b205e5a..f01c82a 100644 --- a/lib/views/home/settings/settings.dart +++ b/lib/views/home/settings/settings.dart @@ -112,7 +112,7 @@ class Settings extends StatelessWidget { ), const SizedBox(height: 16), DidvanText( - 'نسخه نرم‌افزار: 2.0.0', + 'نسخه نرم‌افزار: 2.1.0', style: Theme.of(context).textTheme.caption, ), ], diff --git a/pubspec.yaml b/pubspec.yaml index 7c557cc..31decff 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 2.0.10+16 +version: 2.1.0+17 environment: sdk: ">=2.12.0 <3.0.0"