Renamed to lowercase termscp

This commit is contained in:
veeso
2021-05-05 22:13:57 +02:00
parent 1ddbd0aa4e
commit c0eb98c3f9
11 changed files with 37 additions and 37 deletions

View File

@@ -41,7 +41,7 @@ pub mod sftp_transfer;
/// ## FileTransferProtocol
///
/// This enum defines the different transfer protocol available in TermSCP
/// This enum defines the different transfer protocol available in termscp
#[derive(PartialEq, std::fmt::Debug, std::clone::Clone, Copy)]
pub enum FileTransferProtocol {

View File

@@ -100,7 +100,7 @@ fn main() {
// Version
if matches.opt_present("v") {
eprintln!(
"TermSCP - {} - Developed by {}",
"termscp - {} - Developed by {}",
TERMSCP_VERSION, TERMSCP_AUTHORS,
);
std::process::exit(255);

View File

@@ -491,7 +491,7 @@ impl AuthActivity {
.with_borders(Borders::ALL, BorderType::Rounded, Color::Yellow)
.with_inverted_color(Color::Black)
.with_options(
Some(String::from("Quit TermSCP?")),
Some(String::from("Quit termscp?")),
vec![String::from("Yes"), String::from("No")],
)
.build(),
@@ -634,7 +634,7 @@ impl AuthActivity {
.with_foreground(Color::Cyan)
.build(),
)
.add_col(TextSpan::from(" Quit TermSCP"))
.add_col(TextSpan::from(" Quit termscp"))
.add_row()
.add_col(
TextSpanBuilder::new("<TAB>")

View File

@@ -1,6 +1,6 @@
//! ## Components
//!
//! `Components` is the module which contains the definitions for all the GUI components for TermSCP
//! `Components` is the module which contains the definitions for all the GUI components for termscp
/**
* MIT License