From 4c229a5db0a8947133250a61202d6d864d3fb12a Mon Sep 17 00:00:00 2001 From: RedyAu Date: Tue, 31 Aug 2021 01:06:55 +0000 Subject: [PATCH] i18n --- .vscode/launch.json | 60 +++++++++++++++++++++++++++++++++++++++++++++ fix-pub.sh | 8 ++++++ 2 files changed, 68 insertions(+) create mode 100644 .vscode/launch.json create mode 100755 fix-pub.sh diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..59225ee --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,60 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "filcnaplo", + "cwd": "filcnaplo", + "request": "launch", + "type": "dart" + }, + { + "name": "filcnaplo (profile mode)", + "cwd": "filcnaplo", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + }, + { + "name": "filcnaplo_desktop_ui", + "cwd": "filcnaplo_desktop_ui", + "request": "launch", + "type": "dart" + }, + { + "name": "filcnaplo_desktop_ui (profile mode)", + "cwd": "filcnaplo_desktop_ui", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + }, + { + "name": "filcnaplo_kreta_api", + "cwd": "filcnaplo_kreta_api", + "request": "launch", + "type": "dart" + }, + { + "name": "filcnaplo_kreta_api (profile mode)", + "cwd": "filcnaplo_kreta_api", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + }, + { + "name": "filcnaplo_mobile_ui", + "cwd": "filcnaplo_mobile_ui", + "request": "launch", + "type": "dart" + }, + { + "name": "filcnaplo_mobile_ui (profile mode)", + "cwd": "filcnaplo_mobile_ui", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + } + ] +} \ No newline at end of file diff --git a/fix-pub.sh b/fix-pub.sh new file mode 100755 index 0000000..e8bd4b3 --- /dev/null +++ b/fix-pub.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +cd filcnaplo && pwd && flutter clean && flutter pub get && cd .. +cd filcnaplo_kreta_api && pwd && flutter clean && flutter pub get && cd .. +cd filcnaplo_mobile_ui && pwd && flutter clean && flutter pub get && cd .. +cd filcnaplo_desktop_ui && pwd && flutter clean && flutter pub get && cd .. + +echo Fixed pub. \ No newline at end of file