aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/components
diff options
context:
space:
mode:
authorRémy Raes <contact@remyraes.com>2022-10-19 14:50:20 +0200
committerGitHub <noreply@github.com>2022-10-19 14:50:20 +0200
commit4e55dce30214a426c8621c565f525303b43fbf7f (patch)
tree22a053a9f09b88190086a34c4e8295ef78f0ba53 /src-vue/src/components
parent546d1908b15fc7c21b1b5f0109826fb03a5493fd (diff)
downloadFlightCore-4e55dce30214a426c8621c565f525303b43fbf7f.tar.gz
FlightCore-4e55dce30214a426c8621c565f525303b43fbf7f.zip
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
Diffstat (limited to 'src-vue/src/components')
-rw-r--r--src-vue/src/components/PlayButton.vue2
1 files changed, 1 insertions, 1 deletions
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: