1
0
miroir de https://github.com/maxgoedjen/secretive.git synchronisé 2026-03-26 02:57:22 +01:00

Merge branch 'main' into popovers

Cette révision appartient à :
Max Goedjen
2020-11-11 15:35:25 -08:00
révision 763b6ea57d
16 fichiers modifiés avec 61 ajouts et 46 suppressions

Voir le fichier

@@ -31,13 +31,13 @@
"size" : "128x128"
},
{
"filename" : "Icon 2@1x.png",
"filename" : "Mac Icon.png",
"idiom" : "mac",
"scale" : "1x",
"size" : "256x256"
},
{
"filename" : "Icon 2@2x.png",
"filename" : "Mac Icon@0.25x.png",
"idiom" : "mac",
"scale" : "2x",
"size" : "256x256"

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 24 KiB

Fichier binaire non affiché.

Avant

Largeur:  |  Hauteur:  |  Taille: 66 KiB

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 16 KiB

Fichier binaire non affiché.

Après

Largeur:  |  Hauteur:  |  Taille: 40 KiB

Voir le fichier

@@ -23,7 +23,7 @@ struct CreateSecretView<StoreType: SecretStoreModifiable>: View {
}
HStack {
Text("Name:")
TextField("Shhhhh", text: $name)
TextField("Shhhhh", text: $name).focusable()
}
HStack {
Toggle(isOn: $requiresAuthentication) {

Voir le fichier

@@ -176,6 +176,7 @@ struct SSHAgentSetupView: View {
bodyText: "Add this line to your shell config telling SSH to talk to Secret Agent when it wants to authenticate. Secretive can either do this for you automatically, or you can copy and paste this into your config file.",
buttonTitle: "I Added it Manually",
buttonAction: buttonAction) {
Link("If you're trying to set up a third party app, check out the FAQ.", destination: URL(string: "https://github.com/maxgoedjen/secretive/APP_CONFIG.md")!)
Picker(selection: $selectedShellInstruction, label: EmptyView()) {
ForEach(SSHAgentSetupView.controller.shellInstructions) { instruction in
Text(instruction.shell)