From 3d51a4b7435c9f91ace95cb72bcd452970f15cdb Mon Sep 17 00:00:00 2001 From: Mylloon Date: Mon, 18 Sep 2023 18:46:50 +0200 Subject: [PATCH] Update branding --- Cargo.lock | 4 ++-- Cargo.toml | 8 ++++---- README.md | 26 ++++++++++++-------------- src/info.rs | 2 +- 4 files changed, 19 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d9d672..ff6900f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,8 +159,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" [[package]] -name = "cal8tor" -version = "0.4.5" +name = "cal7tor" +version = "0.5.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index e15e8fc..e4be2d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] -name = "cal8tor" -version = "0.4.5" +name = "cal7tor" +version = "0.5.0" authors = ["Mylloon"] edition = "2021" -description = "Extractor of the calendar of the IT degree of university Paris 8" +description = "Timetable extractor for the Paris Cité master's degree in IT" readme = "README.md" -repository = "https://git.kennel.ml/Anri/cal8tor" +repository = "https://git.mylloon.fr/Anri/cal7tor" keywords = ["scrape", "calendar"] publish = false license = "AGPL-3.0-or-later" diff --git a/README.md b/README.md index 6b55aef..87b1af2 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,14 @@ -# cal8tor • *cal*endar P*8* extrac*tor* +# cal7tor • *cal*endar P*7* extrac*tor* -Extracteur d'emploi du temps pour la licence d'informatique de Paris 8 +> !! Fork de [cal8tor](https://git.mylloon.fr/Anri/cal8tor) !! +> !! En cours de dev -> ne fonctionne pas !! + +Extracteur d'emploi du temps pour les masters d'informatique de Paris Cité (Diderot) [![dependency status](https://deps.rs/repo/gitea/git.mylloon.fr/Anri/cal8tor/status.svg)](https://deps.rs/repo/gitea/git.mylloon.fr/Anri/cal8tor) ## Installation -### Arch - -cal8tor est disponible sur le AUR : [`cal8tor`](https://aur.archlinux.org/packages/cal8tor) -et [`cal8tor-git`](https://aur.archlinux.org/packages/cal8tor-git). - ### Manuellement Cf. [Compilation et installation](#compilation-et-installation). @@ -20,15 +18,15 @@ Cf. [Compilation et installation](#compilation-et-installation). Pour afficher la page d'aide ``` -$ cal8tor --help +$ cal7tor --help ``` ## Voir le calendrier dans le terminal -Pour les L2-X par exemple, lance : +Pour les LP par exemple, lance : ```bash -$ cal8tor l2-X +$ cal7tor lp ``` > Le rendu peut parfois être difficile à lire, n'hésites pas à utiliser l'option @@ -36,10 +34,10 @@ $ cal8tor l2-X ## Exporter le calendrier au format `.ics` -Pour les L1-A par exemple, lance : +Pour les LP par exemple, lance : ```bash -$ cal8tor L1A --export calendar.ics +$ cal8tor LP --export calendar.ics ``` > Le fichier comprend le fuseau horaire pour `Europe/Paris` et est @@ -58,7 +56,7 @@ Vous aurez besoin de Rust pour compiler le programme. 1. Clone le dépôt et s'y rendre ```bash -$ git clone https://git.mylloon.fr/Anri/cal8tor.git && cd cal8tor +$ git clone https://git.mylloon.fr/Anri/cal7tor.git && cd cal7tor ``` 2. Compiler et installer l'application @@ -67,7 +65,7 @@ $ git clone https://git.mylloon.fr/Anri/cal8tor.git && cd cal8tor $ cargo install --path . ``` -3. Tu peux maintenant supprimer le dossier `cal8tor` ! +3. Tu peux maintenant supprimer le dossier `cal7tor` ! --- diff --git a/src/info.rs b/src/info.rs index 0292a38..ac20468 100644 --- a/src/info.rs +++ b/src/info.rs @@ -113,7 +113,7 @@ fn anglophonization(date: &str) -> String { /// Turn a string to a DateTime fn get_date(date: &str) -> DateTime { // Use and keep UTC time, we have the hour set to 12h and - // Paris 8 is in France so there is no problems + // Paris 7 is in France so there is no problems DateTime::parse_from_str(&anglophonization(date), "%e %B %Y %H:%M %z") .unwrap() .into()