Skip to content

Commit

Permalink
Ready for 1.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Madman10K committed Aug 30, 2023
1 parent 2dd8970 commit 63d3f7c
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Contributing guidelines
These are the guidelines
- Follow the ToS
- Follow the CoC
- Contribute useful information, i.e. fixing a bug, adding a feature, etc, not removing whitespaces, etc
- Check if your code works and test for any vulnerabilities before contributing
1 change: 1 addition & 0 deletions .github/FUNDING.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ko_fi: madladsquad
32 changes: 32 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
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 behaviour:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See an error

**Expected behaviour**
A clear and concise description of what you expected to happen.

**Screenshots**
Share screenshots if any

**Technical information**
- OS: (eg. Windows)
- Release: (eg. 0.5.1)
- Any other applicable technical information

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -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

**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.
6 changes: 6 additions & 0 deletions .github/auto-issue-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Daily automatic dependency update issue!
assignees: Madman10K
labels: enhancement
---
Automatic issue for updating the submodules to latest!
36 changes: 36 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
on:
push:
tags:
- 'v*'
name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
lfs: true
submodules: true
- name: Checkout submodules
shell: bash
run: |
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Create archive
shell: bash
run: |
rm -rf .git/
tar cfJ untitled-imgui-theme.tar.xz . || echo "Might have failed"
- name: Create Release
uses: softprops/action-gh-release@master
with:
body: |
Check our discord for patch notes: https://discord.gg/4kyWu2Vu
More on what is done this month can be found on the latest newsletter entry: https://madladsquad.com/#monthly-newsletter
draft: false
prerelease: false
files: untitled-imgui-theme.tar.xz
generate_release_notes: false

0 comments on commit 63d3f7c

Please sign in to comment.