Get the builds

Downloads

The latest build artifacts for each project, with quick install-and-run instructions.

Each project below links to the latest build artifacts published on GitHub. Pick the tab for your platform for a direct download and the short version of how to install and run it; the Source & build tab covers running it yourself. Every project also links to its full release page (always the newest build) and its README for the complete instructions.

Pokered Save Editor 2

A desktop save-file editor for Pokémon Red & Blue, built in Qt 6 (C++/QML): byte-exact save read/write, full team/box/item/randomiser editing, and an in-game font keyboard.

Active · alphav0.14.2-alpha (pre-release)

Alpha builds are unsigned, so Windows SmartScreen (and some Linux setups) may warn on first launch — that's expected, not a problem with the file.

The simplest way to get going on Windows — a standard installer. Recommended

↓ Download PokeredSaveEditor-0.14.2-alpha-windows-x64-setup.exe

  1. Download and run the installer.
  2. If SmartScreen warns, choose More info → Run anyway (the build is unsigned).
  3. Launch Pokered Save Editor from the Start menu.

No-install build — unzip and run in place.

↓ Download PokeredSaveEditor-0.14.2-alpha-windows-x64-portable.zip

  1. Download the .zip and extract it anywhere.
  2. Run PokeredSaveEditor.exe from the extracted folder.

Portable single-file build — no install, runs on most distros.

↓ Download PokeredSaveEditor-0.14.2-alpha-x86_64.AppImage

  1. Download the .AppImage, then make it executable and run it:
chmod +x PokeredSaveEditor-0.14.2-alpha-x86_64.AppImage
./PokeredSaveEditor-0.14.2-alpha-x86_64.AppImage

The full bundled tree (Qt libraries included), if you prefer a tarball.

↓ Download PokeredSaveEditor-0.14.2-alpha-linux-x64-portable.tar.gz

  1. Download and extract the archive:
tar -xzf PokeredSaveEditor-0.14.2-alpha-linux-x64-portable.tar.gz
./usr/bin/PokeredSaveEditor

Build it yourself with Qt 6 and CMake (Qt 6.8.3, Release config).

  1. Install Qt 6.8.3 and CMake.
  2. Clone, configure, and build the app target:
  3. The full build guide is in the project's README.
git clone https://github.com/junebug12851/pokered-save-editor-2.git
cd pokered-save-editor-2
cmake -S projects -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j --target PokeredSaveEditor

Pokered Save Editor

The predecessor to Pokered Save Editor 2 — a complete, stable save-file editor for Pokémon Red & Blue, built with Electron, Angular, and TypeScript. The recommended working tool until the Qt 6 rewrite reaches parity.

Released · stable · predecessorv2.0.1 (final — no further updates)

The predecessor editor (Electron). It is feature-complete and stable, but receives no further updates — these are its final release builds.

Portable Windows build — no install needed. Recommended

↓ Download Pokered.Save.Editor.Portable.win.exe

  1. Download the .exe and run it (approve any SmartScreen warning — it's unsigned).
  2. A .zip alternative is also attached to the release if you prefer to extract it yourself.

macOS disk image.

↓ Download Pokered.Save.Editor.mac.dmg

  1. Download and open the .dmg.
  2. Drag Pokered Save Editor into Applications, then launch it.
  3. If Gatekeeper blocks it, right-click the app → Open (it's unsigned).

Portable AppImage — a portable .tar.xz is also attached to the release.

↓ Download Pokered.Save.Editor.Setup.linux.i386.AppImage

  1. Download the .AppImage, then make it executable and run it:
chmod +x Pokered.Save.Editor.Setup.linux.i386.AppImage
./Pokered.Save.Editor.Setup.linux.i386.AppImage

An Electron + Angular + TypeScript app — run it from source with Node.

  1. Install Node.js, then clone and start it:
git clone https://github.com/junebug12851/pokered-save-editor.git
cd pokered-save-editor
npm install
npm start

Random AI Prompt

A JavaScript prompt generator for Stable Diffusion — controllable prompt generation, a web UI, and one-click image-to-animation export.

ReleasedRun from source (no prebuilt binaries)

This one is a JavaScript tool with a web UI — there are no packaged binaries to download; you run it from source with Node.

Download the source, or clone it, then start the web UI with Node. Recommended

↓ Download random-ai-prompt — source (.zip)

  1. Install Node.js (any recent version).
  2. Get the code (download the .zip above, or clone), install deps, and run:
  3. On Windows you can simply double-click webui.bat instead.
git clone https://github.com/junebug12851/random-ai-prompt.git
cd random-ai-prompt
npm install
node server

Browse the full source, the web app, and the docs in the repository.

  1. The README has the complete install, update, and usage guide.
  2. A modern React + Vite web app also lives under web-app/ (deployable to Netlify).
git clone https://github.com/junebug12851/random-ai-prompt.git

Direct download links point at a specific published build; the Release page link for each project always resolves to the newest release. For how the projects fit together, see the projects page and the documentation library.