Skip to content

Commit

Permalink
Update mod icon.
Browse files Browse the repository at this point in the history
Co-Authored-By: Ambre Bertucci <[email protected]>
  • Loading branch information
LambdAurora and Akarys42 committed Nov 25, 2024
1 parent 8427dd6 commit 29bd29c
Show file tree
Hide file tree
Showing 17 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,38 +47,38 @@ Searching other mods to replace OptiFine? [Check out this list!](https://optifin

Dropped items which already emit light as a block, will also dynamically emit light!

![Torch](images/torch.png)
![Torch](assets/torch.png)

### Held items emit light

Light is emitted when entities hold light emitting items.

![Fox holding lantern](images/fox_holding_lantern.png)
![Fox holding lantern](assets/fox_holding_lantern.png)

### Fire! Fire! Fire!

Any entity on fire will emit light!

![Skeleton on fire!](images/fire_skeleton.png)
![Skeleton on fire!](assets/fire_skeleton.png)

### Spectral arrows

Spectral arrows will emit a very weak light!

![Spectral arrows](images/spectral_arrow.png)
![Spectral arrows](assets/spectral_arrow.png)

### Different luminance!

Light emitted from items depend on the light emitted from their respective blocks!

![light levels](images/light_levels.png)
![light levels](assets/light_levels.png)

### Configuration GUI

As of v2.1.0.

![Configuration GUI](images/settings_main.png)
![Entities Configuration](images/settings_entities.png)
![Configuration GUI](assets/settings_main.png)
![Entities Configuration](assets/settings_entities.png)

## 📖 Usage

Expand Down
Binary file modified api/src/main/resources/assets/lambdynlights/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file added assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion build_logic/src/main/java/lambdynamiclights/data/Nmt.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String toToml() {

if (this.icon != null) {
builder.property("logoFile", this.icon);
builder.property("logoBlur", false);
builder.property("logoBlur", true);
}

if (this.contact != null) {
Expand Down
4 changes: 2 additions & 2 deletions build_logic/src/main/kotlin/lambdynamiclights/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.gradle.api.Project

object Utils {
fun parseReadme(project: Project): String {
val linkRegex = "!\\[([A-z_ ]+)]\\((images\\/[A-z.\\/_]+)\\)"
val linkRegex = "!\\[([A-z_ ]+)]\\((assets\\/[A-z.\\/_]+)\\)"

var readme = project.rootProject.file("README.md").readText()
val lines = readme.split("\n").toMutableList()
Expand All @@ -28,7 +28,7 @@ object Utils {
}

readme = lines.joinToString("\n")
readme = readme.replace(linkRegex.toRegex(), "![\$1](https://raw.githubusercontent.com/LambdAurora/LambDynamicLights/1.21.2/\$2)")
readme = readme.replace(linkRegex.toRegex(), "![\$1](https://raw.githubusercontent.com/LambdAurora/LambDynamicLights/1.21.4/\$2)")
return readme
}

Expand Down
Binary file removed icon.kra
Binary file not shown.
Binary file removed icon.png
Binary file not shown.
Binary file removed icon_400.png
Binary file not shown.
Binary file modified src/main/resources/assets/lambdynlights/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 29bd29c

Please sign in to comment.