From 283794b6259100d467072c7befcf15cb8e7e5df8 Mon Sep 17 00:00:00 2001 From: U2EZNeko Date: Wed, 1 Nov 2023 07:36:42 +0100 Subject: [PATCH 1/4] Fix mob sprite sizing --- src/components/presets/card/PartyCard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/presets/card/PartyCard.vue b/src/components/presets/card/PartyCard.vue index 866d25a..9bc294c 100644 --- a/src/components/presets/card/PartyCard.vue +++ b/src/components/presets/card/PartyCard.vue @@ -50,7 +50,7 @@ const expandedInfoVisible: Ref = ref([
  • = ref([ !expandedInfoVisible[index] || viewport.isLessThan('full') " - class="bg-light-primary dark:bg-dark-primary rounded-lg flex justify-center items-center p-2" + class="bg-light-primary dark:bg-dark-primary rounded-lg flex justify-center items-center w-full mx-0 p-4 m-0" > Date: Wed, 1 Nov 2023 07:42:10 +0100 Subject: [PATCH 2/4] Create README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8383907 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes. (https://github.com/40Cakes/pokebot-gen3) + + +Please configure your obs.yml to a different port for each instance. + +You can add default instances server-side by writing them into a .env like this: +DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2" \ No newline at end of file From cc26084f79df9eb2efcdf921508061416835c353 Mon Sep 17 00:00:00 2001 From: U2EZNeko Date: Wed, 1 Nov 2023 07:54:40 +0100 Subject: [PATCH 3/4] Update README.md Basic readme --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8383907..d263da4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,47 @@ -This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes. (https://github.com/40Cakes/pokebot-gen3) +# This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes. +## (https://github.com/40Cakes/pokebot-gen3) -Please configure your obs.yml to a different port for each instance. -You can add default instances server-side by writing them into a .env like this: -DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2" \ No newline at end of file + +# Preview +Multiple Instances work, trainer data and party info is fetched and displayed with the help of the bot's webhooks and PokeAPI. (the design is subject to change this is WIP) +![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/b67f7331-7870-4e0b-bdde-d8aabd8d40e5) +![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/fa6e6581-830d-41de-9fe7-d67fc1f9bca2) + + + + + + + + + + +# How to configure: + +## Please configure your obs.yml to a different port for each instance. You can do this by copying the default obs.yml from the profiles folder of the bot to your specific profile. +- The Profile folders will be created after you launch the bot once. + + + +## You can add default instances server-side by writing them into a .env like this: + +### DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2" +it should look like this: +### DEFAULT_INSTANCE_API_URLS="127.0.0.1:8888, 127.0.0.1:8889" + + +## To Do +- Target Poke selector (display only) +- Detail Displaying option (visual shiny_log, detailed total stats, phase stats and history data) +- Auto removing/Pausing instances that are off to avoid script hangs +- Display Emulator Data and other Info once it's in the API + +## Done: + +- Multi Instance handling +- Data Persistence if added through Browser +- Serverside default instances in .env +- Sprite fetching, Party display and Trainer Info. +- Writing a basic Readme From 2195fc9cdaee2fca7d5f165366acc622cb7242f5 Mon Sep 17 00:00:00 2001 From: U2EZNeko Date: Wed, 1 Nov 2023 08:05:29 +0100 Subject: [PATCH 4/4] Update ReadME --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8383907..d263da4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,47 @@ -This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes. (https://github.com/40Cakes/pokebot-gen3) +# This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes. +## (https://github.com/40Cakes/pokebot-gen3) -Please configure your obs.yml to a different port for each instance. -You can add default instances server-side by writing them into a .env like this: -DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2" \ No newline at end of file + +# Preview +Multiple Instances work, trainer data and party info is fetched and displayed with the help of the bot's webhooks and PokeAPI. (the design is subject to change this is WIP) +![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/b67f7331-7870-4e0b-bdde-d8aabd8d40e5) +![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/fa6e6581-830d-41de-9fe7-d67fc1f9bca2) + + + + + + + + + + +# How to configure: + +## Please configure your obs.yml to a different port for each instance. You can do this by copying the default obs.yml from the profiles folder of the bot to your specific profile. +- The Profile folders will be created after you launch the bot once. + + + +## You can add default instances server-side by writing them into a .env like this: + +### DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2" +it should look like this: +### DEFAULT_INSTANCE_API_URLS="127.0.0.1:8888, 127.0.0.1:8889" + + +## To Do +- Target Poke selector (display only) +- Detail Displaying option (visual shiny_log, detailed total stats, phase stats and history data) +- Auto removing/Pausing instances that are off to avoid script hangs +- Display Emulator Data and other Info once it's in the API + +## Done: + +- Multi Instance handling +- Data Persistence if added through Browser +- Serverside default instances in .env +- Sprite fetching, Party display and Trainer Info. +- Writing a basic Readme