chore(client): rebrand ProjectDirs org to Pandoras-box #32
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "chore/rebrand-projectdirs-org-pandoras-box"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Replaces the upstream maintainer handle
Cyboruswith this fork's ownerPandoras-boxin the threedirectories::ProjectDirs::from("", "<org>", "forgejo-cli")calls:crates/fj-client/src/client_info.rs(OAuthclient_idslookup), andcrates/fj-client/src/keys.rs(KeyInfo::load+save).The
organizationargument is used differently per platform: Linux/XDG ignores it (paths derive from the application name only), so this is a no-op for the CI/runtime target. macOS uses{qualifier}.{org}.{app}and Windows uses{org}\{app}, so on those platforms this relocates the config/credential directory and existing installs would re-authenticate. No automated migration is included; the fork is early enough that macOS/Windows installs predating the rebrand are unlikely.The
https://codeberg.org/Cyborus/forgejo-api/issues/143URL comment incrates/fj/src/repo.rsis a legitimate reference to the upstreamforgejo-apicrate and is intentionally left unchanged.Closes FJ-29.
Replace the upstream maintainer handle "Cyborus" with this fork's owner "Pandoras-box" in the three `directories::ProjectDirs::from("", "<org>", "forgejo-cli")` calls (client_info.rs, keys.rs load + save). On Linux/XDG the organization segment is ignored so this is a no-op for the CI/runtime target; on macOS and Windows it relocates the config/credential directory, so existing installs on those platforms re-authenticate. The forgejo-api issue URL comment in repo.rs is a real upstream reference and is left unchanged. #FJ-29