Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: flutter version 3.13 & dart 3.1 #309

Open
wants to merge 46 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
547005d
Translated using Weblate (Italian)
Jun 7, 2023
8c1fc09
chore: Translated using Weblate (Portuguese (Brazil))
RickyM7 Jun 7, 2023
7ff9698
chore: Translated using Weblate (German)
qwerty287 Jun 7, 2023
88ea346
chore: Translated using Weblate (Dutch)
Vistaus Jun 7, 2023
824f526
chore: Translated using Weblate (Spanish)
1hiking Jun 7, 2023
c825799
chore: Translated using Weblate (Indonesian)
rezaalmanda Jun 7, 2023
25a0f4d
chore: Translated using Weblate (Czech)
Jun 7, 2023
ea98b81
chore: Translated using Weblate (Romanian)
ecxod Jun 7, 2023
219e5d6
chore: Translated using Weblate (Turkish)
akyunus Jun 7, 2023
1228233
chore: Translated using Weblate (Chinese (Simplified))
Jun 7, 2023
8798cdb
chore: Translated using Weblate (Romanian)
simonaiacob Jun 7, 2023
a544909
chore: Translated using Weblate (Chinese (Simplified))
Jun 7, 2023
acfe8fe
chore: Translated using Weblate (Portuguese)
SantosSi Jun 7, 2023
e3d3879
chore: Translated using Weblate (French)
Lisapple Jun 7, 2023
7f6cc31
chore: Translated using Weblate (Indonesian)
nattadasu Jun 7, 2023
9cab73f
chore: Translated using Weblate (Chinese (Simplified))
calcitem Jun 7, 2023
83e8cce
chore: Translated using Weblate (Indonesian)
Jun 7, 2023
ce3539e
chore: Translated using Weblate (Chinese (Simplified))
yangyangdaji Jun 7, 2023
7b439e0
chore: Translated using Weblate (Spanish)
fitojb Jun 7, 2023
a4307aa
chore: Translated using Weblate (Japanese)
morotesovtannu Jun 7, 2023
3c86d00
chore: Translated using Weblate (Turkish)
HinameChan Jun 7, 2023
7d13856
chore: Added translation using Weblate (Tamil)
Srkrishna Jun 7, 2023
bd5d96b
chore: Translated using Weblate (Spanish)
gallegonovato Jun 7, 2023
185f174
chore: Translated using Weblate (Galician)
antonlnz Jun 7, 2023
c0e4c0e
chore: Translated using Weblate (Ukrainian)
Jun 7, 2023
1ec2af6
chore: Translated using Weblate (Indonesian)
kuredensha Jun 7, 2023
4023f95
chore: Added translation using Weblate (Korean)
kchsoft Jun 7, 2023
a1d602b
chore: Translated using Weblate (Ukrainian)
Kefir2105 Jun 7, 2023
161c534
Create dart.yml
wiktorek140 Aug 26, 2023
e04031a
Update lint.yml
wiktorek140 Aug 26, 2023
db4f9cd
Update dart.yml
wiktorek140 Aug 26, 2023
3475cee
Update dart.yml
wiktorek140 Aug 26, 2023
603bdc2
Fix count type
wiktorek140 Aug 26, 2023
58ec7a7
Update pubspec.yaml
wiktorek140 Aug 26, 2023
5989f21
Update pubspec.yaml
wiktorek140 Aug 26, 2023
f7b0fba
Update pubspec.yaml
wiktorek140 Aug 26, 2023
cdaa514
update
wiktorek140 Aug 26, 2023
aed6712
store artifacts
wiktorek140 Aug 28, 2023
60f040a
Update artifacts
wiktorek140 Aug 30, 2023
104c7c5
update deps
wiktorek140 Sep 8, 2023
80f96f7
support one level link entry
wiktorek140 Sep 8, 2023
abe1761
Merge commit 'a1d602bee33d4fe8ef7e8581b6ca91e08fbd9a38'
isaron Sep 14, 2023
c50092d
Merge commit '80f96f7bbd6f0c5a20080825dd19d2aeed56f8ff'
isaron Sep 14, 2023
3de7240
fix: correct i10n .arb files & dart fix
isaron Sep 14, 2023
8d5ad67
fix: dart fix --apply
isaron Sep 14, 2023
f44d57d
upgrade dart v3.1.0
isaron Sep 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Flutter

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
- uses: dart-lang/setup-dart@v1
- uses: subosito/flutter-action@v1

