aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-12Fix instance account selector face for offline accountsAaron
2023-01-02Merge branch 'PrismLauncher:develop' into instance-accountsAaron Sonin
2023-01-02Reword instance-specific account settings, apply clang-formatAaron
Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Remove unecessary delete in InstanceSettingsPage destructorAaron Sonin
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Aaron Sonin <10217842+byteduck@users.noreply.github.com> Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Properly connect signal in instance settings for account selectorAaron Sonin
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Aaron Sonin <10217842+byteduck@users.noreply.github.com> Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Add null check for face in instance account settings selectorAaron Sonin
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Aaron Sonin <10217842+byteduck@users.noreply.github.com> Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Replace unecessary type check with assertion in InstanceSettingsPageAaron Sonin
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Aaron Sonin <10217842+byteduck@users.noreply.github.com> Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Fix conflicting layout name in InstanceSettingsPageAaron
Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2023-01-02Allow selecting a default account to use with an instanceAaron
Signed-off-by: Aaron <10217842+byteduck@users.noreply.github.com>
2022-12-30Merge pull request #673 from ↵DioEgizio
PrismLauncher/renovate/flatpak-flatpak-github-actions-5.x chore(deps): update flatpak/flatpak-github-actions action to v5
2022-12-30Merge pull request #626 from leo78913/mods-provider-columnflow
closes https://github.com/PrismLauncher/PrismLauncher/issues/402
2022-12-30fix: remove Flatpak cache key workaroundSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-29feat(Mods): hide 'Provider' column when no mods have providersflow
This makes the mod list look a bit less polluted in the common case of mods having no provider whatsoever. Signed-off-by: flow <flowlnlnln@gmail.com>
2022-12-29refactor(Mods): make provider() return a std::optionalflow
This makes it easier to check if a mod has a provider or not, without having to do a string comparison. Signed-off-by: flow <flowlnlnln@gmail.com>
2022-12-28Merge pull request #684 from Scrumplex/logging-categoriesflow
Prevents private credentials from leaking in the logs of general users
2022-12-28Merge pull request #680 from AshtakaOOf/flathub-screenshotsSefa Eyeoglu
2022-12-27feat: install launcher logging categoriesSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-27refactor: use ECM logging categories insteadSefa Eyeoglu
Co-authored-by: flow <flowlnlnln@gmail.com> Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-27refactor: add logging category for credentialsSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-27Merge pull request #681 from PrismLauncher/renovate/actions-cache-3.xSefa Eyeoglu
2022-12-27chore(deps): update actions/cache action to v3.2.2renovate[bot]
2022-12-26FixAdrien
Me when me when me when Signed-off-by: Adrien <66513643+AshtakaOOf@users.noreply.github.com>
2022-12-26Update org.prismlauncher.PrismLauncher.metainfo.xml.inAdrien
Add ModpackUpdate and change some lines Signed-off-by: Adrien <66513643+AshtakaOOf@users.noreply.github.com>
2022-12-26Update org.prismlauncher.PrismLauncher.metainfo.xml.inAdrien
Should be the right properties (I hope) Signed-off-by: Adrien <66513643+AshtakaOOf@users.noreply.github.com>
2022-12-26Merge pull request #618 from TheKodeToad/safer-destructive-actionsSefa Eyeoglu
Fixes https://github.com/PolyMC/PolyMC/issues/948
2022-12-26Use optional instead of hardcoded cancelled stringTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2022-12-26About to -> you are about toTheKodeToad
You're is used in some other places but im lazy Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2022-12-24chore(deps): update flatpak/flatpak-github-actions action to v5renovate[bot]
2022-12-24Merge pull request #666 from getchoo/pls-scrumpflow
scrump heard your pleads, rejoice!
2022-12-24Merge pull request #665 from flowln/logging_categoriesflow
2022-12-24Make requested changesTheKodeToad
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2022-12-23fix: check if GIT_REFSPEC is emptyseth
Signed-off-by: seth <getchoo@tuta.io>
2022-12-23Merge pull request #644 from RaptaG/new-readmeflow
2022-12-23Merge pull request #667 from PrismLauncher/renovate/actions-cache-3.xflow
2022-12-23chore(deps): update actions/cache action to v3.2.1renovate[bot]
2022-12-22fix: assume builds are stable when git isn't installedseth
Signed-off-by: seth <getchoo@tuta.io>
2022-12-22feat(docs): add note about logging env variables in man pageflow
Signed-off-by: flow <flowlnlnln@gmail.com>
2022-12-22feat: use Qt logging facilities instead of our ownflow
This system allows us to globally define categories, and control whether they are shown or not at runtime. It also does some things by it's own, so we can remove some (uhhh) code. Lastly, this allows changing the behavior of the logger at runtime via environment variables that Qt takes care of for us. Signed-off-by: flow <flowlnlnln@gmail.com>
2022-12-21Merge pull request #656 from PrismLauncher/renovate/actions-cache-3.xflow
2022-12-21chore(deps): update actions/cache action to v3.2.0renovate[bot]
2022-12-19Merge pull request #649 from Scrumplex/fix-winget-release-no9999999Sefa Eyeoglu
2022-12-19fix: update installers-regex for winget releaser againSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-19Merge pull request #647 from Scrumplex/update-flakeSefa Eyeoglu
2022-12-19chore(nix): update flakesSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-19refactor(nix): use tomlplusplus from nixpkgsSefa Eyeoglu
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-19fix(nix): use jdk17 instead of jdkSefa Eyeoglu
See NixOS/nixpkgs#206806 Co-authored-by: Infinidoge <infinidoge@doge-inc.net> Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2022-12-19Merge pull request #628 from flowln/fix_multiple_resource_packs_crashSefa Eyeoglu
Fixes https://github.com/PrismLauncher/PrismLauncher/issues/624
2022-12-18Change numbered list to bullet listRaptaG
Signed-off-by: RaptaG <77157639+RaptaG@users.noreply.github.com>
2022-12-18Merge pull request #642 from DioEgizio/dont-ship-unnecessary-tlsbackendsSefa Eyeoglu
fix: exclude unused tls backends
2022-12-18Improve the READMERaptaG
Not very serious changes, just some enhancements to make it look better! Signed-off-by: RaptaG <77157639+RaptaG@users.noreply.github.com>