add user id pk to record with
Dependencies
- [2]
SWWE2R6Mdisplay basic repo stuff - [3]
W7IUT3ZVstart recording impl - [4]
A5YBC77Vrecord! - [5]
VCNKFNUFapp init test - [6]
UF5NJKAStest load repo - [7]
FL2ULDJNtest record - [8]
DXAYDIMQupdate to latest pijul - [9]
KWTBNTO3diffs selection and scrolling - [10]
WAOGSCOJvery nice refactor, wip adding channels logs - [11]
WH57EHNMupdate tests - [12]
AZ5D2LQUallow to set record description - [13]
IFQPVMBDerror handling for repo actions - [14]
UPWS6J3Bfilter to-record changes from selection - [15]
G5WLRXODadd screenshots for test - [16]
OLT666N4fix screenshot test to include status, fix failed test report - [17]
LLUIHLAPimprove MIME detection, rm dbg - [18]
TEDT26JQadd push and pull sub-menus - [19]
IQHXLIIUimprove enocoding detection, support images - [20]
YRGDFHABproject dir picker - [21]
MORKDJUEuse allowed actions binding for key subs - [22]
J3AD2D2Jimprove push and pull keys - [23]
NWJD6VM6mv libflowers libflorescence - [24]
VJYEVHL5update libpijul - [25]
I56UGW7Umake record test, fix log update - [26]
F6O6FGOJimprove diffs encoding detection - [27]
CALXOZXAflatten crates dir - [28]
WI2BVQ6Jrm client lib crate - [29]
YGZ3VCW4add push - [30]
YBJRDOTCmake all repo actions async - [31]
KQ3P3QRLupdate comments - [32]
HPSOAD4Rfix moved tracked file view - [33]
BGOQFXP7update pijul - [34]
3B75LKFNreplace panics with bails - [35]
EC3TVL4Xadd untracked files - [*]
6YZAVBWUInitial commit
Change contents
- replacement in libflorescence/src/testing.rs at line 86
repo::record(&internal, "Initialized".to_string(), None, skey, to_record).unwrap();repo::record(&internal,"Initialized".to_string(),None,skey,"ID".to_string(),to_record,).unwrap(); - replacement in libflorescence/src/repo.rs at line 8
use crate::identity::{PublicKey, SKey};use crate::identity::SKey; - edit in libflorescence/src/repo.rs at line 72
/// User ID public key. Note that this is different from a PK derived/// from SKid_pk: String, - edit in libflorescence/src/repo.rs at line 407
id_pk, - replacement in libflorescence/src/repo.rs at line 413
record(internal_state, msg, desc, sk, to_record)?;record(internal_state, msg, desc, sk, id_pk, to_record)?; - edit in libflorescence/src/repo.rs at line 676
id_pk: String, - replacement in libflorescence/src/repo.rs at line 709
let PublicKey { key: pk, .. } = sk.public_key();let authors = vec![Author(BTreeMap::from_iter([("key".to_string(), pk)]))];let authors =vec![Author(BTreeMap::from_iter([("key".to_string(), id_pk)]))]; - replacement in libflorescence/src/repo/test.rs at line 118
repo::record(&internal, msg.to_string(), None, skey, to_record).unwrap();repo::record(&internal,msg.to_string(),None,skey,"ID".to_string(),to_record,).unwrap(); - edit in inflorescence/src/main.rs at line 1767
let id_pk = user_id.public_key.key.clone(); - edit in inflorescence/src/main.rs at line 1774
id_pk,