-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
12 changed files
with
143 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Build release binaries | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
name: release ${{ matrix.target }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- target: x86_64-pc-windows-gnu | ||
archive: zip | ||
- target: x86_64-unknown-linux-musl | ||
archive: tar.gz tar.xz tar.zst | ||
- target: x86_64-apple-darwin | ||
archive: zip | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Compile and release | ||
uses: rust-build/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
RUSTTARGET: ${{ matrix.target }} | ||
ARCHIVE_TYPES: ${{ matrix.archive }} |
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 |
---|---|---|
|
@@ -5,4 +5,6 @@ podcasts | |
static/* | ||
.env | ||
|
||
!static/default.jpg | ||
!static/default.jpg | ||
podcast.db-shm | ||
podcast.db-wal |
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
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
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,55 @@ | ||
{ | ||
"homepage" : "Page d'accueil", | ||
"podcasts" : "Podcast", | ||
"last-listened" : "Récemment écouté", | ||
"no-notifications" : "Pas de notifications", | ||
"download-computer" : "Télécharger sur l'ordinateur", | ||
"download-to-server" : "Télécharger sur le serveur", | ||
"cpu-info" : "Info CPU", | ||
"cpu-brand" : "Marque du processeur", | ||
"cpu-cores" : "Noyaux de CPU", | ||
"podcast-size" : "Taille du répertoire podcast", | ||
"cpu-usage" : "Utilisation du CPU", | ||
"used-cpu" : "CPU utilisé", | ||
"free-cpu" : "CPU libre", | ||
"memory-usage" : "Utilisation de la mémoire", | ||
"used-memory" : "Mémoire utilisée", | ||
"loading" : "Chargement", | ||
"free-memory" : "Mémoire libre", | ||
"disk-usage" : "Utilisation du disque dur", | ||
"used-disk" : "Disque dur utilisé", | ||
"free-disk" : "Disque dur libre", | ||
"info" : "Info", | ||
"add-podcast" : "Ajouter un podcast", | ||
"search-podcast" : "Rechercher un podcast", | ||
"favorites" : "Favoris", | ||
"show-more" : "Afficher plus", | ||
"show-less" : "Afficher moins", | ||
"settings" : "Paramètres", | ||
"auto-cleanup" : "Nettoyage automatique", | ||
"days-to-keep" : "Jours à conserver", | ||
"auto-update" : "Mise à jour automatique des podcasts", | ||
"auto-download" : "Téléchargement automatique d'épisodes de podcasts", | ||
"save" : "Enregistrer", | ||
"active" : "Actif", | ||
"run-cleanup" : "Exécuter le nettoyage maintenant", | ||
"podindex-configured" : "Podindex configuré", | ||
"podfetch-status" : "État de configuration de Podfetch", | ||
"rss-feed" : "Flux RSS", | ||
"sign-in-to-podfetch" : "Se connecter à Podfetch", | ||
"error-authenticating" : "Erreur de connexion", | ||
"your-username" : "Votre nom d'utilisateur", | ||
"username" : "Nom d'utilisateur", | ||
"password" : "Mot de passe", | ||
"remember-me" : "Se souvenir du compte", | ||
"sign-in" : "Se connecter", | ||
"drag-here" : "Glisser ici", | ||
"following-file-uploaded" : "Le fichier suivant sera téléchargé :", | ||
"upload-opml" : "Télécharger le fichier OPML", | ||
"logout" : "Déconnexion", | ||
"oidc-login" : "Connexion OIDC", | ||
"settings-saved" : "Paramètres sauvegardés", | ||
"new-podcast-added" : "nouveau podcast {{nom}} ajouté", | ||
"new-podcast-episode-added" : "Nouvel épisode {{nom}} ajouté", | ||
"error-occured" : "Une erreur est survenue" | ||
} |
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