{"id":13760156,"url":"https://github.com/Admiral-Fish/PokeFinder","last_synced_at":"2025-05-10T10:31:43.524Z","repository":{"id":37285846,"uuid":"94029373","full_name":"Admiral-Fish/PokeFinder","owner":"Admiral-Fish","description":"Cross platform Pokémon RNG tool","archived":false,"fork":false,"pushed_at":"2024-11-07T00:55:59.000Z","size":29113,"stargazers_count":314,"open_issues_count":25,"forks_count":76,"subscribers_count":21,"default_branch":"master","last_synced_at":"2024-11-07T01:41:18.281Z","etag":null,"topics":["ds","gameboy","gamecube","pokemon","rng"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Admiral-Fish.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-06-11T20:15:46.000Z","updated_at":"2024-11-02T05:02:42.000Z","dependencies_parsed_at":"2023-12-16T01:45:15.990Z","dependency_job_id":"520d8d44-e3c7-436e-b49e-a3cca100bb5f","html_url":"https://github.com/Admiral-Fish/PokeFinder","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Admiral-Fish%2FPokeFinder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Admiral-Fish%2FPokeFinder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Admiral-Fish%2FPokeFinder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Admiral-Fish%2FPokeFinder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Admiral-Fish","download_url":"https://codeload.github.com/Admiral-Fish/PokeFinder/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224949710,"owners_count":17397217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ds","gameboy","gamecube","pokemon","rng"],"created_at":"2024-08-03T13:01:04.387Z","updated_at":"2024-11-16T17:30:46.866Z","avatar_url":"https://github.com/Admiral-Fish.png","language":"C++","funding_links":[],"categories":["C++"],"sub_categories":[],"readme":"# PokéFinder\n\nJoin the PokéFinder Discord server to talk about development and contribute.\n\n[![PokéFinder](https://discordapp.com/assets/07dca80a102d4149e9736d4b162cff6f.ico)](https://discord.gg/XmgQF9X)\n\nThis will be a RNG Tool for all main Pokémon games generations 3-8. It currently supports generations 3/4 and parts of generation 5/8.\n\n# Download\n\n[Latest Official Release](https://github.com/Admiral-Fish/PokeFinder/releases/latest)\n\n[Latest Nightly Build](https://github.com/Admiral-Fish/PokeFinder/actions)\n\n# Features\nGen 3\n- Egg\n- GameCube\n- IDs\n- Static\n- Wild\n\nGen 4\n- Egg\n- Event\n- IDs\n- Static\n- Wild\n\nGen 5\n- Dream Radar\n- Egg\n- Event\n- Hidden Grotto\n- IDs\n\nGen 8\n- Egg\n- Event\n- IDs\n- Raid\n- Static\n- Underground\n- Wild\n\n# Supported Platforms\n\nWindows\n- Windows 10\n- Windows 11\n\nMacOS\n- MacOS Ventura\n- MacOS Sonoma\n- MacOS Sequoia\n\nLinux\n- Ubuntu 22.04\n- Ubuntu 24.04\n\nQt\n- 6.8 or newer\n\n# Installing\n\nWindows\n- Install the [Microsoft Visual C++ Redistributable](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads)\n- Download the win zip folder from the [releases page](https://github.com/Admiral-Fish/PokeFinder/releases/latest)\n- Extract PokéFinder from the zip folder\n\nMacOS\n- Download the macos zip folder from the [releases page](https://github.com/Admiral-Fish/PokeFinder/releases/latest)\n- Extract PokéFinder from the zip folder\n\nLinux\n- Install Qt 6\n  - [Qt website](https://www.qt.io/download)\n  - sudo apt install qt6-base-dev\n- Download the linux zip folder from the [releases page](https://github.com/Admiral-Fish/PokeFinder/releases/latest)\n- Extract PokéFinder from the zip folder\n\n# Building\n\nWindows\n- Install the dependencies\n  - [Qt 6](https://www.qt.io/download)\n  - [Build tools for Visual Studio](https://visualstudio.microsoft.com/downloads/)\n- Build\n  - git submodule update\n  - mkdir build\n  - cd build\n  - cmake -G\"NMake Makefiles\" -DCMAKE_BUILD_TYPE=RELEASE ../\n  - cmake --build .\n- Bundle\n  - mk PokeFinder-windows\n  - move release\\PokeFinder.exe PokeFinder-windows\\PokeFinder.exe \n  - windeployqt --release --no-translations --no-angle --no-plugins --no-opengl-sw PokeFinder.exe\n  - xcopy /I \"QTPath\"\\plugins\\platforms\\qwindows.dll PokeFinder-windows\\platforms\\\n  - xcopy /I \"QTPath\"\\plugins\\styles\\qwindowsvistastyle.dll PokeFinder-windows\\styles\\\n\nMacOS\n- Install the dependencies\n  - Qt 6 ([brew](https://formulae.brew.sh/formula/qt) or the [Qt website](https://www.qt.io/download))\n- Build\n  - git submodule update\n  - mkdir build\n  - cd build\n  - PATH=\"PATH=$PATH:$HOME/Qt/6.8/macos/bin\" cmake -G\"Unix Makefiles\" -DCMAKE_BUILD_TYPE=RELEASE ../\n    - Replace Qt path/version as necessary\n  - cmake --build .\n- Bundle\n  - macdeployqt PokeFinder.app -dmg -verbose=2\n\nLinux\n- Install the dependencies\n  - Qt 6\n    - [Qt website](https://www.qt.io/download)\n    - sudo apt install qt6-base-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools\n  - sudo apt install build-essential libgl1-mesa-dev\n- Build\n  - git submodule update\n  - mkdir build\n  - cd build\n  - cmake -G\"Unix Makefiles\" -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_PREFIX_PATH=$HOME/Qt/6.8/gcc_64 ../\n    - Replace Qt path/version as necessary\n  - cmake --build .\n\n# Credits (in no particular order)\n- Bill Young, Mike Suleski, and Andrew Ringer for [RNG Reporter](https://github.com/Slashmolder/RNGReporter)\n- chiizu for [PPRNG](https://github.com/chiizu/PPRNG)\n- wwwwwwzx for [3DSRNG Tool](https://github.com/wwwwwwzx/3DSRNGTool)\n- The PokemonRNG team for various contributions and research [zaksabeast](https://github.com/zaksabeast), [EzPzstreamz](https://github.com/SteveCookTU), [Shiny_Sylveon](https://github.com/ShinySylveon04), [Vlad](https://github.com/RichardPaulAstley), [Real96](https://github.com/Real96)\n- Other great people for various help and research ([OmegaDonut](https://github.com/OmegaDonut), [Bond697](https://github.com/Bond697), [Kaphotics](https://github.com/kwsch), [SciresM](https://github.com/SciresM), Zari, amab, Marin, [Lean](https://github.com/Leanny), etc)\n- Sans for initial GUI design\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAdmiral-Fish%2FPokeFinder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAdmiral-Fish%2FPokeFinder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAdmiral-Fish%2FPokeFinder/lists"}