Skip to content

Commit

Permalink
Ajout de plusieurs fonctionnalité, mode random, mode repeat (tout ou …
Browse files Browse the repository at this point in the history
…1), ajout de plusieurs album à la playlist, possibilité de vider la playlist
  • Loading branch information
Paullux committed Dec 31, 2023
1 parent 8af8359 commit acccccf
Show file tree
Hide file tree
Showing 21 changed files with 1,406 additions and 84 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build and Release

on:
push:
branches:
- main # ou la branche de votre choixce

jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11 # Utilisation de Python 3.11

- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # utilisez votre fichier requirements.txt
pip install pyinstaller # and any other dependencies
- name: Build with PyInstaller
run: |
pyinstaller main.spec
- name: Upload Artifacts
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }}-binary
path: dist/*
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build/
dist/
venv-lecteur-multimedia/
File renamed without changes
62 changes: 62 additions & 0 deletions data/add-one-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions data/add-one.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions data/close-one-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions data/close-one.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 49 additions & 0 deletions data/edit-add.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit acccccf

Please sign in to comment.