Ce dépôt Github a été créé par https://github.com/Noars qui est l'auteur du code et de la documentation.
Il est sous licence GNU (voir fichier LICENSE).
Merci de regarder ce fichier avant toute utilisation de ce dépôt !.
- JavaFx 17.0.2 (Azul community)
- Gradle 7.4.2
- Spotbugs 5.0.7
- Innosetup 6.2.0
Pour ma part, j'utilise IntelliJ comme IDE.
Pour lancer l'application, une fois que tout est en place et que gradle a fini de build, j'utilise le run de gradle.
Pour ce faire, allez dans les tâches de gradle puis application et lancer la tâche "run".
Cette branche contient la dernière version fonctionnel de TètKole.
Cette branche permet de développer de nouvelles fonctionnalités ou corriger des bugs existant sans impacter la version fonctionnel.
Une fois la branch Develop satisfaisante, on la merge dans la branche master.
Cette branche contient toute la partie site web de TètKole sur git.
Le lien du site web est -> https://eschang.github.io/TetKole/
Actuellement ce dépôt contient 3 workflows :
- 1 pour l'intégration continue -> .github/ci.yml
- 1 pour automatiser les releases -> .github/release.yml
- 1 pour mettre a jour la page web si il y a eu des modification (gérer par git lui même)
Lorsque l'on push dans la branche master, une release est automatiquement généré grâce au workflow release.yml qui se trouve dans le dossier ".github".
Le numéro de la release est toujours la dernière version + 1.
C'est à dire, si la dernière version est "TètKole 1.0.7", alors la prochaine release sera "TètKole 1.0.8".
Pour changer les chiffres supérieurs il faut le faire a la main en éditant la dernière release.
Une fois le projet récupéré, il vous suffit de lancer la tâche gradle "generateWindowsInstaller" dans distribution.
Cela va créer une release Windows et Linux dans le dossier build/distribution .
Pour rechercher des bugs via Spotbugs, il faut lancer la tâche gradle "spotbugsMain" dans verification.
Si jamais il trouve des erreurs, aller sur ce site -> https://spotbugs.readthedocs.io/en/stable/bugDescriptions.html
Puis trouver à quoi correspond l'erreur remontée par Spotbugs.
Toutes les images utilisées dans cette application sont libres de droit.
90% sont des images que j'ai faites à la main sur paint 3D (pour avoir le fond transparent).
L'application contient 2 langues actuellement :
- Français
- Anglais
Dans src/main/resources , il y a un dossier multilinguism.
Si on veut rajouter une langue, il faut créer un nouveau properties.
Par exemple, si on veut rajouter l'italien on crée un fichier "language_it_IT.properties" et dedans on met les traductions.
Puis dans le fichier SettingsPane.java (qui se trouve dans src/main/java/application/ui/pane), faire les modifications nécessaires à son ajout.
This Github repository was created by https://github.com/Noars who is the author of the code and documentation.
It is under GNU license (see LICENSE file).
Please look at this file before using this repository!.
- JavaFx 17.0.2 (Azul community)
- Gradle 7.4.2
- Spotbugs 5.0.7
- Innosetup 6.2.0
For my part, I use IntelliJ as IDE.
To launch the application, once everything is in place and gradle has finished building, I use the gradle run.
To do this, go to the gradle tasks then application and launch the "run" task.
This branch contains the last working version of TètKole.
This branch allows you to develop new features or fix existing bugs without impacting the functional version.
Once the Develop branch is satisfactory, we merge it into the master branch.
This branch contains all the website part of TètKole on git.
The website link is -> https://eschang.github.io/TetKole/
Currently this repository contains 3 workflows:
- 1 for continuous integration -> .github/ci.yml
- 1 to automate releases -> .github/release.yml
- 1 to update the web page if there have been changes (managed by git itself)
When you push in the master branch, a release is automatically generated thanks to the release.yml workflow which is in the ".github" folder.
The release number is always the latest version + 1.
That is, if the latest version is "TètKole 1.0.7", then the next release will be "TètKole 1.0.8".
To change the upper numbers it must be done by hand by editing the latest release.
Once the project is recovered, you just need to launch the "generateWindowsInstaller" gradle task in distribution.
This will create a Windows and Linux release in the build/distribution folder.
To search for bugs via Spotbugs, you have to run the gradle task "spotbugsMain" in verification.
If it ever finds errors, go to this site -> https://spotbugs.readthedocs.io/en/stable/bugDescriptions.html
Then find what the error reported by Spotbugs corresponds to.
All images used in this app are copyright free.
90% are images that I made by hand on 3D paint (to have the transparent background).
The application currently contains 2 languages:
- French
- English
In src/main/resources there is a multilingualism folder.
If you want to add a language, you have to create a new properties.
For example, if we want to add Italian, we create a "language_it_IT.properties" file and in it we put the translations.
Then in the SettingsPane.java file (located in src/main/java/application/ui/pane), make the necessary changes to add it.