Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5f10065
port to fabric
Jeronimo97 Feb 2, 2024
4fa31d1
try fix mixin setup
Jeronimo97 Feb 2, 2024
168d6f2
Update build.gradle
Jeronimo97 Feb 7, 2024
8291590
may add modrinth upload
Jeronimo97 Feb 7, 2024
3f8eff3
rem: client resources
Jeronimo97 Feb 9, 2024
a0f7c86
rem: debug and mixin
Jeronimo97 Feb 11, 2024
c86e970
ref: changelog
Jeronimo97 Feb 11, 2024
d191820
ref: update linkableapi
Jeronimo97 Aug 6, 2024
112dabb
chore: update version
Jeronimo97 Aug 6, 2024
c302eb9
Update linkableapi
Jeronimo97 Aug 6, 2024
7cb4e81
Merge pull request #354 from MrTroble/fabric/1.20.4
Jeronimo97 Aug 6, 2024
af2645d
port to 1.20.6
Jeronimo97 Jul 28, 2025
e8b714d
port 1.21
Jeronimo97 Jul 28, 2025
490f69f
rem: java path
Jeronimo97 Jul 28, 2025
e21d439
ref: changelog
Jeronimo97 Aug 4, 2025
777ba06
ref: update build gradle
Jeronimo97 Aug 4, 2025
9e036bf
Merge pull request #408 from MrTroble/port/1.21-fabric
Jeronimo97 Aug 4, 2025
0591739
feat: bump to Minecraft 1.21.1 (Fabric)
vanlueckn May 2, 2026
2c0c6af
fix: register EMITER_TILE against RS_EMITTER
vanlueckn May 2, 2026
b8eb473
chore: untrack runs/ generated artifacts
vanlueckn May 2, 2026
90f811c
feat: bump to Minecraft 1.21.3 (Fabric)
vanlueckn May 2, 2026
b43ffff
fix: route registry keys through Item.Settings / Block.Settings
vanlueckn May 2, 2026
db49aac
feat: bump to Minecraft 1.21.4 (Fabric)
vanlueckn May 2, 2026
c4d0f29
Merge upstream/1.21.4-fabric: 1.20.1-Backports nicht relevant fuer Port
vanlueckn May 12, 2026
4e71289
chore: switch linkableapi submodule URL to upstream MrTroble/linkableapi
vanlueckn May 12, 2026
4270b07
ref: update buildscript
Jeronimo97 Jul 20, 2026
80d4f47
fix: multilinking tooltag, correct redstone update
Jeronimo97 Jul 20, 2026
63571ac
chore: checkstyle
Jeronimo97 Jul 20, 2026
d205d5a
ref: update changelog
Jeronimo97 Jul 20, 2026
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
133 changes: 0 additions & 133 deletions .github/dependabot.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/main.yml → .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
changelog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dangoslen/changelog-enforcer@v2
- uses: actions/checkout@v6
- uses: dangoslen/changelog-enforcer@v3.7.0
with:
changeLogPath: 'changelog.md'
versionPattern: '.*'
2 changes: 1 addition & 1 deletion .github/workflows/checkstyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Checkstyle job
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Run check style
uses: nikitasavinov/checkstyle-action@master
with:
Expand Down
72 changes: 37 additions & 35 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -1,49 +1,51 @@
name: Java CI with Gradle
name: Build & Publish Mod

on: [push]
on:
push:
branches:
- "*-master"

pull_request:
branches:
- "*-master"

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v6
with:
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build
submodules: recursive

deploy:
if: endswith(github.ref_name, 'master') && github.ref_protected && github.ref_type == 'branch'
runs-on: ubuntu-latest
env:
APPVEYOR_BUILD_VERSION: '3.2.2'
CURSETOKEN: ${{ secrets.CURSETOKEN }}
steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v5
with:
submodules: true
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Change wrapper permissions
java-version: 25
distribution: temurin
cache: gradle

- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Deploy
uses: gradle/gradle-build-action@v2
with:
arguments: curseforge

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6

- name: Build
run: ./gradlew build

- name: Publishing Curseforge
if: github.event_name == 'push' && github.ref_protected && github.ref_type == 'branch'
run: ./gradlew publishCurseforge
env:
CURSETOKEN: ${{ secrets.CURSETOKEN }}

- name: Publishing Modrinth
if: github.event_name == 'push' && github.ref_protected && github.ref_type == 'branch'
run: ./gradlew publishModrinth
env:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
15 changes: 0 additions & 15 deletions .github/workflows/main.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/versioncheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Check version!"

on:
pull_request:
branches:
- "*-master"

jobs:
changed_files:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v6

- name: Get Changed Files
id: changed-files-specific
uses: tj-actions/changed-files@v47.0.6
with:
files: gradle.properties

- name: File not updated
if: steps.changed-files-specific.outputs.any_changed != 'true'
run: |
echo "Version was not updated!"
exit 1
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ build
# other
eclipse
run
runs

# Files from Forge MDK
forge*changelog.txt
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "linkableapi"]
path = linkableapi
url = https://github.com/MrTroble/linkableapi
branch = 1.21.3-fabric
21 changes: 6 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@
# TC Wireless Redstone

[
![Curseforge](https://cf.way2muchnoise.eu/title/503143.svg?badge_style=for_the_badge)
![Curseforge Downloads](https://cf.way2muchnoise.eu/short_503143.svg?badge_style=for_the_badge)
![Curseforge Versions](http://cf.way2muchnoise.eu/versions/503143.svg?badge_style=for_the_badge)
](https://www.curseforge.com/minecraft/mc-mods/tc-wireless-redstone)
[
![Discord](https://img.shields.io/discord/166953995951276032?logo=discord&style=for-the-badge)
](https://discord.gg/Um97SHnrYp)
[
![Build](https://img.shields.io/appveyor/build/MrTroble/girc-redstone/master?logo=appveyor&style=for-the-badge)
](https://ci.appveyor.com/project/MrTroble/girc-redstone)
[
![Sponsor](https://img.shields.io/github/sponsors/MrTroble?logo=github&style=for-the-badge)
](https://github.com/sponsors/MrTroble)
[![Versions](https://badges.moddingx.org/modrinth/versions/rMlghquR) ![Downloads](https://badges.moddingx.org/modrinth/downloads/rMlghquR)](https://modrinth.com/mod/tc-wireless-redstone)

[![Versions](https://badges.moddingx.org/curseforge/versions/503143) ![Downloads](https://badges.moddingx.org/curseforge/downloads/503143)](https://www.curseforge.com/minecraft/mc-mods/tc-wireless-redstone)

[![Discord](https://img.shields.io/discord/166953995951276032?logo=discord&style=for-the-badge)](https://discord.gg/E7qhYeR)

## This mod adds performant wireless redstone

- Download on [curseforge](https://www.curseforge.com/minecraft/mc-mods/tc-wireless-redstone).
- Download on [Curseforge](https://www.curseforge.com/minecraft/mc-mods/tc-wireless-redstone) and [Modrinth](https://modrinth.com/mod/tc-wireless-redstone).
- Updates can be found in the [changelog](changelog.md).

## How to build this mod
Expand Down
Loading
Loading