Mark Yen
Mark Yen
It seems like the OneTrust cookie banner loads on every page, even if the user has previously accepted the cookies. Steps to reproduce: - Click on any of the ?◌⃝...
[`rdconfig.GetConnectionInfo()`](https://github.com/rancher-sandbox/rancher-desktop/blob/5211133a1180064ae835c3bb155b7d6f65b4d6a3/src/go/rdctl/pkg/config/config.go#L84) should return a specific error if the default connection info is not available (i.e. RD is not running), so that it's easier to detect from the callers. _Originally posted...
Currently, we just look for the end of modified section marker when checking to see if we need to write to the hosts file (in foreign WSL distros). This will...
Switch to the new qemu packaging method which doesn't include lima, since we now use separate lima releases. Note that this is currently pulling from my fork, hence this is...
This re-implements the download retry logic for post-install downloads (lima-alpine images, etc.) so that we can attempt to retry harder when things go wrong (in particular, if we end up...
This implements a remark plugin that scans for all images using URLs starting with `rd-versioned-asset://` and replace it with a versioned S3 URL in the form of `https://suse-rancher-media.s3.amazonaws.com/desktop/v1.23` so that...
Version: check-spelling 0.0.25 We're currently running `check-spelling` as a script, per the [documentation](https://docs.check-spelling.dev/Feature:-Run-locally#runnable-script), as part of a local linting step (before we push and run the same in CI). When...
### What is the problem you're trying to solve The `compose` specification contains a [`dockerfile_inline`](https://github.com/compose-spec/compose-spec/blob/main/build.md#dockerfile_inline) feature that is used instead of an external `dockerfile`. Currently this is not supported in...
This changes waiting for requirements (e.g. ssh) to retry every second instead of every ten; this can help with startup speed when they are actually met shortly after the previous...
When using [exclude files](https://docs.check-spelling.dev/Configuration-Examples:-excludes.html) (i.e. `.github/actions/spelling/excludes.txt`), blank lines should be skipped as otherwise it would cause all files to be excluded. Relevant code: https://github.com/check-spelling/check-spelling/blob/5b5ee6628b48ed6b60c0da547a51755cdc3b9f31/lib/CheckSpelling/Exclude.pm#L19-L24 In addition to `next if /^#/;`,...