-
v0.6.5 Stable
released this
2025-01-04 15:58:08 +00:00 | 1 commits to master since this releaseImproves start-minimized and start-on-login behavior, fixes Windows support, and upgrades to Tauri 2.2.0.
Previously, the start-minimized setting was global, i.e. if enabled, Creddy would always start minimized. However, this is probably not what most people want. Most of the time, you only want the application to start minimized if it's starting in the background, i.e. not via an explicit action you took. Any time you are manually launching the application, you probably want to see it. With this release, Creddy will now start minimized only when starting in the background, or if the user super-explicitly requests it by passing the
--minimized
option.Since most platforms allow the user to manage startup apps outside of the apps themselves, Creddy will also attempt to detect when its autostart configuration has been disabled from "outside" and update its own settings to match. On Windows this may not be fully reliable, however, as Windows allows the user to disable startup apps without completely removing them, which seems to mess up the detection.
Downloads
- Source Code (ZIP)
- Source Code (TAR.GZ)
-
creddy_0.6.5_amd64.AppImage
129 MiB
-
creddy_0.6.5_amd64.deb
8.0 MiB
-
creddy_0.6.5_x64_en-US.msi
9.7 MiB
-
v0.6.0 Stable
released this
2024-11-25 19:50:36 +00:00 | 10 commits to master since this releaseAdds support for Docker credentials via the Docker credential-helper protocol. Currently no mechanism for automatically adding
docker-credential-creddy
to$PATH
, so you will have to do that yourself. Example:#!/bin/bash creddy docker $@
Downloads
-
v0.4.7 Stable
released this
2024-02-07 21:03:12 +00:00 | 51 commits to master since this releaseCorrectly returns to Approve screen when unlock is canceled while there is an active request.
Downloads
-
v0.4.6 Stable
released this
2024-01-31 21:14:08 +00:00 | 53 commits to master since this release- Adds a configurable idle timeout (12 hours by default).
- Adds current application version to the bottom of the Settings screen.
Downloads
-
v0.4.5 Stable
released this
2024-01-23 18:58:39 +00:00 | 55 commits to master since this releaseAdds Version field to the response for
creddy get
when responding with base credentials.Downloads
-
v0.4.4 Stable
released this
2024-01-21 21:46:39 +00:00 | 56 commits to master since this release- Rework UI of approval screen
- Exit approval flow if request is abandoned early by the client
Downloads
-
v0.4.2 Stable
released this
2024-01-11 01:10:14 +00:00 | 58 commits to master since this releaseAdds a checkbox on the approval screen for whether to respond with long-lived credentials or not. This way the user can use long-lived credentials for a specific request even when they aren't directly responsible for calling the
creddy
executable, such as when working through an AWS SDK.Defaults to false unless the request specifically asks for long-lived credentials, in which case it defaults to true but shows a warning to the user.
Downloads
-
v0.4.1 Stable
released this
2023-11-09 22:25:20 +00:00 | 60 commits to master since this releaseGNOME has a really annoying "feature" that prevents applications from stealing focus and instead just pops up a notification saying "[Application] is ready." This is very painful in Creddy's case, because the whole point is that you want it to show up out of the blue whenever someone requests your AWS credentials.
Fortunately, GNOME doesn't prevent an application from grabbing focus if it was previously hidden (i.e. minimized to tray), so we can just hide and then immediately un-hide to dodge the focus-stealing prevention.
Downloads
-
v0.4.0 Stable
released this
2023-10-09 17:06:28 +00:00 | 64 commits to master since this releaseThis release replaces the HTTP-based credential provider with a process provider.
It also introduces CLI shortcuts: Any action for which there is a hotkey can also be invoked via
creddy shortcut <action>
. Currently the only actions defined areshow_window
andlaunch_terminal
.Downloads