diff --git a/Cargo.toml b/Cargo.toml index cbb2800..e19e956 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,11 @@ [package] name = "tkd-scoreboard" -version = "2.0.2" +version = "3.0.0" edition = "2021" -authors = ["irzinfante "] +authors = ["irzinfante "] repository = "https://github.com/irzinfante/tkd-scoreboard/" license = "GPL-3.0" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +rust-version = "1.73.0" [dependencies] fltk = { version = "^1.2", features = ["fltk-bundled"] } diff --git a/README.md b/README.md index 530e4cb..fba09c9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # tkd-scoreboard -[![rust](https://img.shields.io/badge/rust-2021-dea584)](https://doc.rust-lang.org/edition-guide/rust-2021/index.html) +[![rust](https://img.shields.io/badge/rust-1.73.0-dea584)](https://releases.rs/docs/1.73.0/) [![fltk-rs](https://img.shields.io/badge/fltk-%5E1.2-6f71b5)](https://crates.io/crates/fltk) [![fltk-rs](https://img.shields.io/badge/chrono-0.2.16-9978a3)](https://crates.io/crates/chrono) [![fltk-rs](https://img.shields.io/badge/directories-4.0.1-b57d96)](https://crates.io/crates/directories) @@ -47,7 +47,7 @@ Put the Unix-like binary from releases downloads in `~/.local/bin` (remember to ## License -Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez iker@irzinfante.eu +Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez iker@irzinfante.dev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. diff --git a/src/common/labels.rs b/src/common/labels.rs index 33f17cf..68534a5 100644 --- a/src/common/labels.rs +++ b/src/common/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/common/mod.rs b/src/common/mod.rs index 12adaac..4ad8cea 100644 --- a/src/common/mod.rs +++ b/src/common/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/constants/mod.rs b/src/constants/mod.rs index 9c8d832..7710f8f 100644 --- a/src/constants/mod.rs +++ b/src/constants/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ pub const PLUS_MOMDOLLYEO_OLGUL: &'static str = "image/svg+xml"; // Copyright line -pub const COPYRIGHT: &'static str = "Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez "; +pub const COPYRIGHT: &'static str = "Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez "; // Date formats pub const DATE_FORMAT_STR: &'static str = "%Y/%m/%d %H:%M:%S"; diff --git a/src/contest_winner/buttons.rs b/src/contest_winner/buttons.rs index a4518d4..bd8573d 100644 --- a/src/contest_winner/buttons.rs +++ b/src/contest_winner/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/contest_winner/labels.rs b/src/contest_winner/labels.rs index 767ddcf..f73c82d 100644 --- a/src/contest_winner/labels.rs +++ b/src/contest_winner/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/contest_winner/mod.rs b/src/contest_winner/mod.rs index 8251146..20593a7 100644 --- a/src/contest_winner/mod.rs +++ b/src/contest_winner/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/controls/buttons.rs b/src/controls/buttons.rs index c61f257..250819a 100644 --- a/src/controls/buttons.rs +++ b/src/controls/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/controls/mod.rs b/src/controls/mod.rs index 6db7e4f..9e79462 100644 --- a/src/controls/mod.rs +++ b/src/controls/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/data/groups.rs b/src/data/groups.rs index 47bebf2..eaa6ebb 100644 --- a/src/data/groups.rs +++ b/src/data/groups.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/data/mod.rs b/src/data/mod.rs index 9dde36a..d3ea409 100644 --- a/src/data/mod.rs +++ b/src/data/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/display/labels.rs b/src/display/labels.rs index 1405d5a..8603018 100644 --- a/src/display/labels.rs +++ b/src/display/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/display/mod.rs b/src/display/mod.rs index 3b5174d..563b5ba 100644 --- a/src/display/mod.rs +++ b/src/display/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/end_contest/buttons.rs b/src/end_contest/buttons.rs index f069e24..a701be0 100644 --- a/src/end_contest/buttons.rs +++ b/src/end_contest/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/end_contest/labels.rs b/src/end_contest/labels.rs index fd18517..5131e68 100644 --- a/src/end_contest/labels.rs +++ b/src/end_contest/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/end_contest/mod.rs b/src/end_contest/mod.rs index 2e4836f..f5c2c75 100644 --- a/src/end_contest/mod.rs +++ b/src/end_contest/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/enums/mod.rs b/src/enums/mod.rs index fa09c3d..3f30948 100644 --- a/src/enums/mod.rs +++ b/src/enums/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/lib.rs b/src/lib.rs index 1a2f556..47c456a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/main.rs b/src/main.rs index c204878..4fcf5f0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/medical_timeout/buttons.rs b/src/medical_timeout/buttons.rs index 160116f..d2886c0 100644 --- a/src/medical_timeout/buttons.rs +++ b/src/medical_timeout/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/medical_timeout/labels.rs b/src/medical_timeout/labels.rs index 6d63696..ae8e32b 100644 --- a/src/medical_timeout/labels.rs +++ b/src/medical_timeout/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/medical_timeout/mod.rs b/src/medical_timeout/mod.rs index 146de1f..6814e74 100644 --- a/src/medical_timeout/mod.rs +++ b/src/medical_timeout/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/screen/labels.rs b/src/screen/labels.rs index d2abc54..9c2805b 100644 --- a/src/screen/labels.rs +++ b/src/screen/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/screen/mod.rs b/src/screen/mod.rs index 0f405bf..f619d39 100644 --- a/src/screen/mod.rs +++ b/src/screen/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/settings/buttons.rs b/src/settings/buttons.rs index 7744bda..8c73df5 100644 --- a/src/settings/buttons.rs +++ b/src/settings/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/settings/inputs.rs b/src/settings/inputs.rs index 36c9183..368ef2b 100644 --- a/src/settings/inputs.rs +++ b/src/settings/inputs.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/settings/labels.rs b/src/settings/labels.rs index d08025c..ea08ef0 100644 --- a/src/settings/labels.rs +++ b/src/settings/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/settings/mod.rs b/src/settings/mod.rs index f02c774..3374d32 100644 --- a/src/settings/mod.rs +++ b/src/settings/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/superiority_decision/buttons.rs b/src/superiority_decision/buttons.rs index 130cba2..22fbfa2 100644 --- a/src/superiority_decision/buttons.rs +++ b/src/superiority_decision/buttons.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/superiority_decision/labels.rs b/src/superiority_decision/labels.rs index 99051f7..9afda7b 100644 --- a/src/superiority_decision/labels.rs +++ b/src/superiority_decision/labels.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/superiority_decision/mod.rs b/src/superiority_decision/mod.rs index a28d1e4..47cd038 100644 --- a/src/superiority_decision/mod.rs +++ b/src/superiority_decision/mod.rs @@ -1,6 +1,6 @@ /** * Scoreboard program for taekwondo competition - * Copyright (C) 2022-2023 Iker Ruiz de Infante Gonzalez + * Copyright (C) 2022-2024 Iker Ruiz de Infante Gonzalez * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by