mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 16:30:40 +00:00
Compare commits
3 commits
b53603b3f5
...
47f7b61230
Author | SHA1 | Date | |
---|---|---|---|
|
47f7b61230 | ||
|
37fe6a4a5d | ||
|
a25ccc0fad |
3 changed files with 52 additions and 2 deletions
30
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
30
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a bug report to help improve the app
|
||||||
|
title: ''
|
||||||
|
labels: bug
|
||||||
|
assignees: vodemn
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Describe the bug**
|
||||||
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
**To Reproduce**
|
||||||
|
Steps to reproduce the behavior:
|
||||||
|
1. Go to '...'
|
||||||
|
2. Click on '....'
|
||||||
|
3. Scroll down to '....'
|
||||||
|
4. See error
|
||||||
|
|
||||||
|
**Expected behavior**
|
||||||
|
A clear and concise description of what you expected to happen.
|
||||||
|
|
||||||
|
**Screenshots**
|
||||||
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
|
**Device:**
|
||||||
|
- Device: [e.g. Pixel 6]
|
||||||
|
- OS: [e.g. Android 12]
|
||||||
|
|
||||||
|
**App version**
|
20
.github/ISSUE_TEMPLATE/feature-request-or-improvement.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature-request-or-improvement.md
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
---
|
||||||
|
name: Feature request or improvement
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: feature
|
||||||
|
assignees: vodemn
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**Is your feature request related to a problem? Please describe.**
|
||||||
|
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||||
|
|
||||||
|
**Describe the solution you'd like**
|
||||||
|
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**
|
||||||
|
Add any other context or screenshots about the feature request here.
|
|
@ -19,14 +19,14 @@ class Environment {
|
||||||
const Environment.dev()
|
const Environment.dev()
|
||||||
: buildType = BuildType.dev,
|
: buildType = BuildType.dev,
|
||||||
sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter',
|
sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter',
|
||||||
issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues',
|
issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues/new/choose',
|
||||||
contactEmail = 'contact.vodemn@gmail.com',
|
contactEmail = 'contact.vodemn@gmail.com',
|
||||||
hasLightSensor = false;
|
hasLightSensor = false;
|
||||||
|
|
||||||
const Environment.prod()
|
const Environment.prod()
|
||||||
: buildType = BuildType.prod,
|
: buildType = BuildType.prod,
|
||||||
sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter',
|
sourceCodeUrl = 'https://github.com/vodemn/m3_lightmeter',
|
||||||
issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues',
|
issuesReportUrl = 'https://github.com/vodemn/m3_lightmeter/issues/new/choose',
|
||||||
contactEmail = 'contact.vodemn@gmail.com',
|
contactEmail = 'contact.vodemn@gmail.com',
|
||||||
hasLightSensor = false;
|
hasLightSensor = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue