From 45f46015e8c24bc88844d594c1bcb1098af012a9 Mon Sep 17 00:00:00 2001 From: iAmAsval Date: Wed, 1 Sep 2021 18:07:40 +0200 Subject: [PATCH 1/3] zbeub --- .github/ISSUE_TEMPLATE/bug.yml | 45 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ .github/ISSUE_TEMPLATE/feature.yml | 22 +++++++++++++++ 3 files changed, 72 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 00000000..d043512c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,45 @@ +name: Bug Report +description: File a bug report +title: "Bug Title" +labels: [bug] +assignees: + - iAmAsval +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! Keep in mind that screenshots and log files help us a lot so don't forget to provide one or both of those (drag and drop files in a text area). + Your bug report will be closed without explanation if you don't follow the following rules: + - Bad bug explanation will result in bad support and probably on a negative tone + - This template shouldn't be used to ask how to use FModel or a certain feature FModel provides + - Bug reports must always use the latest FModel with the latest available version of the game you use + - If you can't load files, it's probably because of your AES key, no need to file a report + - We absolutely do not support modding + - type: input + id: game + attributes: + label: Game + placeholder: ex. Fortnite, Valorant, ... + validations: + required: true + - type: textarea + id: error + attributes: + label: Error + description: Tell us what FModel says about the error, from the console and / or the log file + placeholder: ex. [ERR] Could not export 'EditorClientAssetRegistry.bin' + render: shell + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction steps + description: How do you trigger this bug? Please walk us through it step by step. + placeholder: | + 1. + 2. + 3. + ... + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..4944fbd4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Discord Server + url: https://fmodel.app/discord + about: Please ask and answer questions here. diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml new file mode 100644 index 00000000..a70ea493 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature.yml @@ -0,0 +1,22 @@ +name: Feature Request +description: Submit a new feature request +title: "Feature Title" +labels: [suggestion] +assignees: + - iAmAsval +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this feature request! Before going any further, make sure what you're about to submit doesn't already exist. + Your feature request will be closed without explanation if you don't follow the following rules: + - This template shouldn't be used to ask how to use FModel or a certain feature FModel provides + - We absolutely do not support modding + - type: textarea + id: description + attributes: + label: Description + description: Tell us what you want FModel to be able to do + placeholder: Please describe with details and how it could be done if possible... + validations: + required: true From 5a6e82309913710781793e01c0bc73c73d81df80 Mon Sep 17 00:00:00 2001 From: Nick <82282004+sirvibegodlol@users.noreply.github.com> Date: Mon, 6 Sep 2021 12:15:40 -0400 Subject: [PATCH 2/3] Update GameSelectorViewModel.cs --- FModel/ViewModels/GameSelectorViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FModel/ViewModels/GameSelectorViewModel.cs b/FModel/ViewModels/GameSelectorViewModel.cs index be2e0fb2..e2211604 100644 --- a/FModel/ViewModels/GameSelectorViewModel.cs +++ b/FModel/ViewModels/GameSelectorViewModel.cs @@ -104,7 +104,7 @@ namespace FModel.ViewModels private DetectedGame GetMojangGame(string gameName, string pakDirectory) { - _launcherSettings ??= GetDataLauncherInstalls("\\.minecraft_dungeons\\launcher_settings.json"); + _launcherSettings ??= GetDataLauncherInstalls("\\.minecraft\\launcher_settings.json"); if (_launcherSettings is {ProductLibraryDir: { }}) return new DetectedGame {GameName = gameName, GameDirectory = $"{_launcherSettings.ProductLibraryDir}{pakDirectory}"}; @@ -183,4 +183,4 @@ namespace FModel.ViewModels } #pragma warning restore 649 } -} \ No newline at end of file +} From 97c313b7730e34edc02e14c20d1a9fec576ac315 Mon Sep 17 00:00:00 2001 From: Nick <82282004+sirvibegodlol@users.noreply.github.com> Date: Mon, 6 Sep 2021 12:43:58 -0400 Subject: [PATCH 3/3] Update UserSettings.cs --- FModel/Settings/UserSettings.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/FModel/Settings/UserSettings.cs b/FModel/Settings/UserSettings.cs index 759796e8..19e676be 100644 --- a/FModel/Settings/UserSettings.cs +++ b/FModel/Settings/UserSettings.cs @@ -274,7 +274,11 @@ namespace FModel.Settings { FGame.Dungeons, new List { + new("Levels"), "Dungeons/Content/data/Lovika/Levels"), + new("Friendlies"), "Dungeons/Content/Actor/Characters/Friendlies", + new("Skins"), "Dungeons/Content/Actor/Characters/Player/Master/Skins", new("Strings", "Dungeons/Content/Localization/") + } }, { @@ -452,4 +456,4 @@ namespace FModel.Settings set => SetProperty(ref _textureExportFormat, value); } } -} \ No newline at end of file +}