Skip to content
Open
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
2f312af
fix: squash history because of broken rebase
oskardotglobal Sep 8, 2025
bc9fc5d
feat: doc .envrc parameters & allow overriding toolchain
oskardotglobal Sep 8, 2025
0740791
fix: typo in ci.yaml
oskardotglobal Sep 8, 2025
81cfe22
feat: add markdown license
oskardotglobal Sep 8, 2025
a25980e
fix(ci): use compatible toolchain action
oskardotglobal Oct 3, 2025
badf5c0
Merge branch 'feat-rewrite-api' of github.com:oskardotglobal/winapps …
oskardotglobal Oct 3, 2025
0f49aa9
feat: add setup
oskardotglobal Oct 4, 2025
858f790
feat: pin foreign action SHA
oskardotglobal Oct 4, 2025
bc49e92
fix: drop quickemu subcommand
oskardotglobal Oct 5, 2025
a3781a7
fix: don't deadlock on setup
oskardotglobal Oct 5, 2025
5e7cc1a
chore: address most coderabbit lints
oskardotglobal Oct 12, 2025
a33c5e3
chore: address more comments
oskardotglobal Oct 12, 2025
c0e6538
feat: upgrade packages & switch to 2024
oskardotglobal Oct 12, 2025
ad3634a
feat: simplify memory management
oskardotglobal Jan 3, 2026
37de6c1
feat: import compose.yaml from main
oskardotglobal Jan 3, 2026
3d24ee6
fix: properly support quoted commands
oskardotglobal Jan 3, 2026
354b738
feat: add support for changing rdp port
oskardotglobal May 4, 2026
f309012
feat: allow uninstalling apps
oskardotglobal May 4, 2026
7985ca6
feat: add support for rdp_scale
oskardotglobal May 15, 2026
8a50f29
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 9, 2026
f95a844
Merge remote-tracking branch 'upstream/rewrite' into feat-rewrite-api
oskardotglobal Jul 9, 2026
4cf6253
fix: clippy
oskardotglobal Jul 9, 2026
d01b960
fix: use reviewdog for clippy
oskardotglobal Jul 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .envrc.example
Comment thread
oskardotglobal marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# isIdea: whether to write the current rust toolchain into `.idea/workspace.xml`, defaults to false
# nixpkgs: the path to a nixpkgs checkout, defaults to a pinned version
# mkToolchain: a function taking a fenix instance and returning a toolchain, defaults to `fenix: fenix.complete`
use nix # \
# --arg isIdea true \
# --arg nixpkgs '<nixpkgs>' \
# --arg mkToolchain 'fenix: fenix.beta'
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[INSERT CONTACT METHOD].
<https://matrix.to/#/#winapps:matrix.org>.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
45 changes: 45 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Contribution Guidelines

Thank you for contributing to winapps! Before you can contribute, we ask some things of you:

- Please follow our Code of Conduct, the Contributor Covenant. You can find a copy in this repository or under <https://www.contributor-covenant.org>
- All Contributors have to sign a Developer Certificate of Origin, agreeing to license their contribution under the AGPLv3. You can find a copy of the DCO below or under <https://developercertificate.org>.
- Please follow code conventions enforced by `pre-commit`. To keep down CI usage, please run it locally before committing too.
See <https://pre-commit.com> for installation, then run `pre-commit install` inside the repository you cloned.

## Developer Certificate of Origin

Developer Certificate of Origin
Version 1.1

Copyright (C) 2004, 2006 The Linux Foundation and its contributors.

Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.


Developer's Certificate of Origin 1.1

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or

(b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or

(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.

(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
65 changes: 65 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: Bug Report
description: File a bug report.
labels: ["triage"]
body:
- type: markdown
attributes:
value: |
We cannot fix nor support all bugs caused by FreeRDP, especially on Wayland.
If you experience visual bugs, please open a discussion instead.

- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true

- type: input
id: freerdp
attributes:
label: Your FreeRDP version and where you got it from
placeholder: "FreeRDP 3.10 (Debian Backports)"
validations:
required: true

- type: input
id: distro
attributes:
label: Your Linux distribution and version
placeholder: "Debian Trixie"
validations:
required: true

- type: textarea
id: config
attributes:
label: Your `winapps.conf`
description: Please copy and paste your `winapps.conf`. Make sure to not include any sensitive data. This will be automatically formatted into code, so no need for backticks.
render: shell
validations:
required: true
Comment thread
oskardotglobal marked this conversation as resolved.

- type: textarea
id: logs
attributes:
label: Logs
description: Give the output of WinApps, FreeRDP etc. where / if applicable.
render: shell

- type: checkboxes
id: terms
attributes:
label: Terms
options:
- label: I am running the latest version.
required: true
- label: To the best of my knowledge, this is a bug and not a setup nor a FreeRDP problem.
required: true
- label: I have checked for duplicate issues.
required: true
- label: I agree to follow this project's Code of Conduct.
required: true
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Community Support
url: https://github.com/winapps-org/winapps/discussions
about: Get help with non-bug issues here. Please use this instead of filing bug reports.
57 changes: 0 additions & 57 deletions .github/workflows/build.yml
Comment thread
LDprg marked this conversation as resolved.

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Format and lint

on:
push:
branches: ["rewrite"]
pull_request:
branches: ["rewrite"]

permissions:
checks: write

jobs:
check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy

- uses: auguwu/clippy-action@1.4.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
50 changes: 50 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build container image

on:
push:
branches: [ "rewrite" ]
paths: [ "winapps-image/**" ]
workflow_dispatch:
schedule:
# See https://crontab.guru/monthly
- cron: 0 0 1 * *

permissions:
packages: write

env:
IMAGE_REGISTRY: ghcr.io
IMAGE_NAME: winapps-org/windows

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build image
id: build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.IMAGE_NAME }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
context: winapps-image
containerfiles: winapps-image/Containerfile

- name: Push image to GHCR
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build.outputs.image }}
tags: ${{ steps.build.outputs.tags }}
registry: ${{ env.IMAGE_REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
51 changes: 0 additions & 51 deletions .github/workflows/rust-clippy.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/rust.yml

This file was deleted.

9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Generated files
target/

# The library shouldn't decide about the exact versions of
# its dependencies, but let the downstream crate decide.
Cargo.lock
Comment thread
LDprg marked this conversation as resolved.
/result

# We don't want to commit IDE configuration files.
.idea/
winapps.iml
.vscode/
.direnv
.wakatime-project
.envrc
9 changes: 6 additions & 3 deletions .pre-commit-config.yaml
Comment thread
oskardotglobal marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ci:
skip: [clippy, cargo-check]

default_install_hook_types: [pre-commit, commit-msg]

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand All @@ -14,9 +16,10 @@ repos:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/winapps-org/pre-commit-rust
rev: v1.1
- repo: https://github.com/winapps-org/pre-commit-hooks
rev: v2.0.1
hooks:
- id: fmt
- id: rustfmt
- id: clippy
- id: cargo-check
- id: signoff
2 changes: 2 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
unstable_features = true
imports_granularity = "Crate"
Loading
Loading