-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
174 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
## [1.3.0] - 2024-08-09 | ||
|
||
### Added | ||
|
||
- Ajout du CHANGELOG | ||
- Ajout du CONTRIBUTING | ||
- Ajout de l'action `release-notes-from-changelog` pour générer les notes de release | ||
|
||
### Changed | ||
|
||
- Explicitation des limites du programme dans le README | ||
|
||
### Removed | ||
|
||
## [1.2.9] - 2024-08-08 | ||
|
||
### Added | ||
|
||
- Utilisation des GitHub Actions pour générer les binaires | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
## [1.2.0] - 2024-08-08 | ||
|
||
### Added | ||
|
||
- Passage sur Github pour la gestion du projet | ||
|
||
### Changed | ||
|
||
- Amélioration de l'interface pour les hautes résolutions d'écran | ||
- Meilleure gestion des polices de caractères présentes | ||
- Remplacement des emoji par des images | ||
- Utilisation du module mutf7 sous licence WTFPL pour la gestion de l'encodage _modified UTF-7_ | ||
- Passage en texte du fichier `file_version_info` de description du binaire Windows | ||
|
||
### Removed | ||
|
||
## [1.1.0] - 2024-08-06 | ||
|
||
### Added | ||
|
||
- Ajout de dialog_utils pour centraliser les utilitaires graphiques | ||
- Ajout d'une explication pour les mots de passe applicatifs | ||
- Gestion des préférences utilisateurs | ||
|
||
### Changed | ||
|
||
- Opérations longues portées par des threads séparés pour garder une interface fluide | ||
|
||
### Removed | ||
|
||
## [1.0.0] - 2024-08-04 | ||
|
||
### Added | ||
|
||
- Version initiale de l'IHM | ||
- Serveurs d'IMAP connus | ||
- Récupération des dossiers | ||
- Récupération des courriels d'un dossier | ||
- Création de la livraison | ||
|
||
### Changed | ||
|
||
### Removed | ||
|
||
[Unreleased]: https://github.com/CSchoel/release-notes-from-changelog/compare/v1.3.0..HEAD | ||
[1.3.0]: https://github.com/CSchoel/release-notes-from-changelog/compare/v1.2.9..v1.3.0 | ||
[1.2.9]: https://github.com/CSchoel/release-notes-from-changelog/compare/v1.2.0..v1.3.9 | ||
[1.2.0]: https://github.com/CSchoel/release-notes-from-changelog/releases/tag/v1.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
## Contributing | ||
|
||
### General rules | ||
|
||
1. Before writing any *code* take a look at the existing | ||
[issues](https://github.com/tledoux/donatemail/issues?q=). | ||
If none of them is about the changes you want to contribute, open | ||
up a new issue. Fixing a typo requires no issue though, just submit | ||
a Pull Request. | ||
|
||
2. If you're looking for an open issue to fix, check out | ||
labels `help wanted` and `good first issue` on GitHub. | ||
|
||
3. If you plan to work on an issue open not by you, write about your | ||
intention in the comments *before* you start working. | ||
|
||
|
||
### Development rules | ||
|
||
1. Follow the GitHub [fork & pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) flow. | ||
|
||
2. Make changes to the code. | ||
|
||
3. Make sure the pylinter is happy | ||
|
||
4. Open a pull request, refer to the issue you solve. | ||
|
||
5. Make sure GitHub Checks (Actions) pass. | ||
|
||
### Release management | ||
|
||
1. Follow the [SemVer](https://semver.org/) conventions for the release number. | ||
2. Update the version in [file_version_info](https://github.com/tledoux/donatemail/blob/main/file_version_info.txt) and | ||
in [donate_gui](https://github.com/tledoux/donatemail/blob/main/donate_gui.py). | ||
2. Update the [CHANGELOG](https://github.com/tledoux/donatemail/blob/main/CHANGELOG.md). | ||
3. Update the [README](https://github.com/tledoux/donatemail/blob/main/README.md) if needed. | ||
4. Merge the changes to the `main` branch. | ||
5. Push a version-specific tag, e.g. `v2.1.9`: | ||
|
||
``` | ||
$ git tag v2.1.9 | ||
$ git push origin v2.1.9 | ||
``` | ||
|
||
6. Push a new or over a major version tag, e.g. `v2`. | ||
|
||
``` | ||
# Delete the old local tag | ||
$ git tag -d v2 | ||
# Add a new local tag | ||
$ git tag v2 | ||
# Delete the old remote tag | ||
$ git push -d origin v2 | ||
# Push the new remote tag | ||
$ git push origin v2 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters