From 4e55dce30214a426c8621c565f525303b43fbf7f Mon Sep 17 00:00:00 2001 From: Rémy Raes Date: Wed, 19 Oct 2022 14:50:20 +0200 Subject: feat: Manually find game if needed (#7) * refactor: move updateGamePath method in store mutations * feat: play button allows game path update If game path was not found automatically and the user clicks the play button, FlightCore will ask him to point out his Titanfall2 installation folder. * refactor: change button text * feat: display a notification on successful game folder selection * feat: close permanent notification on successful game folder selection * fix: allow game launch with UNKNOWN install type on Windows * feat: set install type to UNKNOWN on manual folder pick * refactor: update omni-button text when game folder wasn't found --- src-vue/src/components/PlayButton.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-vue/src/components') diff --git a/src-vue/src/components/PlayButton.vue b/src-vue/src/components/PlayButton.vue index 8e0b4149..ff57e706 100644 --- a/src-vue/src/components/PlayButton.vue +++ b/src-vue/src/components/PlayButton.vue @@ -13,7 +13,7 @@ export default defineComponent({ switch(this.$store.state.northstar_state) { case NorthstarState.GAME_NOT_FOUND: - return "Titanfall2 not found"; + return "Select Titanfall2 game folder"; case NorthstarState.INSTALL: return "Install"; case NorthstarState.INSTALLING: -- cgit v1.2.3