Skip to content

Commit

Permalink
Add: New github templates
Browse files Browse the repository at this point in the history
Add: Linux Easycompile
  • Loading branch information
Zephira58 committed Sep 17, 2023
1 parent 293f916 commit 7551208
Show file tree
Hide file tree
Showing 10 changed files with 98 additions and 193 deletions.
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Bug report
description: Create a report to help us improve
labels: [bug]
assignees: Xanthus58
body:
- type: markdown
attributes:
value: >
**Thanks for filing a 🐛 bug report 😄!**
- type: textarea
id: problem
attributes:
label: Problem
description: >
A clear and concise description of what the bug is,
including what currently happens and what you expected to happen.
validations:
required: true

- type: textarea
id: steps
attributes:
label: Steps
description: The steps to reproduce the bug.
placeholder: |
1.
2.
3.
validations:
required: true

- type: textarea
id: solutions
attributes:
label: Possible Solution(s)
description: >
Not obligatory, but suggest a fix/reason for the bug,
or ideas how to implement the addition or change.
- type: textarea
id: notes
attributes:
label: Notes

- type: textarea
id: version
attributes:
label: Rustup version
description: Output of `rustup --version`
render: console
validations:
required: true

- type: textarea
id: toolchains
attributes:
label: Installed toolchains
description: Output of `rustup show`
render: console
validations:
required: true
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Enhancement request
description: Suggest an enhancement for this project
labels: [enhancement]
assignees: Xanthus58
body:
- type: markdown
attributes:
value: >
**Thanks for filing an 🙋 enhancement request 😄!**
- type: textarea
id: problem
attributes:
label: Problem you are trying to solve
description: >
A clear and concise description of the problem this enhancement request is trying to solve.
validations:
required: true

- type: textarea
id: solution
attributes:
label: Solution you'd like
description: >
A clear and concise description of what you want to happen.
validations:
required: true

- type: textarea
id: notes
attributes:
label: Notes
description: >
Any additional context or information you feel may be relevant to the issue.
Binary file removed .github/ISSUE_TEMPLATE/feature-request.md
Binary file not shown.
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Pull Request
about: Create a PR and assist the development team
title: "<Tags:> <Info>"
assignees: Xanthus58

---

* **Please check if the PR fulfills these requirements**
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/artifacts.yaml

This file was deleted.

97 changes: 0 additions & 97 deletions .github/workflows/rust-core.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ Easycompile is a small script for windows, linux, and macos that'll fetch the mo
winget install Git.Git; winget install Rustlang.Rustup; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; cargo build --release; cd .\target\release; mv vault_gui.exe ..\..\; cd ..\..\; rm -r .\target\; .\vault_gui.exe
```

### 🐧Linux (Debian+) (Untested)
### 🐧Linux (Debian+)
```
sudo su; apt install git; curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh; cd ~; git clone https://github.com/Xanthus58/vault_gui; cd vault_gui; cargo build --release; cd ./target/release; mv vault_gui.exe ../../; cd ../../; rm -r ./target/; ./vault_gui.exe
```

### 🍎Macos
Expand Down
5 changes: 0 additions & 5 deletions config.toml

This file was deleted.

0 comments on commit 7551208

Please sign in to comment.