Portable version of Floorp browser for Windows. Run it from any location without installation.
Floorp Portable is packaged using the Portapps framework. It allows you to run Floorp from any location, including USB drives, without leaving traces on the host computer.
- Download the latest version from the releases page
- Extract the archive to any location (e.g., USB drive)
- Run
floorp-portable-win64.exe
- Run Floorp without installation
- All user data stored in the application directory
- No registry changes or system-wide settings
- Easily move between computers
This repository uses GitHub Actions for Continuous Integration and Deployment:
-
Build Workflow (.github/workflows/build.yml)
- Builds Floorp Portable automatically on tag push or manual trigger
- Creates GitHub releases with the packaged portable app
-
Version Check Workflow (.github/workflows/check-update.yml)
- Runs every 12 hours to check for new Floorp versions
- Creates a PR to update the version when a new version is detected
- Can trigger an automatic build of the new version
- Go to Actions โ build workflow โ Run workflow
- Enter the Floorp version number (e.g., 11.26.0)
- When the workflow completes, find the draft release in the Releases section
- Review and publish the release
To distribute Floorp Portable on the official Floorp website:
- Add links to the GitHub releases
- Alternatively, set up a workflow that uploads the built artifacts to your web server
- Add integration with the website's CMS to automatically update download links
Sample HTML for your website:
<div class="download-section">
<h2>Floorp Portable</h2>
<p>Run Floorp from any location without installation</p>
<a
href="https://github.com/Floorp-Projects/Floorp-Portable-v2/releases/latest/download/floorp-portable-win64-latest.7z"
class="download-button"
>
Download Floorp Portable
</a>
<p class="version-info">
Latest version: <span id="portable-version">11.26.0</span>
</p>
</div>
- Go 1.24+
- Java 11+
- Apache Ant 1.10+
- Node.js 20+
- Clone this repository
- Clone the Portapps repository in a parallel directory
git clone https://github.com/portapps/portapps.git ../portapps
- Run the build process:
ant release -Dcore.dir=../portapps
- Find the packaged app in the
bin/release
directory
Mozilla Public License 2.0 See LICENSE
for more details.
- Floorp Browser by Ablaze
- Portapps framework by CrazyMax