Updated picard and qr things

This commit is contained in:
2026-01-30 21:03:52 +00:00
parent 9f2cc5f6ec
commit b6a03c6303
5 changed files with 8 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
$if2(%albumartist%,%artist%)/ $if2(%albumartist%,%artist%)/
$if(%albumartist%,$if(%date%,$replace(%date%,-,.) - )%album%/,) $if(%albumartist%,$if(%originaldate%,$replace(%originaldate%,-,.) - )%album%/,)
$if($gt(%totaldiscs%,1),$if($gt(%totaldiscs%,9),$num(%discnumber%,2),%discnumber%)-,)$if($and(%albumartist%,%tracknumber%),$num(%tracknumber%,2) ,)$if(%_multiartist%,%artist% - ,)%title% $if($gt(%totaldiscs%,1),$if($gt(%totaldiscs%,9),$num(%discnumber%,2),%discnumber%)-,)$if($and(%albumartist%,%tracknumber%),$num(%tracknumber%,2) ,)$if(%_multiartist%,%artist% - ,)%title%

View File

@@ -36,7 +36,13 @@ impl CryptoInvoice for MoneroInvoice {
} }
fn validate(self) -> bool { fn validate(self) -> bool {
unimplemented!(); // TODO - actually do this properly - I think there's a checksum to check
// and should check the first chars are 4 or 8... and some more things
// probably only supper standard addresses too
if self.address.len() != 95 {
return false;
}
true
} }
fn address(self) -> String { fn address(self) -> String {
self.address self.address

0
scryfall_deser/scripts/search_with_rofi.sh Executable file → Normal file
View File

0
scryfall_deser/scripts/search_with_rofi_with_args.sh Executable file → Normal file
View File

0
scryfall_deser/scripts/update_with_rofi.sh Executable file → Normal file
View File