SimpleList

May 12, 2026 · View on GitHub

English | 简体中文

simplelist

SimpleList is a OneDrive files index application developed using WinUI3.

Usage

Unzip and then double click

Release Flavors

Two package flavors are provided in GitHub Releases.

FlavorDescriptionTypical sizeBest for
PortableSelf-contained package. No preinstalled .NET runtime required.LargerEnd users who want zero setup
SlimFramework-dependent package. Requires matching .NET runtime/Windows App SDK runtime on target machine.SmallerUsers who care about download size

GitHub Releases now publish both flavors for each platform:

  • SimpleList-vVERSION-x64-Portable.zip
  • SimpleList-vVERSION-x64-Slim.zip

For Chinese documentation, see README_zh_CN.md.

Local Publish Examples

Portable (self-contained):

dotnet publish .\SimpleList\SimpleList.csproj -c Release -r win-x64 -p:PublishFlavor=Portable

Slim (framework-dependent):

dotnet publish .\SimpleList\SimpleList.csproj -c Release -r win-x64 -p:PublishFlavor=Slim

Validate CI Locally (Without Running on GitHub)

You can validate workflow logic locally before pushing.

1) Validate workflow YAML and action usage

Use actionlint:

docker run --rm -v "${PWD}:/repo" -w /repo rhysd/actionlint:latest

2) Simulate the publish matrix locally

Run all flavors and platforms with a local script:

$platforms = @("x64", "x86", "arm64")
$flavors = @("Portable", "Slim")
foreach ($p in $platforms) {
	foreach ($f in $flavors) {
		dotnet publish .\SimpleList\SimpleList.csproj -c Release -r "win-$($p.ToLower())" -p:Platform=$p -p:PublishFlavor=$f
	}
}

3) Verify release notes content generation locally

The workflow generates RELEASE_BODY.md and appends CHANGELOG.md. You can execute the same shell snippet locally (Git Bash/WSL) and inspect the output file before pushing.

Settings

Modify SimpleList/appsettings.json to customize the configuration.

Features

  • Index
  • Download
  • Share
  • Preview
  • Download progress
  • Upload
  • Automatic synchronization
  • Rename
  • Delete
  • Properties
  • Total usage
  • Convert to PDF
  • Open in new tab
  • Custom theme
  • Multiple accounts
  • i18n
  • Tools page

Screenshots(may not be the latest version)

HomePage CloudPage DrivePage CreateFolder GridLayout Download Sahre ImageViewing ToolsPage ShareCommunityLinkDetails DarkMode

Stargazers over time

Stargazers over time