Add version check system

This commit is contained in:
2022-10-18 08:58:36 +02:00
parent 915426849b
commit eea2ecbf63
23 changed files with 204 additions and 26 deletions

View File

@ -1,6 +1,6 @@
use std::fmt::Display;
use crate::constants::HIGHLIGHT_COLOR;
use crate::consts::HIGHLIGHT_COLOR;
use tui::buffer::Buffer;
use tui::layout::Rect;
use tui::style::{Color, Style};

View File

@ -1,4 +1,4 @@
use crate::constants::HIGHLIGHT_COLOR;
use crate::consts::HIGHLIGHT_COLOR;
use std::fmt::Display;
use tui::buffer::Buffer;
use tui::layout::Rect;

View File

@ -1,6 +1,6 @@
use std::fmt::Display;
use crate::constants::HIGHLIGHT_COLOR;
use crate::consts::HIGHLIGHT_COLOR;
use tui::buffer::Buffer;
use tui::layout::Rect;
use tui::style::*;