mirror of
https://github.com/13hannes11/focus_annotator.git
synced 2024-09-03 23:21:01 +02:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3190b554fc | ||
|
|
3058891d83 | ||
|
|
88e0ea9368 | ||
|
|
ba2aa11e06 | ||
|
|
803268b1b3 | ||
| 3a09e6f507 | |||
|
|
1b861863d1 | ||
|
|
ca4052eda2 |
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
38
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: Bug report
|
||||||
|
about: Create a report to help us improve
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**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.
|
||||||
|
|
||||||
|
**Desktop (please complete the following information):**
|
||||||
|
- OS: [e.g. iOS]
|
||||||
|
- Browser [e.g. chrome, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Smartphone (please complete the following information):**
|
||||||
|
- Device: [e.g. iPhone6]
|
||||||
|
- OS: [e.g. iOS8.1]
|
||||||
|
- Browser [e.g. stock browser, safari]
|
||||||
|
- Version [e.g. 22]
|
||||||
|
|
||||||
|
**Additional context**
|
||||||
|
Add any other context about the problem here.
|
||||||
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
name: Feature request
|
||||||
|
about: Suggest an idea for this project
|
||||||
|
title: ''
|
||||||
|
labels: ''
|
||||||
|
assignees: ''
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**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.
|
||||||
4
.github/workflows/build_and_publish.yml
vendored
4
.github/workflows/build_and_publish.yml
vendored
@@ -27,8 +27,8 @@ jobs:
|
|||||||
run: docker-compose -f docker-compose.windows.yml up
|
run: docker-compose -f docker-compose.windows.yml up
|
||||||
- name: Make Windows Installer
|
- name: Make Windows Installer
|
||||||
run: ./create_windows_installer.sh
|
run: ./create_windows_installer.sh
|
||||||
- name: Rename Windows Artifact
|
- name: Zip Portable Windows Artifact
|
||||||
run: mv package.zip windows-portable.zip
|
run: zip -r windows-portable.zip package
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2.3.1
|
uses: actions/upload-artifact@v2.3.1
|
||||||
with:
|
with:
|
||||||
|
|||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -1014,6 +1014,6 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xml-rs"
|
name = "xml-rs"
|
||||||
version = "0.8.4"
|
version = "0.8.14"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
|
checksum = "52839dc911083a8ef63efa4d039d1f58b5e409f923e44c80828f206f66e5541c"
|
||||||
|
|||||||
@@ -20,3 +20,8 @@ auto_link_exclude_list = [
|
|||||||
"libdl.so*",
|
"libdl.so*",
|
||||||
"libpthread.so*",
|
"libpthread.so*",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[bin]]
|
||||||
|
name = "focus-annotator"
|
||||||
|
path = "src/main.rs"
|
||||||
|
|
||||||
|
|||||||
@@ -7,4 +7,4 @@ docker cp LICENSE.md setup:/work/
|
|||||||
docker start -i -a setup
|
docker start -i -a setup
|
||||||
docker cp setup:/work/Output/. .
|
docker cp setup:/work/Output/. .
|
||||||
docker rm setup
|
docker rm setup
|
||||||
rm -r package
|
# rm -r package
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
version: "3"
|
version: "3"
|
||||||
services:
|
services:
|
||||||
cross:
|
cross:
|
||||||
image: mglolenstine/gtk4-cross:rust-gtk-4.6
|
image: ghcr.io/mglolenstine/gtk4-cross:rust-gtk-4.8
|
||||||
volumes:
|
volumes:
|
||||||
- .:/mnt:z
|
- .:/mnt:z
|
||||||
command: bash -c "build && package_with_icons"
|
command: bash -c "build && package"
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
|
||||||
AppId={{0AD7C555-49E0-47FC-A6ED-22677FD5AD28}
|
AppId={{0AD7C555-49E0-47FC-A6ED-22677FD5AD28}
|
||||||
AppName=Focus Annotator
|
AppName=Focus Annotator
|
||||||
AppVersion=0.1.0
|
AppVersion=0.1.1
|
||||||
;AppVerName=Focus Annotator 0.1.0
|
;AppVerName=Focus Annotator 0.1.0
|
||||||
AppPublisher=Hannes Fredrik Kuchelmeister
|
AppPublisher=Hannes Fredrik Kuchelmeister
|
||||||
AppPublisherURL=https://github.com/13hannes11/focus_annotator
|
AppPublisherURL=https://github.com/13hannes11/focus_annotator
|
||||||
|
|||||||
Reference in New Issue
Block a user