Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme file #12

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 105 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,105 @@
# music-lib
# Music Player

### Lightweight and Material designed Music Player

[![Privacy Policy](https://img.shields.io/static/v1?label=Privacy%20Policy&message=read&color=blueviolet&style=flat-square)](https://github.com/MaxFour/Music-Player/blob/master/docs/PRIVACY.md)
[![API](https://img.shields.io/badge/API-21%2B-orange.svg?logo=android&style=flat-square)](https://android-arsenal.com/api?level=21)
[![Telegram](https://img.shields.io/badge/Telegram-2CA5E0.svg?logo=telegram&style=flat-square)](https://t.me/max_four "Contact me in Telegram")
[![Gmail](https://img.shields.io/badge/Gmail-666666.svg?logo=gmail&logoColor=D14836&style=flat-square)](mailto:[email protected] "Write an email")


<img align="right" src="https://raw.githubusercontent.com/MaxFour/Music-Player/master/images/Music-Player.gif" height="500px"/>


# Features:

- **Settings**:
- Active tabs management
- **Themes**: Light, Dark, Black (for AMOLED)
- Changeable **Primary color** & **Accent color**
- Auto download artists & albums art
- Audio focus
- Gapless playback
- **Blacklist**: ability to hide folders
- **Library categories**: albums, artist, all songs, genres and playlists
- **Folders browser**
- **Now playing screen**:
- Two appearance for now playing screen: **Card** & **Flat**
- Classical media controls: seek bar, repeat (1x, loop), skip, play/pause, shuffle
- On the top: **Lyrics** view & **Favorite song** buttons
- At the bottom: name of the currently **playing song** & **queue**
- Simple **queue** management
> Tip: to move in queue long tap on the number of the song
- Flexible **tag editor**
- **Lockscreen**: blur album cover
- Search
- **Sort** options
- **Landscape** support

--------

# How to contribute

If you want to contribute to Music-Player, you are very welcome:

- translate into your language via [OneSky](https://maxfour.oneskyapp.com/)
- open issues and PRs (including a corresponding issue)

--------

# Contribution Guidelines

All contributions to this repository are considered to be licensed under the [GPLv3](https://github.com/MaxFour/Music-Player/blob/master/LICENSE)

Please read the [Code of Conduct](https://github.com/MaxFour/Music-Player/blob/master/docs/CODE_OF_CONDUCT.md). This document offers some guidance to ensure Music-Player participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.

Please review the [guidelines for contributing](https://github.com/MaxFour/Music-Player/blob/master/docs/CONTRIBUTING.md) to this repository.

--------

# Start contributing

Make sure you read [SETUP.md](https://github.com/MaxFour/Music-Player/blob/master/docs/SETUP.md) and [CONTRIBUTING.md](https://github.com/MaxFour/Music-Player/blob/master/docs/CONTRIBUTING.md) before you start working on this project. But basically: fork this repository and contribute back using pull requests to the master branch.
Easy starting points are also reviewing [pull requests](https://github.com/MaxFour/Music-Player/pulls) and working on [starter issues](https://github.com/MaxFour/Music-Player/issues/new).

--------

# Download

[<img alt="Get it on F-Droid" height="80" src="https://gitlab.com/fdroid/artwork/raw/master/badge/get-it-on.png">](https://f-droid.org/repository/browse/?fdid=com.maxfour.music)
[<img alt="Get it on Github" height="80" src="https://raw.githubusercontent.com/flocke/andOTP/master/assets/badges/get-it-on-github.png">](https://github.com/MaxFour/Music-Player/releases)


# License

```
© 2020, Max_Four ([email protected])
```

Licensed under the GNU General Public License, Version 3.0 (the "License");
You may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.gnu.org/licenses/#GPL

MIT License

Copyright (c) 2022 hack2skill

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
12 changes: 7 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
margin: z0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
Expand All @@ -10,20 +10,22 @@
margin: 0;
}
:root{
--pink: #ff74a4;
--violet: #9f6ea3;
--pink: #d18d0f;
--violet: #22cb0f;
--lightblack: #515C6F;
--white: #ffffff;
--darkwhite: #cecaca;
--pinkshadow: #ffcbdd;
--lightbshadow: rgba(0,0,0,0.15);
--pinkshadow: #4522d0;
--lightbshadow: rgba(48, 216, 18, 0.15);
}
body{

display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: linear-gradient(var(--pink) 0%, var(--violet) 100%);
background-image:url('https://targetbay.com/wp-content/uploads/2020/09/Best-Practices-for-Halloween-Email-Newsletters.gif');
}
.wrapper{
width: 380px;
Expand Down