-
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.
- Loading branch information
1 parent
c7caa42
commit f9cbc0a
Showing
50 changed files
with
836 additions
and
905 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"flutter": "3.10.6" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Bug report | ||
about: Something is crashing or not working as intended | ||
labels: bug | ||
|
||
--- | ||
|
||
## Environment | ||
|
||
**Platform:** <!-- iOS, Android, Web, etc --> | ||
**Device information:** <!-- Manufacturer and model --> | ||
|
||
## Description | ||
|
||
**Expected behavior:** | ||
|
||
**Current behavior:** | ||
|
||
## Steps to reproduce | ||
|
||
1. This | ||
2. Than that | ||
3. Then | ||
|
||
## Images <!-- if available, else delete --> | ||
|
||
## Stacktrace/Logcat <!-- if available, else delete --> |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
labels: enhancement | ||
|
||
--- | ||
|
||
## Environment | ||
|
||
**Platform:** <!-- iOS, Android, etc --> | ||
**Device information:** <!-- Manufacturer and model --> | ||
|
||
## Description | ||
|
||
**What you'd like to happen:** | ||
|
||
**Alternatives you've considered:** <!-- if available, else delete --> | ||
|
||
**Images:** <!-- if available, else delete --> |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Connection with issue(s) | ||
|
||
Resolve issue #??? | ||
|
||
<!-- Required: this reference (one or many) will be closed upon merge. Ideally it has the acceptance criteria and designs for features or fixes related to the work in this Pull Request --> | ||
|
||
Connected to #??? | ||
|
||
<!-- Optional: other issues or pull requests related to this, but merging should not close it --> | ||
|
||
## Testing and Review Notes | ||
|
||
<!-- Required: steps to take to confirm this works as expected or other guidance for code, UX, and any other reviewers --> | ||
|
||
## Screenshots or Videos | ||
|
||
<!-- Optional: to clearly demonstrate the feature or fix to help with testing and reviews --> | ||
|
||
## To Do | ||
|
||
<!-- Add “WIP” to the PR title if pushing up but not complete nor ready for review --> | ||
- [ ] double check the original issue to confirm it is fully satisfied | ||
- [ ] add testing notes and screenshots in PR description to help guide reviewers | ||
- [ ] request the "UX" team perform a design review (if/when applicable) |
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 |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
tags: | ||
- '[0-9]+.[0-9]+.[0-9]+*' | ||
|
||
pull_request: | ||
branches: [main] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build and test | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Configure enviroment | ||
uses: actions/checkout@v3 | ||
- name: Check broken links | ||
uses: JustinBeckwith/linkinator-action@v1 | ||
with: | ||
paths: "**/*.md" | ||
- uses: kuhnroyal/flutter-fvm-config-action@v2 | ||
id: fvm-config-action | ||
with: | ||
path: '.fvmrc' | ||
- name: Download flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} | ||
cache: true | ||
cache-key: 'flutter-:os:-:version:' | ||
cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:' | ||
- name: Install dependencies | ||
run: flutter pub get | ||
- name: Format code | ||
run: dart format --set-exit-if-changed . | ||
- name: Analyze static code | ||
run: flutter analyze | ||
- name: Check publish warnings | ||
run: dart pub publish --dry-run | ||
|
||
# Disabled until unblock release process | ||
# deployment: | ||
# if: ${{ github.ref_type == 'tag' }} | ||
# needs: build | ||
# name: Deploy package | ||
# permissions: | ||
# id-token: write | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: dart-lang/setup-dart@v1 | ||
# - uses: kuhnroyal/flutter-fvm-config-action@v1 | ||
# - name: Download flutter | ||
# uses: subosito/flutter-action@v2 | ||
# with: | ||
# flutter-version: ${{ env.FLUTTER_VERSION }} | ||
# cache: true | ||
# cache-key: 'flutter-:os:-:version:' | ||
# cache-path: '${{ runner.tool_cache }}/flutter/:os:-:version:' | ||
# - name: Publish package | ||
# run: dart pub publish -v -f |
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,48 +1,64 @@ | ||
## [1.0.0] - 23/07/2021 | ||
## 5.1.0 | ||
|
||
* First version of common module flutter (not null safety) | ||
|
||
## [2.0.0] - 21/08/2021 | ||
|
||
* Migrated to null safety | ||
* Fix english language in sample app | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 2.1.8. Only for Android. | ||
* Improve linting. | ||
* Refactor package to pub dev standards. | ||
* Refactor documentation. | ||
* Add GitHub templates. | ||
|
||
## [2.0.1] - 31/08/2021 | ||
## 5.0.4 | ||
|
||
* Fix Version Control Popup Context | ||
|
||
## [3.0.0] - 02/02/2022 | ||
|
||
* Using [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) ( | ||
developed using Kotlin Multiplatform Mobile, KMM) to implement the functionality of this library. | ||
This library is now a wrapper of the one developed in KMM. | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 2.1.7. | ||
|
||
## [3.0.1] - 21/02/2022 | ||
## 5.0.0 | ||
|
||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 1.0.10. This version fixes a bug of the rating popup in iOS. | ||
version 2.0.16. Updated to version 5.0.0 of modul_comu_osam_flutter, it has flutter 3.X support. | ||
|
||
## [3.0.2] - 22/02/2022 | ||
## 4.0.2 | ||
|
||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 1.0.11. This version fixes a bug when using Proguard in Android. | ||
version 2.0.2. This version has the following changes: | ||
* Version: Fix bug related to URL handling | ||
|
||
## 4.0.1 | ||
|
||
## [4.0.0] - 11/04/2022 | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 2.0.1. This version has the following changes: | ||
- Version: Integrated capability for enable/disable version control based in a time range | ||
- Rating: Integrated Google In App Review for Android | ||
* Rating: Exclude deprecated rating control responses | ||
|
||
## 4.0.0 | ||
|
||
## [4.0.1] - 26/04/2022 | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 2.0.1. This version has the following changes: | ||
- Rating: Exclude deprecated rating control responses | ||
* Version: Integrated capability for enable/disable version control based in a time range | ||
* Rating: Integrated Google In App Review for Android | ||
|
||
## 3.0.2 | ||
|
||
## [4.0.2] - 13/10/2022 | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 2.0.2. This version has the following changes: | ||
- Version: Fix bug related to URL handling | ||
version 1.0.11. This version fixes a bug when using Proguard in Android. | ||
|
||
## 3.0.1 | ||
|
||
## [5.0.0] - 04/04/2023 | ||
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to | ||
version 2.0.16. Updated to version 5.0.0 of modul_comu_osam_flutter, it has flutter 3.X support. | ||
version 1.0.10. This version fixes a bug of the rating popup in iOS. | ||
|
||
## 3.0.0 | ||
|
||
* Using [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) ( | ||
developed using Kotlin Multiplatform Mobile, KMM) to implement the functionality of this library. | ||
This library is now a wrapper of the one developed in KMM. | ||
|
||
## 2.0.1 | ||
|
||
* Fix Version Control Popup Context | ||
|
||
## 2.0.0 | ||
|
||
* Migrated to null safety | ||
* Fix english language in sample app | ||
|
||
## 1.0.0 | ||
|
||
* First version of common module flutter (not null safety) |
Oops, something went wrong.