This is a synchronized fork of the dufs repository.
The primary purpose of this repository is to automatically build the latest code from the upstream main branch and publish the compiled artifacts to GitHub Releases. This allows users to easily access and test the latest features.
- A scheduled GitHub Actions workflow, based on the implementation from the lobe-chat project, periodically checks the upstream repository's
mainbranch for new commits. - When new commits are detected, they are synced to the
upstream-mainbranch in this repository. - A push to the
upstream-mainbranch triggers the build and release workflow, which compiles binaries for all supported platforms. - Once the build is successful, a new release is automatically created with the compiled artifacts.
Compared to the official releases, this repository provides an additional binary for the *-win7-windows-msvc target in its GitHub Releases. This build is compiled using the Nightly Rust toolchain to enable support for this specific target.
Before using any files published in this repository, please be aware of the following:
-
Builds are from a development branch: All builds are based directly on the upstream repository's
mainbranch. This means you are downloading a version that may contain new features or potential bugs that have not been thoroughly tested. Please use with caution in production environments. -
Risks associated with the
*-win7-windows-msvcbuild:Please be aware that
*-win7-windows-msvcis a Tier 3 target, which means it is not officially supported by the Rust team and may not be guaranteed to work. Additionally, using a nightly toolchain comes with its own risks, as it can be unstable and introduce breaking changes at any time.
You can find all automated builds on the Releases page of this repository.
All source code is from the dufs repository. Full credit goes to its original author(s) and contributors.
The GitHub Actions workflow for syncing with the upstream repository is adapted from the excellent work done by the lobe-chat project.