-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(version): upgrade main to v1.8.1 (#70)
* feat(ui): rework the main page to add fade/size animation (#67) * fix(time-slots): overlapping conditions * chore(version): increment version to `v1.8.0` * chore(tests): add some tests * chore(tests): add some tests * chore(deps): update ruby/setup-ruby to v1.149.0 * fix(playstore): make (again) the full description compliant with the google play store policies * chore(custom-properties): use custom properties for animation duration instead of random values * fix(time-slots): if the open and closing dates were not during the same day, the time slot check was not working properly * chore(ui): speed up the status widget animations * chore(ui): speed up the settings floating widget animation * chore(ci): fix code metrics * feat(tablet-ui): make the app fully compatible with tablets & landscape mode (#69) * feat(tablet-ui): add a layout when the app is running on a tablet * chore(readme): add codecov badge * fix(ci): fix unused code error * chore(naming): rename `ForecastListItemWidget` to `ForecastWidget` * fix(ui): set isMobile detection to a greater threshold * chore(playstore): upgrade screenshots * chore(version): increment version to `v1.8.1` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
- Loading branch information
1 parent
3641771
commit f80e8ef
Showing
125 changed files
with
2,851 additions
and
1,359 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json | ||
|
||
# Android Studio will place build artifacts here | ||
/android/app/debug | ||
/android/app/profile | ||
/android/app/release | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
migrate_working_dir/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json | ||
|
||
# Android Studio will place build artifacts here | ||
/android/app/debug | ||
/android/app/profile | ||
/android/app/release | ||
|
||
# Code coverage | ||
**/lcov.info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
buildscript { | ||
ext.kotlin_version = '1.8.21' | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
classpath 'com.android.tools.build:gradle:7.4.2' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
|
||
rootProject.buildDir = '../build' | ||
subprojects { | ||
project.buildDir = "${rootProject.buildDir}/${project.name}" | ||
} | ||
subprojects { | ||
project.evaluationDependsOn(':app') | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
buildscript { | ||
ext.kotlin_version = '1.8.21' | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
classpath 'com.android.tools.build:gradle:7.4.2' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
|
||
rootProject.buildDir = '../build' | ||
subprojects { | ||
project.buildDir = "${rootProject.buildDir}/${project.name}" | ||
} | ||
subprojects { | ||
project.evaluationDependsOn(':app') | ||
} | ||
|
||
tasks.register("clean", Delete) { | ||
delete rootProject.buildDir | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+63.6 KB
(130%)
android/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+398 KB
(280%)
android/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-525 KB
(35%)
android/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.34 KB
(99%)
android/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-104 KB
(53%)
android/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/1_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+50.6 KB
(120%)
android/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/2_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-689 KB
(15%)
android/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/3_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-99.3 KB
(51%)
android/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/4_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+109 KB
(150%)
android/fastlane/metadata/android/en-GB/images/tenInchScreenshots/1_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+728 KB
(440%)
android/fastlane/metadata/android/en-GB/images/tenInchScreenshots/2_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-481 KB
(40%)
android/fastlane/metadata/android/en-GB/images/tenInchScreenshots/3_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-27.4 KB
(86%)
android/fastlane/metadata/android/en-GB/images/tenInchScreenshots/4_en-GB.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Chabo, the mobile app that gives you the timetables of the Chaban bridge | ||
Chabo, the application that allows you to know the events of the Chaban bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+63.6 KB
(130%)
android/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+398 KB
(280%)
android/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-525 KB
(35%)
android/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.34 KB
(99%)
android/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-104 KB
(53%)
android/fastlane/metadata/android/en-US/images/sevenInchScreenshots/1_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+50.6 KB
(120%)
android/fastlane/metadata/android/en-US/images/sevenInchScreenshots/2_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-689 KB
(15%)
android/fastlane/metadata/android/en-US/images/sevenInchScreenshots/3_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-99.3 KB
(51%)
android/fastlane/metadata/android/en-US/images/sevenInchScreenshots/4_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+109 KB
(150%)
android/fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+728 KB
(440%)
android/fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-481 KB
(40%)
android/fastlane/metadata/android/en-US/images/tenInchScreenshots/3_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-27.4 KB
(86%)
android/fastlane/metadata/android/en-US/images/tenInchScreenshots/4_en-US.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Chabo, the mobile app that gives you the timetables of the Chaban bridge | ||
Chabo, the application that allows you to know the events of the Chaban bridge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+64.7 KB
(130%)
android/fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-270 KB
(69%)
android/fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
+60.4 KB
(130%)
android/fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-7.42 KB
(96%)
android/fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-96.8 KB
(54%)
android/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/1_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-607 KB
(29%)
android/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/2_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-96.2 KB
(54%)
android/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/3_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-88.7 KB
(54%)
android/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/4_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
+110 KB
(150%)
android/fastlane/metadata/android/es-ES/images/tenInchScreenshots/1_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
+32.1 KB
(100%)
android/fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
+107 KB
(150%)
android/fastlane/metadata/android/es-ES/images/tenInchScreenshots/3_es-ES.png
Oops, something went wrong.
Binary file modified
BIN
-20.2 KB
(89%)
android/fastlane/metadata/android/es-ES/images/tenInchScreenshots/4_es-ES.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Chabo, la aplicación que permite conocer los horarios del puente Chaban | ||
Chabo, la aplicación que te permite conocer los eventos del puente Chaban |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+64.8 KB
(130%)
android/fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
+394 KB
(290%)
android/fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-536 KB
(33%)
android/fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
+2.82 KB
(100%)
android/fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-93.6 KB
(54%)
android/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/1_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
+49.8 KB
(120%)
android/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/2_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-689 KB
(14%)
android/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/3_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-97 KB
(52%)
android/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/4_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
+110 KB
(150%)
android/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/1_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
+672 KB
(420%)
android/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-490 KB
(39%)
android/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/3_fr-FR.png
Oops, something went wrong.
Binary file modified
BIN
-33.6 KB
(83%)
android/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/4_fr-FR.png
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Chabo, l'application qui vous permet de connaître les horaires du pont Chaban | ||
Chabo, l'application qui vous permet de connaître les évènements du pont Chaban |
Oops, something went wrong.