Skip to content

Commit

Permalink
1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mayur1377 committed Feb 8, 2025
1 parent f7a538c commit 4d0354c
Show file tree
Hide file tree
Showing 23 changed files with 6,646 additions and 24 deletions.
30 changes: 30 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": [ "camelCase", "PascalCase" ]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: VSCode Extension CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm

- name: Install Dependencies
run: npm ci

- name: Package VSCode Extension
run: npm run package
# to do , write some tests , maybe add some pre-commit hooks too
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
out
dist
node_modules
.vscode
*.vsix
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
enable-pre-post-scripts = true
7 changes: 7 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.vscode/**
src/**
.gitignore
.yarnrc
**/tsconfig.json
**/.eslintrc.json
**/*.ts
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog

## [1.0.7]
# Initial release!
16 changes: 16 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Contributing to MUDE 🎧

Thank you for considering contributing to MUDE!

You can help improve the project by:

- **Adding new features** ✨: Have a new idea? Feel free to discuss and implement it!
- **Fixing bugs** 🐛: Found a bug? Report it and fix it!
- **Improving the code** 🛠️: This started as a personal project, so there are many areas where the code can be improved. Feel free to fork the repository, clean up the code, and make a pull request.

at the end of the day , we are all just 1's and 0's , just make sure you dont break the code lol 😂


We appreciate your contributions! 🙏

Thank you for considering contributing to MUDE!
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Mayuresh

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.
68 changes: 44 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,58 @@
# VSCode Music Player
![MUDE Player Screenshot](./media/icon.png)

### Install The Full Featured Ad-Free Blazingly Fast Music/Media player and **You'll never open a tab for music in browser**
**MUDE Player** is a minimalistic music player integrated into your favorite editor, allowing you to play ad-free music from the comfort of your workspace.

# Features
- Search and play music from YouTube
- Create and Play Playlists
- Play, Pause, Seek and Rewind
- Play previous/next track
## Features

# Usage
![Search Music](./media/Search%20Music.gif)
- **Seamless Integration**: Control your music directly from the editor.
- **YouTube Music**: Search and play music from YouTube Music within the editor, no login, no ads.
- **Auto-Playlists**: Create playlists from your tracks and play them on the go. No need to search for music every time!
- **Playback Controls**:
- Seek forward (+10 seconds)
- Seek backward (-10 seconds)
- Play/Pause
- Next track
- Previous track

# **Requirements** (MPV)
## It just requires **MPV** on your system, to install MPV
## Requirements

### You can follow instructions on the [official website](https://mpv.io/installation/) for your platform
- **MPV**: Ensure MPV is installed on your system to use MUDE Player.

## OR
For reference: [MPV Installation](https://mpv.io/installation/)

### On linux
```
sudo apt install mpv
You can install MPV using the following command:

For macOS users:
```bash
brew install mpv
```

### On windows follow instructions on [official site](https://mpv.io/installation/) or you can install it with **chocolatey**
For Linux users:
```bash
sudo apt-get install mpv
```

For Windows users:
```bash
choco install mpv
```

### On Mac OS
```
brew install mpv
```
## How to Contribute

Want to help make MUDE even better? You can contribute by:

- **Improving the Code**: Since this started off as a personal project, there are many areas that can be improved, bugs that can be fixed, and features that can be added. Feel free to fork the repository and make changes.

Check out the [CONTRIBUTING.md](CONTRIBUTING.md) file for more details.

## Found an Issue?

If you find a bug or have a feature request, please create an issue on the repository!

## General Rules

To keep everything smooth and consistent, please:

# And you are ready to go# music-player-improved
# music-player-improved
# music-player-improved
- Follow the project’s style and contribution rules.
- Be kind and respectful to others.
- If you’re unsure, ask questions.
Binary file added media/icon.png
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 4d0354c

Please sign in to comment.