Skip to content

Commit

Permalink
规范化Markdown,使之支持自定义扩展语法
Browse files Browse the repository at this point in the history
  • Loading branch information
EB-wilson committed Oct 2, 2024
1 parent c8c5ed6 commit 5a0ae32
Show file tree
Hide file tree
Showing 34 changed files with 1,527 additions and 599 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
...
compileOnly "com.github.EB-wilson.UniverseCore:core:$uncVersion"//涵盖了大部分mod制作相关的工具
compileOnly "com.github.EB-wilson.UniverseCore:markdown:$uncVersion"//markdown工具支持
compileOnly "com.github.EB-wilson.UniverseCore:scenes:$uncVersion"//ui相关工具类型
compileOnly "com.github.EB-wilson.UniverseCore:dynamilizer:$uncVersion"//动态化仓库,实现自JavaDynamilizer
compileOnly "com.github.EB-wilson.UniverseCore:annotations:$uncVersion"//包括组件化接口在内的注解处理器
Expand Down Expand Up @@ -43,6 +44,7 @@
dependencies {
...
implementation "com.github.EB-wilson.UniverseCore:markdown:$uncVersion"//markdown工具支持
implementation "com.github.EB-wilson.UniverseCore:scenes:$uncVersion"//ui相关工具类型
...
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

ext{
uncVersion = '2.1.1'
uncVersion = '2.2.0'

//the build number that this mod is made for
mindustryVersion = 'v146'
Expand Down
2 changes: 1 addition & 1 deletion core/processorLog/EntryProcessor.log
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
processor: EntryProcessor (full class name: universecore.annotations.EntryProcessor)
time: Sun Jun 16 20:50:10 CST 2024
time: Tue Sep 24 17:43:10 CST 2024

-----------------------------------------
annotation: universecore.annotations.Annotations.ImplEntries
Expand Down
Binary file modified desktop9/build/libs/desktop9.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ libOutputDir =
deleteBuildLibFile = false

#target directory that build UniverseCore library with task 'toMod'
modOutputDir =
modOutputDir = /home/local/.local/share/Mindustry/mods
deleteBuildModFile = false

debugGamePath =
debugGamePath = /home/local/Games/mindustry/Mindustry.jar
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import org.commonmark.node.AbstractVisitor;
import org.commonmark.node.CustomBlock;
import org.commonmark.node.CustomNode;
import universecore.ui.elements.markdown.extensions.Curtain;

public abstract class AbsExtensionVisitor extends AbstractVisitor {
@Override
Expand Down
Loading

0 comments on commit 5a0ae32

Please sign in to comment.