diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-24 15:45:34 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-24 15:45:34 +0900 |
commit | 6dbdbf581f2999d137c7bae8fa8363a33b8dfc57 (patch) | |
tree | 24b9cbb761828adf124f1a72e92fe9f648921dc8 /mod/src/main/resources/assets | |
parent | bb318751e66f123b46a6c5f06a48f9f566f7eca3 (diff) | |
download | Skyblock-Dungeons-Guide-6dbdbf581f2999d137c7bae8fa8363a33b8dfc57.tar.gz Skyblock-Dungeons-Guide-6dbdbf581f2999d137c7bae8fa8363a33b8dfc57.tar.bz2 Skyblock-Dungeons-Guide-6dbdbf581f2999d137c7bae8fa8363a33b8dfc57.zip |
- chroma and gui formatting
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/src/main/resources/assets')
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui | 6 | ||||
-rw-r--r-- | mod/src/main/resources/assets/dungeonsguide/gui/update.gui | 66 |
2 files changed, 71 insertions, 1 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui index 305faa81..9e6b0f49 100644 --- a/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui +++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui @@ -34,7 +34,11 @@ /> </aspectRatio> <padding left="5" top="5" bottom="5" right="5"> - <Text text="Dungeons Guide v4.0 By syeyoung" color="0xFFFFFFFF"/> + <row> + <Text text="Dungeons Guide v" color="0xFFFFFFFF"/> + <Text bind:text="version" color="#FFFFFFFF"/> + <Text text=" By syeyoung" color="#FFFFFFFF"/> + </row> </padding> <size width="5"/> <flexible> diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/update.gui b/mod/src/main/resources/assets/dungeonsguide/gui/update.gui new file mode 100644 index 00000000..db6a9843 --- /dev/null +++ b/mod/src/main/resources/assets/dungeonsguide/gui/update.gui @@ -0,0 +1,66 @@ +<!-- + ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod + ~ Copyright (C) 2023 cyoung06 (syeyoung) + ~ + ~ This program is free software: you can redistribute it and/or modify + ~ it under the terms of the GNU Affero General Public License as published + ~ by the Free Software Foundation, either version 3 of the License, or + ~ (at your option) any later version. + ~ + ~ This program is distributed in the hope that it will be useful, + ~ but WITHOUT ANY WARRANTY; without even the implied warranty of + ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ~ GNU Affero General Public License for more details. + ~ + ~ You should have received a copy of the GNU Affero General Public License + ~ along with this program. If not, see <https://www.gnu.org/licenses/>. + --> + +<bgcolor backgroundColor="#FF111111"> + <align vAlign="CENTER"> + <ConstrainedBox maxHeight="450"> + <col crossAlign="CENTER"> + <size width="0" height="10"/> + <Text text="New Dungeons Guide Version is Available!" color="#FFFFFFFF" size="16"/> + <size width="0" height="5"/> + <row mainAlign="CENTER"> + <Text bind:text="version" size="8" color="#FFFFFFFF"/> + <Text text=" Update Log" size="8" color="#FFFFFFFF"/> + </row> + <size width="0" height="10"/> + <flexible> + <align hAlign="CENTER"> + <padding left="10" right="10"> + <border> + <line slot="left" dir="VERTICAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="top" dir="HORIZONTAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="bottom" dir="HORIZONTAL" thickness="1.0" color="#FFFFFFFF"/> + <line slot="right" dir="VERTICAL" thickness="1.0" color="#FFFFFFFF"/> + <ConstrainedBox maxWidth="600" slot="content"> + <bgcolor backgroundColor="#FF222222"> + <ScrollablePanel> + <padding left="5" top="5" right="5" bottom="5"> + <Text bind:text="updatelog" color="#FFFFFFFF"/> + </padding> + </ScrollablePanel> + </bgcolor> + </ConstrainedBox> + </border> + </padding> + </align> + </flexible> + <size width="0" height="15"/> + <row mainAlign="CENTER"> + <size width="200" height="20"> + <RoundButton text="Unload DG and load new version" on:click="unload"/> + </size> + <size width="10" height="0"/> + <size width="80" height="20"> + <RoundButton text="Continue" on:click="continue"/> + </size> + </row> + <size width="0" height="10"/> + </col> + </ConstrainedBox> + </align> +</bgcolor>
\ No newline at end of file |