- name: No analysistics
run: flutter config --no-analytics

- name: Build apk
run: flutter build apk --no-tree-shake-icons

- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: git-touch.apk
path: |
build/app/outputs/flutter-apk/app-release.apk
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: lint
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v1
with:
channel: stable
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ migrate_working_dir/
/build/

# Web related
lib/generated_plugin_registrant.dart

# Symbolication related
app.*.symbols
Expand Down
186 changes: 116 additions & 70 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"

android {
compileSdkVersion 32 // flutter.compileSdkVersion
compileSdkVersion 33 // flutter.compileSdkVersion
ndkVersion flutter.ndkVersion

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_version = '1.8.0'
repositories {
google()
mavenCentral()
Expand All @@ -26,6 +26,6 @@ subprojects {
project.evaluationDependsOn(':app')
}

task clean(type: Delete) {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
2 changes: 1 addition & 1 deletion l10n.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
arb-dir: lib/l10n
template-arb-file: intl_en.arb
output-localization-file: S.dart
output-localization-file: S.dart
110 changes: 110 additions & 0 deletions lib/l10n/intl_cs.arb
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
{
"reviewPermissions": "Zkontrolovat povolení",
"@reviewPermissions": {
"description": "review Permissions"
},
"trending": "Trendy",
"@trending": {
"description": "Trending"
},
"repository": "Repozitář",
"@repository": {
"description": "Repository screen title"
},
"sourceCode": "Zdrojový kód",
"@sourceCode": {
"description": "source code for app"
},
"version": "Verze",
"@version": {
"description": "app version"
},
"about": "O aplikaci",
"@about": {
"description": "about section"
},
"email": "E-mail",
"@email": {
"description": "Email to report issues"
},
"feedback": "zpětná vazba",
"@feedback": {
"description": "provide feedback"
},
"webview": "WebView",
"@webview": {
"description": "render webview for markdown"
},
"flutter": "Flutter",
"@flutter": {
"description": "render flutter for markdown"
},
"cupertino": "Cupertino",
"@cupertino": {
"description": "Cupertino scaffold theme"
},
"dark": "Tmavý",
"@dark": {
"description": "dark mode"
},
"light": "Světlý",
"@light": {
"description": "light mode"
},
"brightness": "Jas",
"@brightness": {
"description": "brightness"
},
"switchAccounts": "Přepnout účet",
"@switchAccounts": {
"description": "Switch accounts"
},
"system": "Systém",
"@system": {
"description": "system"
},
"settings": "Nastavení",
"@settings": {
"description": "settings"
},
"members": "Členi",
"@members": {
"description": "members of an organization"
},
"organizations": "Organizace",
"@organizations": {
"description": "organizations for a user"
},
"following": "Sleduji",
"@following": {
"description": "people followed by a person"
},
"followers": "Sledující",
"@followers": {
"description": "followers for a person"
},
"follow": "Sledovat",
"@follow": {
"description": "follow someone"
},
"unfollow": "Přestat sledovat",
"@unfollow": {
"description": "unfollow someone"
},
"repositories": "Repozitáře",
"@repositories": {
"description": "repository text"
},
"search": "Hledat",
"@search": {
"description": "The Search tab"
},
"notification": "Oznámení",
"@notification": {
"description": "The Notification tab"
},
"news": "Zprávy",
"@news": {
"description": "The News tab"
}
}
Loading