Update with latest changes

This commit is contained in:
Evan Su 2022-06-30 23:54:58 -04:00 committed by GitHub
parent 216a07ee6c
commit 94d71bdd21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 8 deletions

View File

@ -419,7 +419,7 @@ func draw() {
modalId++
giu.Update()
}),
giu.Tooltip("Manage your keyfiles."),
giu.Tooltip("Manage keyfiles to use for encryption."),
giu.Style().SetDisabled(mode == "decrypt").To(
giu.Button("Create").Size(54, 0).OnClick(func() {
@ -492,7 +492,7 @@ func draw() {
giu.Row(
giu.Checkbox("Reed-Solomon", &reedsolo),
giu.Tooltip("Prevent file corruption by erasure coding (slow)."),
giu.Tooltip("Prevent file corruption with erasure coding."),
giu.Dummy(-170, 0),
giu.Checkbox("Delete files", &delete),
giu.Tooltip("Delete the input files after encryption."),

View File

@ -6,8 +6,8 @@ require (
github.com/HACKERALERT/clipboard v0.1.5-0.20220507233423-cccec4a4226a
github.com/HACKERALERT/crypto v0.0.0-20220508005928-a6d354b4bce5
github.com/HACKERALERT/dialog v0.0.0-20220508022504-af3bc34fe379
github.com/HACKERALERT/giu v0.5.7-0.20220508023132-9328216f8f59
github.com/HACKERALERT/imgui-go v1.12.1-0.20220508022827-caafd6b26a07
github.com/HACKERALERT/giu v0.5.7-0.20220625033920-09d00499b7a0
github.com/HACKERALERT/imgui-go v1.12.1-0.20220625032501-ccba9a3ad6fa
github.com/HACKERALERT/infectious v0.0.0-20220507232346-2b127b76a757
github.com/HACKERALERT/serpent v0.0.0-20210716182301-293b29869c66
github.com/HACKERALERT/zxcvbn-go v0.0.0-20220508022013-fa924b767f89

View File

@ -4,14 +4,14 @@ github.com/HACKERALERT/crypto v0.0.0-20220508005928-a6d354b4bce5 h1:nTOuBrqZHfhy
github.com/HACKERALERT/crypto v0.0.0-20220508005928-a6d354b4bce5/go.mod h1:wc+TkRIxPthhgcmH94G8okAtnodc6t+tlv+Q41TDj5s=
github.com/HACKERALERT/dialog v0.0.0-20220508022504-af3bc34fe379 h1:GR92LbksZ8zdbzQHf2dTI7e7P8Mjbdi5mSmQv2SK2Uw=
github.com/HACKERALERT/dialog v0.0.0-20220508022504-af3bc34fe379/go.mod h1:V0Gv8EvnwHTFk9TOZiHlYlXcUnVHoXJazNW0pVKZnkY=
github.com/HACKERALERT/giu v0.5.7-0.20220508023132-9328216f8f59 h1:Mp2UMZvdqXJj/PhtlSmGOU8WLaQCPM6FUQsPXp0zXDM=
github.com/HACKERALERT/giu v0.5.7-0.20220508023132-9328216f8f59/go.mod h1:6YYAQq3M8sb1d46CWyRrAlpU55hQ4XCvvuJfkaq9MVU=
github.com/HACKERALERT/giu v0.5.7-0.20220625033920-09d00499b7a0 h1:fifJATRJxy5a/vctxPs6LKaOu8kv4tO2XHgVgzWeO2A=
github.com/HACKERALERT/giu v0.5.7-0.20220625033920-09d00499b7a0/go.mod h1:xlfEv3JujiEB1Dukbw0lIgsFYMx/L0u5BwxEmSu/ixg=
github.com/HACKERALERT/gl v0.0.0-20220507232930-73af36e130d3 h1:JMAOkmVuuJKjFAVeK+P7i3F/bVSCTU1UUmaxaYTYs9Q=
github.com/HACKERALERT/gl v0.0.0-20220507232930-73af36e130d3/go.mod h1:ZUosVzfEKNGLMLk6aj9yo0FSAhWWsbTMjuzeIUXniB0=
github.com/HACKERALERT/glfw/v3.3/glfw v0.0.0-20220507233141-2c5dd2490d18 h1:BjHTW61wldpYJa7Hc3o2w/jPtv5K8is2Z9R73ru0iU8=
github.com/HACKERALERT/glfw/v3.3/glfw v0.0.0-20220507233141-2c5dd2490d18/go.mod h1:aP+FSN9tk1W3UsQisFWxRLQ4WOF7T3niq68UYw0B150=
github.com/HACKERALERT/imgui-go v1.12.1-0.20220508022827-caafd6b26a07 h1:vclH5b3lE6nh4tNFsGPuDQpHFaFZIaL7XEDXyfw8szQ=
github.com/HACKERALERT/imgui-go v1.12.1-0.20220508022827-caafd6b26a07/go.mod h1:4jQPNdhqpk31rzuc810mh9Lj9Jae8W0LH0aTiWxmioc=
github.com/HACKERALERT/imgui-go v1.12.1-0.20220625032501-ccba9a3ad6fa h1:YQ8mAqFJ2okdzkOGPNfyLiOF+PbTkUZViSBnV0pUnfM=
github.com/HACKERALERT/imgui-go v1.12.1-0.20220625032501-ccba9a3ad6fa/go.mod h1:4jQPNdhqpk31rzuc810mh9Lj9Jae8W0LH0aTiWxmioc=
github.com/HACKERALERT/infectious v0.0.0-20220507232346-2b127b76a757 h1:jRLxlm7hCrdkDimJCxAojjGBbyko0LL0Okpapp0B2p4=
github.com/HACKERALERT/infectious v0.0.0-20220507232346-2b127b76a757/go.mod h1:HvvOD2ve5ehdWJDDjGTq29W7kQQVR4GLcV3ngCQsUZ0=
github.com/HACKERALERT/mainthread v0.0.0-20211027212305-2ec9e701cc14 h1:DwWXverhu/dEsPM/GPykuHGh4SxW69DaGZL5t3fANG4=