Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Seeloewen committed Jun 15, 2023
2 parents 09b4021 + 02ceecf commit f9f4a64
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Bug report
about: Report a bug or some other problem
title: ''
labels: bug
assignees: Seeloewen

---

**Before reporting a bug**
- [ ] I've made sure that no other issue describes my bug

**Bug description**
Please give as much detail as possible on the issue you're facing. Describe things like what the bug does, how to reprodruce it, and what the actual expected behaviour is.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Environment**
Operating System
Hardware configuration (GPU, CPU, RAM...)

**Additional context**
Is there anything else you want to say?
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: Seeloewen

---

**Is your feature request related to a problem or bug?**
If so, please describe the problem or link to an existing issue.

**Describe your idea**
Please give a clear and concise description of what you want to see in the app.

**Additional context**
Add any other context or screenshots about the feature request here.
77 changes: 77 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '17 22 * * 2'

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# Random Item Giver Updater
# Random Item Giver Updater

This tool allows you to add new items to the Random Item Giver Datapack by Seeloewen/Louis9. It simplifies the process of editing loot tables by providing a simple yet powerful user interface with lots of useful elements.
It is a rewrite of the older, less stable Random Item Giver Updater app.

The Random Item Giver Datapack, which is what the app is used for, can be found here: https://www.planetminecraft.com/data-pack/random-item-giver-datapack-1-0-0-minecraft-1-16-2

Currently, this app is not in a finished state yet it's already more powerful than the older app. A first (kinda stable) test build is expected this or next month. Alternatively, you can build it yourself by opening the project in VS 2022.
Please note that nothing is finished or even polished yet, so you will run into a lot of issues trying to use the app in the current state. You have been warned.
If you're interested, you can follow along the development on my discord server: https://discord.gg/pUGzCU2mk3

0 comments on commit f9f4a64

Please sign in to comment.