diff --git a/LICENSE.txt b/LICENSE.txt index 009bbc3..6e24f53 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -2,7 +2,7 @@ LICENSE Agreement Copyright (c) 2024-2026 Dmitrii 'yawaflua' Shimanskii. All rights reserved. -This project is licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0) +This project is licensed under the Creative Commons Attribution 4.0 International License (CC BY-NC-ND 4.0) Subject to the additional restrictive conditions below: 1. PROHIBITION OF USE: diff --git a/README.md b/README.md index 0eb9e4f..2f7c6cc 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ SPMega - клиентский Fabric-мод с банковым UI для раб ## Сборка (PowerShell) ```powershell -.\gradlew.bat classes +.\gradlew.bat build ``` ## Дорожная карта diff --git a/src/client/java/git/yawaflua/tech/spmega/client/ui/UiNotifications.java b/src/client/java/git/yawaflua/tech/spmega/client/ui/UiNotifications.java index 072f6d2..ec98eae 100644 --- a/src/client/java/git/yawaflua/tech/spmega/client/ui/UiNotifications.java +++ b/src/client/java/git/yawaflua/tech/spmega/client/ui/UiNotifications.java @@ -75,7 +75,7 @@ public final class UiNotifications { int x = width - boxWidth - 10; int y = height - boxHeight - 10; - context.fill(x, y, x + boxWidth, y + boxHeight, Color.GRAY.getRGB()); + context.fill(x, y, x + boxWidth, y + boxHeight, Color.DARK_GRAY.getRGB()); context.drawTextWithShadow(textRenderer, currentText, x + padding, y + padding, Color.WHITE.getRGB()); } diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 2d2c094..d5e984e 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -6,8 +6,8 @@ "description": "yawaflua`s SPRadar+SPMHelper mod, thats make a lot!", "authors": [], "contact": {}, - "license": "CC-BY-SA-4.0", - "icon": "assets/spmega/icon.png", + "license": "CC BY-NC-ND 4.0", + "icon": "icon.png", "environment": "client", "entrypoints": { "fabric-datagen": [ diff --git a/assets/spmega/icon.png b/src/main/resources/icon.png similarity index 100% rename from assets/spmega/icon.png rename to src/main/resources/icon.png