From 87df9a914624b295e3e93db621ed2a8256eaf846 Mon Sep 17 00:00:00 2001 From: syeyoung <42869671+cyoung06@users.noreply.github.com> Date: Fri, 13 Jan 2023 13:11:13 +0900 Subject: Dg4.0 guisystem (#269) * - XML Like configuration for GUI Signed-off-by: syeyoung * - Stylesheets were never a good idea Signed-off-by: syeyoung * - Ref's are always bindable Signed-off-by: syeyoung * - cool components Column Background (color_ Row SizedBox Stack Padding Signed-off-by: syeyoung * - Update copyright header v2 Signed-off-by: syeyoung * - Bunch of stuff Signed-off-by: syeyoung * - Few more elements Signed-off-by: syeyoung * - View!! Signed-off-by: syeyoung * - Better click handlign - Popups Signed-off-by: syeyoung * - ComponentCreator for DX - test view (for testin Signed-off-by: syeyoung * - Column and Row shrink to crossAxisSize if its max is infinity - Gui test. Signed-off-by: syeyoung * - Load attributes after super constructor - Fix Stackoverflow in RootDom.setCursor - Test Gui Command - Test Gui to testview.gui - XML Parser settings to ignore comments - Controller check if element is actually an element, not a textnode. Signed-off-by: syeyoung * - Component Parent propagation - better placeholder Signed-off-by: syeyoung * - Line needs texture2d Signed-off-by: syeyoung * - igitignore update Signed-off-by: syeyoung * - gradle build file update Signed-off-by: syeyoung * - Flexible - Background uses singlehcildpassinglayouter - Helper methods in ConstraintBox Signed-off-by: syeyoung * - Line and Border - add updating code Signed-off-by: syeyoung * - Textfield Signed-off-by: syeyoung * - Column and Row with flex elements when given maximum mainAxis now throws an error - Column and Row when given maximum mainAxis now shrinks to children Signed-off-by: syeyoung * - Better architecture - I'll document it later on separate repo Signed-off-by: syeyoung * LGTM. - Might change rendering architecture. Separate child rendering and itself rendering Signed-off-by: syeyoung * - Fix some typo's and issues Signed-off-by: syeyoung * - make it work Signed-off-by: syeyoung * - smth Signed-off-by: syeyoung * - Button Signed-off-by: syeyoung * - colored button - passthroughs Signed-off-by: syeyoung * - fix issue in text Signed-off-by: syeyoung * - Delegating widgets and scrollbar Signed-off-by: syeyoung * - scrollbar Signed-off-by: syeyoung * - list Signed-off-by: syeyoung * - popup - align - stack now only propagates events to first child (lol) Signed-off-by: syeyoung * - Event propagation changes - some presets Signed-off-by: syeyoung * - moving stuff Signed-off-by: syeyoung Signed-off-by: syeyoung --- loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/Main.java | 1 + 1 file changed, 1 insertion(+) (limited to 'loader/src/main/java/kr/syeyoung/dungeonsguide') diff --git a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/Main.java b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/Main.java index 15eee333..c9017672 100755 --- a/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/Main.java +++ b/loader/src/main/java/kr/syeyoung/dungeonsguide/launcher/Main.java @@ -103,6 +103,7 @@ public class Main try { File f = new File(configDir, "loader.cfg"); Configuration configuration = new Configuration(f); + configuration.save(); IDGLoader idgLoader = obtainLoader(configuration); tryReloading(idgLoader); } catch (NoSuitableLoaderFoundException | NoVersionFoundException e) { -- cgit