Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypp committed Jul 16, 2024
0 parents commit fc369ca
Show file tree
Hide file tree
Showing 34 changed files with 4,099 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.c diff
*.cpp diff
*.h diff
*.rc diff
*.ini diff
*.txt diff
*.xml diff
*.lng diff
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: ["https://www.paypal.me/henrypp", "https://yoomoney.ru/to/4100115776040583", "https://www.blockchain.com/btc/address/1LrRTXPsvHcQWCNZotA9RcwjsGcRghG96c", "https://www.blockchain.com/eth/address/0xe2C84A62eb2a4EF154b19bec0c1c106734B95960"]
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Bug report
title: "[Bug]"
description: Let me know about crash or existing functionality not working like it should.
labels: [ "bug" ]
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this bug report!
- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: I have used the search function to see if someone else has already submitted the same bug report.
required: true
- label: I will describe the problem with as much detail as possible.
required: true
- type: input
id: version
attributes:
label: App version
description: What the application version do you use.
placeholder: x.y.z
validations:
required: true
- type: input
id: windows_version
attributes:
label: Windows version
description: What Windows version do you use.
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce
placeholder: |
1. Go to '…'
2. Click on '…'
3. Scroll down to '…'
4. etc.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected behavior
description: After following the steps, what did you think application would do?
validations:
required: false
- type: textarea
id: actual
attributes:
label: Actual behavior
description: What did application do instead? Screenshots might help.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Logs
description: |
- If application have debug log insert it here.
- If application have crash dump please attach it here.
Tip: You can attach images, log files or crash dumps by clicking this area to highlight it and then dragging files in.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Feature request
title: "[Feature]"
description: Suggest an idea for this project.
labels: [ "feature" ]
body:
- type: checkboxes
id: checklist
attributes:
label: Checklist
options:
- label: I have used the search function to see if someone else has already submitted the same feature request.
required: true
- label: I will describe the problem with as much detail as possible.
required: true
- label: This issue only contains a request for one single feature, **not** multiple (related) features.
required: true
- type: input
id: version
attributes:
label: App version
description: What the application version do you use.
placeholder: x.y.z
validations:
required: true
- type: textarea
id: problem
attributes:
label: Problem you are trying to solve
description: Give a brief explanation of the problem you are trying to solve.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Suggested solution
description: Describe how you would like the app to help you solve that problem. Try to be as specific as possible.
validations:
required: true
- type: textarea
id: screenshots
attributes:
label: Screenshots / Drawings / Technical details
description: |
If your request is about (or includes) changing or extending the user interface (UI), describe what the UI would look like and how the user would interact with it.
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
name: Question
about: Ask a question about application.
title: '[Question]'
labels: [ "question" ]
assignees: ''

---

Describe the question with as much detail as possible.

---

App version: <enter app version here>
Windows version: <enter windows version here>
41 changes: 41 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
.vs/
.vscode/
temp/
packages/
bin/32/
bin/64/
bin/arm64/
x64/
win32/
arm64/
__pycache__

thumbs.db
ehthumbs.db
desktop.ini

*.cab
*.msi
*.msm
*.msp
*.lnk
*.jpg
*.zip
*.log
*.pdb
*.exp
*.sdf
*.opensdf
*.db
*.opendb
*.suo
*.exp
*.iobj
*.ipch
*.ipdb
*.ilk
*.obj
*.res
*.tlog

*PVS-Studio*
7 changes: 7 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[submodule "routine"]
path = ../routine
url = https://github.com/henrypp/routine.git

[submodule "builder"]
path = ../builder
url = https://github.com/henrypp/builder.git
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v1.0 (17 July 2024)
- first public version
Loading

0 comments on commit fc369ca

Please sign in to comment.