Compare commits

..

No commits in common. "89a636589d3eceb2dcf7caddad84d773f9a494c7" and "23a417a9f9bab400e1d724483af786ffaa453eb3" have entirely different histories.

2 changed files with 8 additions and 6 deletions

View file

@ -6,7 +6,7 @@
#![allow(clippy::cast_possible_wrap)] #![allow(clippy::cast_possible_wrap)]
#![allow(clippy::cast_sign_loss)] // it should only be positive anyway #![allow(clippy::cast_sign_loss)] // it should only be positive anyway
use chrono::{DateTime, Local, SubsecRound, Timelike}; use chrono::{Date, DateTime, Local, SubsecRound, Timelike};
use clap::Parser; use clap::Parser;
use libpt::cli::args::HELP_TEMPLATE; use libpt::cli::args::HELP_TEMPLATE;
use libpt::cli::clap::ArgGroup; use libpt::cli::clap::ArgGroup;
@ -70,6 +70,8 @@ pub struct Clock {
pub(crate) last_reset: Option<DateTime<Local>>, pub(crate) last_reset: Option<DateTime<Local>>,
#[clap(skip)] #[clap(skip)]
pub(crate) did_notify: bool, pub(crate) did_notify: bool,
#[clap(skip)]
pub(crate) started_at: DateTime<Local>,
} }
impl Clock { impl Clock {

View file

@ -27,12 +27,12 @@ pub struct Data {
impl Data { impl Data {
pub fn new(timebar_type: TimeBarLength) -> Self { pub fn new(timebar_type: TimeBarLength) -> Self {
let mut this = Self { let mut this = Self {
now: [DateTime::default(); 2], now: [Default::default(); 2],
fdate: [String::new(), String::new()], fdate: ["".to_string(), "".to_string()],
ftime: [String::new(), String::new()], ftime: ["".to_string(), "".to_string()],
timebar_ratio: [Option::default(); 2], timebar_ratio: [Default::default(); 2],
started_at: Local::now(), started_at: Local::now(),
idx: usize::default(), idx: Default::default(),
timebar_type, timebar_type,
}; };