Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
build:
strategy:
matrix:
java: [17]
runs-on: ubuntu-latest
java: [21]
runs-on: ubuntu-22.04
steps:
- name: checkout repository
uses: actions/checkout@v4
Expand All @@ -27,7 +27,7 @@ jobs:
- name: build
run: ./gradlew build
- name: capture build artifacts
if: ${{ matrix.java == '17' }}
if: ${{ matrix.java == '21' }}
uses: actions/upload-artifact@v4
with:
name: Artifacts
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# GFX Debuggers

This version-agnostic Fabric mod allows you to inject NSight or Renderdoc into Minecraft, without having to fiddle around with launchers, args or environment variables. At launch, it will ask you which debugger you want to attach, and injection can be skipped by closing the dialog.
Supports both Linux and Windows, and should work with any version of Minecraft, as long as Fabric was ported to it.
Requires Fabric Loader 0.10.7+ and Java 17+.
Supports both Linux and Windows, and should work with any version of Minecraft[citation needed], as long as Fabric was ported to it.
Requires Fabric Loader 0.14.0+ and Java 17+.

### Usage

Expand Down
7 changes: 5 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ org.gradle.jvmargs=-Xmx1G
org.gradle.parallel=true

# Fabric Properties
loader_version=0.10.7
# check these on https://fabricmc.net/develop
minecraft_version=1.18.2
loader_version=0.14.0
loom_version=1.14-SNAPSHOT

mod_version=2.1.1
mod_version=3.0.0
maven_group=dev.xirreal
archives_base_name=gfx-debuggers
11 changes: 10 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
rootProject.name = 'gfx-debuggers'
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
mavenCentral()
gradlePluginPortal()
}
}
Loading
Loading