show error traces

tzemanovic
Feb 16, 2026, 10:10 AM
YVPFT7XIRBDWBF2WAAYPY5HBFPWN5EYOUG2LQFROHA2VRAUUQYUAC

Dependencies

  • [2] YBJRDOTC make all repo actions async
  • [3] Y6LXBCJB update toolchain and rust edition
  • [4] OQ6HSAWH show record log
  • [5] ONRCENKT rm unnecessary state from repo's internal state
  • [6] 23SFYK4Q big view refactor into a new crate
  • [7] XSZZB47U refactor stuff into lib
  • [8] 3BK22XE5 add a test for hover btn and more refactors
  • [9] IFQPVMBD error handling for repo actions
  • [10] FU6P5QLG indicate when a file is a dir with appended '/'
  • [11] C3OS2JJ6 clear cache on saving record & refresh
  • [12] BJ3CYLUT allow to reset changed file
  • [13] IQHXLIIU improve enocoding detection, support images
  • [14] LPSUBGUB add projects picker
  • [15] L3COZCOY improve error messages
  • [16] OJPGHVC3 entire log!
  • [17] EC3TVL4X add untracked files
  • [18] WAOGSCOJ very nice refactor, wip adding channels logs
  • [19] 5O4FWCFP add tests to_record selection and improve it
  • [20] UTDTZCTX pull+push status, add info reports
  • [21] SWWE2R6M display basic repo stuff
  • [22] 4WO3ZJM2 show untracked files' contents
  • [23] YGZ3VCW4 add push
  • [24] IOXNOVX2 allow to initiate a new repo
  • [*] 6YZAVBWU Initial commit

Change contents

  • replacement in inflorescence/src/main.rs at line 46
    [2.5062][3.195:268]()
    panic!("invalid `{LOG_ENV}` environment variable {err}")
    [2.5062]
    [2.5139]
    panic!("invalid `{LOG_ENV}` environment variable {err:?}")
  • replacement in inflorescence/src/main.rs at line 1524
    [14.24273][15.71:149]()
    let msg = format!("Failed to refresh repository with {err}");
    [14.24273]
    [15.149]
    let msg = format!("Failed to refresh repository with {err:?}");
  • replacement in inflorescence/src/main.rs at line 1532
    [14.24402][15.197:275]()
    let msg = format!("Failed to add untracked file with {err}");
    [14.24402]
    [15.275]
    let msg = format!("Failed to add untracked file with {err:?}");
  • replacement in inflorescence/src/main.rs at line 1540
    [14.24531][15.323:400]()
    let msg = format!("Failed to remove added file with {err}");
    [14.24531]
    [15.400]
    let msg = format!("Failed to remove added file with {err:?}");
  • replacement in inflorescence/src/main.rs at line 1551
    [15.483][15.483:549]()
    "Failed to get diff of change {} with {err}",
    [15.483]
    [15.549]
    "Failed to get diff of change {} with {err:?}",
  • replacement in inflorescence/src/main.rs at line 1561
    [14.24985][15.664:734]()
    let msg = format!("Failed to load a log with {err}");
    [14.24985]
    [15.734]
    let msg = format!("Failed to load a log with {err:?}");
  • replacement in inflorescence/src/main.rs at line 1571
    [15.817][15.817:892]()
    "Failed to load a log of channel {channel} with {err}"
    [15.817]
    [15.892]
    "Failed to load a log of channel {channel} with {err:?}"
  • replacement in inflorescence/src/main.rs at line 1588
    [15.1028][15.1028:1101]()
    "Failed to push to channel {channel} with {err}"
    [15.1028]
    [15.1101]
    "Failed to push to channel {channel} with {err:?}"
  • replacement in inflorescence/src/main.rs at line 1609
    [15.1263][15.1263:1338]()
    "Failed to pull from channel {channel} with {err}"
    [15.1263]
    [15.1338]
    "Failed to pull from channel {channel} with {err:?}"