Skip to content

Commit d022514

Browse files
authored
Merge pull request #29 from MrAlders0n/dev
Updated repo settings, various other templates
2 parents 392e907 + 11dc470 commit d022514

8 files changed

Lines changed: 180 additions & 2 deletions

File tree

.github/CODEOWNERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Default owners for everything
2+
* @MrAlders0nHelp
3+
4+
# Specific files/directories
5+
/docs/ @MrAlders0nHelp
6+
*. js @MrAlders0nHelp
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Bug Report
2+
description: Report a bug or issue
3+
title: "[Bug]: "
4+
labels: ["bug", "triage"]
5+
assignees:
6+
- MrAlders0n
7+
body:
8+
- type: textarea
9+
id: what-happened
10+
attributes:
11+
label: What happened?
12+
description: Describe the bug in a few sentences
13+
placeholder: Tell us what went wrong
14+
validations:
15+
required: true
16+
17+
- type: textarea
18+
id: steps
19+
attributes:
20+
label: How to reproduce
21+
description: Quick steps to reproduce the issue
22+
placeholder: |
23+
1. Go to...
24+
2. Click...
25+
3. See error
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: expected
31+
attributes:
32+
label: What should happen instead?
33+
placeholder: Describe what you expected
34+
validations:
35+
required: true
36+
37+
- type: dropdown
38+
id: severity
39+
attributes:
40+
label: How bad is it?
41+
options:
42+
- "Critical - Can't use it"
43+
- "High - Major problem"
44+
- "Medium - Annoying but workable"
45+
- "Low - Minor issue"
46+
validations:
47+
required: true
48+
49+
- type: textarea
50+
id: extra
51+
attributes:
52+
label: Anything else?
53+
description: Screenshots, device info, browser, etc.
54+
placeholder: Add screenshots or extra details here

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: 💬 Questions & Discussion
4+
url: https://github.com/MrAlders0n/MeshCore-GOME-WarDriver/discussions
5+
about: Ask questions about the MeshCore coverage map
6+
- name: 🔒 Security Issue
7+
url: https://github.com/MrAlders0n/MeshCore-GOME-WarDriver/security/advisories/new
8+
about: Report security vulnerabilities privately
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Documentation Issue
2+
description: Report docs that are wrong, missing, or confusing
3+
title: "[Docs]: "
4+
labels: ["documentation", "triage"]
5+
assignees:
6+
- MrAlders0n
7+
body:
8+
- type: dropdown
9+
id: doc-type
10+
attributes:
11+
label: What's the issue?
12+
options:
13+
- Missing documentation
14+
- Wrong or outdated info
15+
- Confusing or unclear
16+
- Typo or grammar
17+
- Need example code
18+
- Other
19+
validations:
20+
required: true
21+
22+
- type: input
23+
id: location
24+
attributes:
25+
label: Where?
26+
description: File path or URL
27+
placeholder: e.g., README.md or https://...
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: problem
33+
attributes:
34+
label: What's wrong?
35+
placeholder: Describe the issue
36+
validations:
37+
required: true
38+
39+
- type: textarea
40+
id: fix
41+
attributes:
42+
label: What should it say?
43+
placeholder: Your suggested fix or content
44+
validations:
45+
required: true
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Feature Request
2+
description: Suggest a new feature
3+
title: "[Feature]: "
4+
labels: ["enhancement", "triage"]
5+
assignees:
6+
- MrAlders0n
7+
body:
8+
- type: textarea
9+
id: feature
10+
attributes:
11+
label: What feature do you want?
12+
description: Describe the feature you'd like to see
13+
placeholder: I want to be able to...
14+
validations:
15+
required: true
16+
17+
- type: textarea
18+
id: why
19+
attributes:
20+
label: Why do you need it?
21+
description: What problem would this solve?
22+
placeholder: This would help me...
23+
validations:
24+
required: true
25+
26+
- type: dropdown
27+
id: priority
28+
attributes:
29+
label: How important is this?
30+
options:
31+
- "Critical - Really need this"
32+
- "High - Would help a lot"
33+
- "Medium - Nice to have"
34+
- "Low - Just an idea"
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: extra
40+
attributes:
41+
label: Anything else?
42+
description: Add screenshots, mockups, or examples
43+
placeholder: Any additional details

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Description
2+
<!-- Briefly describe what this PR does -->
3+
4+
## Type of Change
5+
- [ ] Bug fix
6+
- [ ] New feature
7+
- [ ] Breaking change
8+
- [ ] Documentation update
9+
10+
## Related Issues
11+
<!-- Link to related issues using: Fixes #123, Closes #456 -->
12+
13+
## Checklist
14+
- [ ] I have tested these changes
15+
- [ ] I have updated the documentation
16+
- [ ] My code follows the project's style guidelines
17+
- [ ] All tests pass
18+
- [ ] I have added tests for new features
19+
20+
## Screenshots (if applicable)
21+
22+
## Additional Notes

content/wardrive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function updateAutoButton() {
184184
}
185185
function buildCoverageEmbedUrl(lat, lon) {
186186
const base =
187-
"https://yow.meshmapper.net/embed.php?cov_grid=1&fail_grid=1&pings=0&repeaters=1&rep_coverage=0&grid_lines=0&meters=1500";
187+
"https://yow.meshmapper.net/embed.php?cov_grid=1&fail_grid=1&pings=0&repeaters=1&rep_coverage=0&grid_lines=0&dir=1&meters=1500";
188188
return `${base}&lat=${encodeURIComponent(lat)}&lon=${encodeURIComponent(lon)}`;
189189
}
190190
let coverageRefreshTimer = null;

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ <h1 class="flex items-center gap-2 text-xl font-semibold"><img class="h-8 w-8" s
149149
style="width: 100%; height: min(80vh, 95vw); border: 0; border-radius: 12px;"
150150
loading="lazy"
151151
referrerpolicy="no-referrer"
152-
src="https://yow.meshmapper.net/embed.php?cov_grid=1&fail_grid=1&pings=0&repeaters=1&rep_coverage=0&grid_lines=0&lat=45.42150&lon=-75.69720&meters=1500">
152+
src="https://yow.meshmapper.net/embed.php?cov_grid=1&fail_grid=1&pings=0&repeaters=1&rep_coverage=0&grid_lines=0&lat=45.42150&lon=-75.69720&meters=10000">
153153
</iframe>
154154
<p class="text-xs text-slate-400 mt-2">
155155
This preview recenters after each ping is sent.

0 commit comments

Comments
 (0)