From ddae938869b606db340167ebdfc11573a563d75c Mon Sep 17 00:00:00 2001 From: Deepanshu bisht <91410754+Deep-ghosty@users.noreply.github.com> Date: Sun, 30 Oct 2022 15:22:23 +0530 Subject: [PATCH 1/3] Readme file for this reposistory --- README.md | 106 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 105 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dd9cbb..b7e31b5 100644 --- a/README.md +++ b/README.md @@ -1 +1,105 @@ -# music-lib \ No newline at end of file +# 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:mansurov.maksud@gmail.com "Write an email") + + + + + +# 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 + +[Get it on F-Droid](https://f-droid.org/repository/browse/?fdid=com.maxfour.music) +[Get it on Github](https://github.com/MaxFour/Music-Player/releases) + + +# License + +``` +© 2020, Max_Four (mansurov.maksud@gmail.com) +``` + +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. From ee90fe9006a437bb439f8af9a46be72d846989e7 Mon Sep 17 00:00:00 2001 From: Deepanshu bisht <91410754+Deep-ghosty@users.noreply.github.com> Date: Sun, 30 Oct 2022 17:16:50 +0530 Subject: [PATCH 2/3] Add files via upload --- style.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/style.css b/style.css index 539c50e..c299a28 100644 --- a/style.css +++ b/style.css @@ -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; @@ -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; From 8b71824387de3d372fa1701183186f527d3c5f10 Mon Sep 17 00:00:00 2001 From: Deepanshu bisht <91410754+Deep-ghosty@users.noreply.github.com> Date: Sun, 30 Oct 2022 17:20:27 +0530 Subject: [PATCH 3/3] Add files via upload