Commit Graph
100 Commits
Author SHA1 Message Date
fragginwagon 6f5284ec10 📚 Add API usage documentation to GamemasterManager view 2026-01-28 18:59:20 +00:00
fragginwagon aae38d0353 Add server status loading and saving functionality with improved error handling and UI updates 2026-01-28 18:59:10 +00:00
fragginwagon e4ca6b392b 💾 Add server save functionality and display server storage status in Gamemaster Manager view 2026-01-28 18:59:05 +00:00
fragginwagon 21d7d0c9be Improve readability of getPokemonById method by adjusting return statement formatting 2026-01-28 18:59:00 +00:00
fragginwagon 5bcff917ef Add utility functions for interacting with the Game Master API 2026-01-28 18:58:55 +00:00
fragginwagon 8b4cadf3c4 🎨 Simplify header setting for file download response 2026-01-28 18:58:50 +00:00
fragginwagon 76f42cacc7 Add API endpoint for retrieving Pokémon data 2026-01-28 18:58:45 +00:00
fragginwagon 4596112762 🗂️ Add placeholder file to preserve directory structure 2026-01-28 18:58:33 +00:00
fragginwagon f0e8164645 🎨 Adjust grid layout to use fixed two-column structure for wider screens 2026-01-28 18:56:22 +00:00
fragginwagon cc78b80747 🔄 Rearrange API Key Configuration section within the controls grid layout 2026-01-28 18:52:08 +00:00
fragginwagon 679da54c77 🎨 Remove unnecessary whitespace in CSS styling 2026-01-28 18:50:36 +00:00
fragginwagon f616cbc0b2 🎨 Adjust responsive grid layout for control groups and collapsible groups 2026-01-28 18:50:21 +00:00
fragginwagon 1ad59722b9 Add collapsible group component with styles and animations 2026-01-28 18:48:18 +00:00
fragginwagon 22117fa23d Improve collapsible group headers for better readability and formatting consistency 2026-01-28 18:48:04 +00:00
fragginwagon 0de8c0ee71 Add collapsible sections for API key, OAuth, and client credentials configurations 2026-01-28 18:47:59 +00:00
fragginwagon a921b09ba6 🎨 Improve API key configuration layout and remove redundant section 2026-01-28 18:46:54 +00:00
fragginwagon 33272b67a8 🔑 Add API key configuration section with management link and note 2026-01-28 18:46:42 +00:00
fragginwagon 4ae4d50ff2 Clean up unnecessary whitespace in ChallongeTest.vue 2026-01-28 18:41:09 +00:00
fragginwagon 68777f3596 🔄 Refine authentication logic to prioritize tokens based on scope and improve debug configuration usage 2026-01-28 18:41:04 +00:00
fragginwagon f25bbb3b2d ⚠️ Improve readability of warning messages and hints for client credentials and scope usage 2026-01-28 18:40:53 +00:00
fragginwagon 593a707438 ⚠️ Clarify client credentials scope requirements and add warning for USER scope usage 2026-01-28 18:40:48 +00:00
fragginwagon 816eb7cb67 🎨 Fix inconsistent indentation in tournament authentication type logic 2026-01-28 18:40:37 +00:00
fragginwagon 3894a2415c 🔧 Update tournament listing logic with additional scope types and refined authentication handling 2026-01-28 18:40:32 +00:00
fragginwagon b70c8efc22 🧹 Remove unnecessary whitespace in ChallongeTest.vue 2026-01-28 18:39:38 +00:00
fragginwagon 6dbeff1c4a 🔧 Enable debug mode and adjust responsive styles for better mobile layout 2026-01-28 18:39:33 +00:00
fragginwagon 0f206a0158 🔧 Update client authentication logic and adjust grid layout for responsiveness 2026-01-28 18:38:58 +00:00
fragginwagon b7a6a139b0 🎨 Reformat router-link element for improved readability 2026-01-28 18:32:49 +00:00
fragginwagon 1ddc7761f5 🔑 Add support for client credentials authentication in API v2.1 with priority over OAuth and API key 2026-01-28 18:32:43 +00:00
fragginwagon 8c4829f8c5 🔑 Add route for ClientCredentialsManager component 2026-01-28 18:32:21 +00:00
fragginwagon 30d8202c55 🔗 Add route for ClientCredentialsManager component 2026-01-28 18:32:16 +00:00
fragginwagon 149c3370a2 ✏️ Improve code readability by reformatting and rewrapping text and attributes for better alignment and consistency 2026-01-28 18:32:05 +00:00
fragginwagon 8f7f9915e1 🔒 Add client credentials management functionality 2026-01-28 18:31:58 +00:00
fragginwagon c723496e69 🎨 Reformat code for consistent indentation and improve readability 2026-01-28 18:30:53 +00:00
fragginwagon 36caa456fb 🔒 Add functionality to manage Challonge client credentials securely 2026-01-28 18:30:48 +00:00
fragginwagon e55537ff8b 🎮 Add support for selecting tournament scope in Challonge API integration 2026-01-28 18:29:26 +00:00
fragginwagon e85aea3f0c 🔧 Disable JavaScript and TypeScript validation in VS Code settings 2026-01-28 18:25:31 +00:00
fragginwagon a24f766e37 🎨 Improve code readability by reformatting and updating function definitions and comments 2026-01-28 18:18:55 +00:00
fragginwagon 1944b43af8 feat: implement multi-state tournament querying for Challonge API v2.1
- Add tournament-query.js utility with queryAllTournaments() and helper functions
  * Makes 3 parallel API calls (pending, in_progress, ended states)
  * Uses Promise.all() to wait for all requests
  * Deduplicates results by tournament ID using Map
  * Replaces invalid state: 'all' parameter (API doesn't support 'all' value)

- Implement 5 convenience functions:
  * queryAllTournaments() - Query all states with custom options
  * queryUserTournaments() - Query user's tournaments (shorthand)
  * queryCommunityTournaments() - Query community tournaments
  * queryActiveTournaments() - Query pending + in_progress only
  * queryCompletedTournaments() - Query ended tournaments only
  * queryTournamentsByStates() - Query custom state combinations

- Update ChallongeTest.vue to use queryAllTournaments()
  * Replace invalid state: 'all' with proper multi-state query
  * Now correctly fetches tournaments from all states
  * Update console logging to show all 3 states being queried

- Add comprehensive TOURNAMENT_QUERY_GUIDE.md documentation
  * Explains the problem and solution
  * API reference for all functions
  * Implementation details and performance notes
  * Testing instructions
  * Future enhancement ideas
2026-01-28 18:10:29 +00:00
fragginwagon 66ffe17aed Add initial implementation and configuration files for Discord bot and dashboard 2026-01-28 05:51:44 +00:00
fragginwagon 053db5e32b 🗑️ Remove unused files and redundant assets from the project 2026-01-28 05:48:15 +00:00
fragginwagon fedcc8d25d 🛠️ Simplify argument parsing and validation logic by removing redundant type annotations and relocating target validation 2026-01-28 05:29:56 +00:00
fragginwagon fbd1d8c94f 🛠️ Add SSHHostConfig typedef and improve argument parsing with validation for target 2026-01-28 05:29:43 +00:00
fragginwagon c8194b3083 🔧 Simplify error handling in healthCheck function by removing unused error parameter 2026-01-28 05:26:53 +00:00
fragginwagon 2d28f30578 🔧 Remove unnecessary escaping of single quotes in SFTP fallback logic 2026-01-28 05:26:43 +00:00
fragginwagon 1c40fca61d 🐛 Fix syntax error in catch block by removing empty parentheses 2026-01-28 05:26:26 +00:00
fragginwagon 16c27a8cd7 ⚠️ Handle SFTP errors without capturing the error object in deploy script 2026-01-28 05:26:21 +00:00
fragginwagon b434e7f3ef 🚀 Update deployment script to build and deploy Vue 3 application with enhanced file transfer and Docker management 2026-01-28 05:24:44 +00:00
fragginwagon 8d59555b43 🚀 Simplify Dockerfile by removing build stage and directly copying pre-built assets 2026-01-28 05:24:16 +00:00
fragginwagon 02c5a9a9c1 🎨 Clean up code formatting and improve readability in deployment script 2026-01-28 05:24:11 +00:00
fragginwagon 2206191fd9 🔨 Add Vue 3 build process and dist directory transfer to deployment script 2026-01-28 05:24:06 +00:00
fragginwagon 6f6e666675 🗑️ Remove Pokedex Online app files including Dockerfile, README, docker-compose configuration, and index.html 2026-01-28 05:22:55 +00:00
fragginwagon df0651c6a5 🔄 Update import path for ProfessorPokeball component to reflect new location in shared directory 2026-01-28 05:21:08 +00:00
fragginwagon 0e0881607e 🔄 Update import path for ProfessorPokeball component 2026-01-28 05:21:02 +00:00
fragginwagon 223982b830 🗑️ Remove unused Pokeball and ProfessorPokeball components 2026-01-28 05:20:57 +00:00
fragginwagon 40f3f7887d 🗑️ Remove unused Pokeball and ProfessorPokeball components from the project 2026-01-28 05:20:42 +00:00
fragginwagon a95c6c83e1 🔄 Update import path for ProfessorPokeball component to reflect new location 2026-01-28 05:19:24 +00:00
fragginwagon 97a4519e4a 🗑️ Remove unused Pokeball and ProfessorPokeball components from the project 2026-01-28 05:19:14 +00:00
fragginwagon f5bf28415f Fix typo in Pokémon name in app description 2026-01-28 05:15:35 +00:00
fragginwagon 0f0d64ac01 ❤️ Clarify target audience as Pokémon Professors in the app description 2026-01-28 05:15:22 +00:00
fragginwagon 4d81ca8d8e 🎨 Change container background color to white 2026-01-28 05:15:04 +00:00
fragginwagon 2321ea9e38 🎨 Update container background color to a darker shade 2026-01-28 05:14:59 +00:00
fragginwagon 9406b62c94 🎨 Update container background color to red shade 2026-01-28 05:14:54 +00:00
fragginwagon 28331ec039 🎨 Correct color code formatting in ProfessorPokeball component 2026-01-28 05:14:33 +00:00
fragginwagon 0f5585d58c 🎨 Remove hardcoded color value in template 2026-01-28 05:14:28 +00:00
fragginwagon 471cf51030 🎨 Add red background color to the template 2026-01-28 05:14:22 +00:00
fragginwagon 71858aae53 🎨 Adjust formatting for better readability in component attributes 2026-01-28 05:12:09 +00:00
fragginwagon 84603dd4ab 🎨 Fix typo in attribute name and adjust formatting for readability 2026-01-28 05:12:04 +00:00
fragginwagon 4f121f61d1 🐛 Fix typo in ProfessorPokeball component attribute name 2026-01-28 05:11:59 +00:00
fragginwagon 44fd5feafe 🐛 Fix typo in ProfessorPokeball component attribute 2026-01-28 05:11:54 +00:00
fragginwagon b459f92e36 ✏️ Update description to clarify target audience from trainers to professors 2026-01-28 05:11:04 +00:00
fragginwagon c3ef3348e8 ✏️ Refine description text for clarity and conciseness 2026-01-28 05:10:54 +00:00
fragginwagon cd2e24adaf Update app description to emphasize utility for professors 2026-01-28 05:10:49 +00:00
fragginwagon afe8413cc5 📝 Update app description to reflect support for multiple applications 2026-01-28 05:10:42 +00:00
fragginwagon 586582da54 🎨 Refactor prop definitions to use explicit types and default values 2026-01-28 05:07:57 +00:00
fragginwagon 35ebd6cf32 🎨 Fix formatting in props definition for consistency 2026-01-28 05:07:12 +00:00
fragginwagon e74db72355 🎨 Simplify props definition formatting in ProfessorPokeball component 2026-01-28 05:07:07 +00:00
fragginwagon 75093f1daa 🎨 Refactor props definition and add inheritAttrs option in ProfessorPokeball component 2026-01-28 05:03:52 +00:00
fragginwagon fd45934b2a 🎨 Update ProfessorPokeball component to use inline styles for size and set SVG dimensions to 100% 2026-01-28 05:01:53 +00:00
fragginwagon 45d10af644 🎨 Update ProfessorPokeball component styling to center align with block display and auto margins 2026-01-28 05:00:48 +00:00
fragginwagon 6c39b9d956 🔄 Rename imported component for clarity 2026-01-28 04:58:48 +00:00
fragginwagon 0dc8f97601 🎨 Simplify SVG styling by replacing CSS class with inline binding and remove unused showTrademark prop 2026-01-28 04:56:51 +00:00
fragginwagon 3f1a896fcf 🎨 Remove unused SVG path for trademark from ProfessorPokeball component 2026-01-28 04:50:28 +00:00
fragginwagon 54536aaebd Add optional trademark path to SVG with conditional rendering 2026-01-28 04:50:18 +00:00
fragginwagon 21f87a81fe Add animation to ProfessorPokeball component 2026-01-28 04:50:08 +00:00
fragginwagon c9864a2566 🎨 Update Pokeball component to ProfessorPokeball with custom size, color, and trademark visibility options 2026-01-28 04:49:55 +00:00
fragginwagon e0d42b437f 🔄 Rename imported Pokeball component to ProfessorPokeball for clarity 2026-01-28 04:49:40 +00:00
fragginwagon e033e8985b 🎨 Remove unused SVG path for trademark icon in ProfessorPokeball component 2026-01-28 04:49:05 +00:00
fragginwagon dcf6bdd734 🎨 Format SVG and CSS code for improved readability and consistency 2026-01-28 04:46:20 +00:00
fragginwagon 4433cb02a8 🎨 Update ProfessorPokeball component styling and structure 2026-01-28 04:46:15 +00:00
fragginwagon a7fa3fd30c Add scripts for Pokedex website installation, development, build, and preview 2026-01-28 04:39:46 +00:00
fragginwagon 75b6b558c9 🔧 Update port mappings to use single quotes in docker-compose configuration 2026-01-28 04:37:55 +00:00
fragginwagon d73b4e5eca 🛠️ Update Docker configuration and documentation for Pokedex Online 2026-01-28 04:37:50 +00:00
fragginwagon ef42833ad3 Fix self-closing tag for consistency in HTML structure 2026-01-28 04:37:39 +00:00
fragginwagon fe641a92b0 🎨 Update styling and structure for improved UI/UX in Pokedex components and main application 2026-01-28 04:37:34 +00:00
fragginwagon bcbcb36630 🎨 Improve HTML formatting and update doctype declaration 2026-01-28 04:37:24 +00:00
fragginwagon 48cd7bff15 🎨 Update project configuration and structure for improved organization 2026-01-28 04:37:19 +00:00
fragginwagon 1beba26249 🗑️ Remove unused and archived files across multiple directories and update project dependencies in package files 2026-01-28 02:54:35 +00:00
fragginwagon 79d52f5d92 🗂️ Update workspace configuration and remove obsolete files related to "Las Vegas" and "thedomdomdomdom" 2026-01-27 03:48:14 +00:00
fragginwagon 9a0e324bd7 ✏️ Rename and update references for "Next Steps After A Store Is Sanctioned" to "Getting a Store Sanctioned" and add a step to the guide 2026-01-27 03:38:51 +00:00
fragginwagon e0c78474e1 📝 Add initial steps for organizing sanctioned store Play! sessions 2026-01-26 23:57:14 +00:00