Compare commits

..

No commits in common. "79105ab4f185ea462f84d1c13523e8086af73ade" and "a5ad3912739cdb6bd4fa2cc476b8ac28ccd78801" have entirely different histories.

5 changed files with 14 additions and 16 deletions

View file

@ -2,7 +2,7 @@
name: Bug report name: Bug report
about: Create a bug report to help improve the app about: Create a bug report to help improve the app
title: '' title: ''
labels: bug, user feedback labels: bug
assignees: vodemn assignees: vodemn
--- ---

View file

@ -2,16 +2,19 @@
name: Feature request or improvement name: Feature request or improvement
about: Suggest an idea for this project about: Suggest an idea for this project
title: '' title: ''
labels: feature, user feedback labels: feature
assignees: vodemn assignees: vodemn
--- ---
**Describe the feature or the problem it solves** **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like** **Describe the solution you'd like**
A clear and concise description of what you want to happen. A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context** **Additional context**
Add any other context or screenshots about the feature request here. Add any other context or screenshots about the feature request here.

View file

@ -1,2 +1,2 @@
# https://unix.stackexchange.com/questions/435708/regex-multiline-pattern-and-substitution-replacement # https://unix.stackexchange.com/questions/435708/regex-multiline-pattern-and-substitution-replacement
perl -0777 -i -pe 's/( m3_lightmeter_iap:\n)( git:\n url: "https:\/\/github.com\/vodemn\/m3_lightmeter_iap"\n ref: v\d{1,2}.\d{1,2}.\d{1,2})/$1 path: iap/sg' pubspec.yaml perl -0777 -i -pe 's/( m3_lightmeter_iap:\n)( git:\n url: "https:\/\/github.com\/vodemn\/m3_lightmeter_iap"\n ref: main)/$1 path: iap/sg' pubspec.yaml

View file

@ -17,23 +17,18 @@ jobs:
runs-on: macos-11 runs-on: macos-11
timeout-minutes: 5 timeout-minutes: 5
steps: steps:
- uses: 8BitJonny/gh-get-current-pr@2.2.0
id: PR
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
submodules: recursive submodules: recursive
- name: Connect private iap package - name: Connect private iap package
uses: webfactory/ssh-agent@v0.8.0 uses: webfactory/ssh-agent@v0.8.0
id: fetch-iap if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
if: steps.PR.outputs.number == 'null' || github.event.pull_request.head.repo.full_name == github.repository
with: with:
ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }} ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }}
- name: Override iap package with stub - name: Override iap package with stub
id: override-iap if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
if: steps.fetch-iap.conclusion != 'success'
run: bash ./.github/scripts/stub_iap.sh run: bash ./.github/scripts/stub_iap.sh
- uses: subosito/flutter-action@v2 - uses: subosito/flutter-action@v2
@ -54,7 +49,7 @@ jobs:
run: flutter test run: flutter test
- name: Analyze project source with stub - name: Analyze project source with stub
if: steps.override-iap.conclusion != 'success' if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
run: | run: |
bash ./.github/scripts/stub_iap.sh bash ./.github/scripts/stub_iap.sh
flutter pub get flutter pub get

View file

@ -1,7 +1,7 @@
name: lightmeter name: lightmeter
description: Lightmeter app inspired by Material 3 design system. description: Lightmeter app inspired by Material 3 design system.
publish_to: "none" publish_to: "none"
version: 0.15.1+42 version: 0.15.0+41
environment: environment:
sdk: ">=3.0.0 <4.0.0" sdk: ">=3.0.0 <4.0.0"
@ -26,7 +26,7 @@ dependencies:
m3_lightmeter_iap: m3_lightmeter_iap:
git: git:
url: "https://github.com/vodemn/m3_lightmeter_iap" url: "https://github.com/vodemn/m3_lightmeter_iap"
ref: v0.4.0 ref: main
m3_lightmeter_resources: m3_lightmeter_resources:
git: git:
url: "https://github.com/vodemn/m3_lightmeter_resources" url: "https://github.com/vodemn/m3_lightmeter_resources"