-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
89 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/1.8" /> | ||
<classpathentry kind="lib" path="../toolchain/classpath/android.jar" /> | ||
<classpathentry kind="lib" path="../toolchain/classpath/horizon-1.2.jar" /> | ||
<classpathentry kind="lib" path="../toolchain/classpath/innercore-test.jar" /> | ||
<classpathentry kind="lib" path="classpath/kernelex-2.1.jar" /> | ||
<classpathentry kind="src" path="java/signedit/src" /> | ||
</classpath> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
output | ||
tsconfig.json | ||
*.log | ||
*.icmod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>SignEdit</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
<filteredResources> | ||
<filter> | ||
<id>1727145722801</id> | ||
<name></name> | ||
<type>30</type> | ||
<matcher> | ||
<id>org.eclipse.core.resources.regexFilterMatcher</id> | ||
<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments> | ||
</matcher> | ||
</filter> | ||
</filteredResources> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
# SignEdit — Inner Core | ||
|
||
![Version](https://img.shields.io/badge/dynamic/json?label=version&query=version&url=https://raw.githubusercontent.com/nernar/signedit/master/mod.info&color=D19121&logoColor=white&logo=clockify&style=flat-square) | ||
![Lines of code](https://img.shields.io/tokei/lines/github/nernar/signedit?color=2727E3&logoColor=white&logo=sourcegraph&style=flat-square) | ||
![Version](https://img.shields.io/badge/dynamic/json?label=version&query=version&url=https%3A%2F%2Fraw.githubusercontent.com%2Fnernar%2Fsignedit%2Fmaster%2Fmod.info&color=D19121&logoColor=white&logo=gitlfs&style=flat-square) | ||
[![Downloads](https://img.shields.io/badge/dynamic/json?label=downloads&query=downloads&url=https%3A%2F%2Ficmods.mineprogramming.org%2Fapi%2Fdescription%3Fid%3D857&color=2727E3&logoColor=white&logo=opsgenie&style=flat-square)](https://icmods.mineprogramming.org/mod?id=857) | ||
![License](https://img.shields.io/github/license/nernar/signedit?color=D22128&logoColor=white&logo=apache&style=flat-square) | ||
[![Telegram](https://img.shields.io/badge/channel-gray?logo=telegram&style=flat-square)](https://t.me/ntInsideChat) | ||
|
||
This project maintained from [CurseForge](https://www.curseforge.com/minecraft/mc-mods/signedit). All rights belong to mod developers on Forge and are based solely on ideas presented in this mod. | ||
|
||
## Introduction | ||
This lightweight Inner Core mod allows players to edit placed signs simply by right clicking or tapping them while holding a sign in their hand. |
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"source-dirs": ["src"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
ConfigureMultiplayer({ | ||
isClientOnly: true | ||
}); | ||
Launch(); | ||
|
||
Callback.addCallback("API:KernelExtension", function() { | ||
Packages.io.nernar.innercore.signedit.SignEdit.setConfig(__config__); | ||
}, 0); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/zheka2304/innercore-mod-toolchain/develop/toolchain/schemas/make.schema.json", | ||
"info": { | ||
"name": "SignEdit", | ||
"version": "1.1.1", | ||
"author": "Nernar", | ||
"description": "Click on sign to edit." | ||
}, | ||
"api": "Preloader", | ||
"resources": [], | ||
"sources": [ | ||
{ | ||
"type": "launcher", | ||
"language": "javascript", | ||
"source": "launcher.js" | ||
} | ||
], | ||
"compile": [ | ||
{ | ||
"source": "java/signedit", | ||
"type": "java" | ||
} | ||
], | ||
"additional": [ | ||
{ | ||
"source": "assets/*", | ||
"targetDir": "." | ||
} | ||
] | ||
} |