Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

Commit

Permalink
🚀 add: yt download
Browse files Browse the repository at this point in the history
  • Loading branch information
jabedzaman committed Feb 3, 2023
1 parent 3ded196 commit 6237c99
Show file tree
Hide file tree
Showing 9 changed files with 197 additions and 51 deletions.
22 changes: 18 additions & 4 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"name": "spotiloader",
"slug": "spotiloader",
"version": "1.0.0",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
Expand All @@ -37,17 +37,31 @@
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.jabedzaman.spotiloader"
"bundleIdentifier": "com.jabedzaman.spotiloader",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Allow spotiloader to access your photos.",
"NSPhotoLibraryAddUsageDescription": "Allow spotiloader to save photos."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.jabedzaman.spotiloader"
"package": "com.jabedzaman.spotiloader",
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "a2cde989-521c-4c6c-8948-336b09633922"
}
}
}
}
}
Binary file modified assets/splash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,15 @@ Whats New !!! 🎉🎈

- Search Playlist or track from Spotify
- Download Playlist or track on Spotify

## v 1.0.1

Whats New !!! 🎉🎈

- Added a new feature to download videos from YouTube as mp3

### Bug Fixes

- Fixed a bug where the app would not show icons on the home screen
- Fixed a bug where the app would redirect to donation url
- Other minor bug fixes
2 changes: 2 additions & 0 deletions config/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ const name = "spotiloader";
const downloadUrl = "https://jabed.me";
const author = "Jabed Zaman";
const githubUrl ="https://github.com/jabedzaman/spotiloader";
const patreonUrl = "https://patreon.com/jabedzaman";

const config = {
version,
name,
downloadUrl,
author,
githubUrl,
patreonUrl,
};

export default config;
20 changes: 18 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "spotiloader",
"version": "1.0.0",
"description": "A simple app to download songs from Spotify",
"version": "1.0.1",
"description": "Multiplatform Music Downloader",
"author": {
"name": "Jabed Zaman"
},
Expand All @@ -13,24 +13,25 @@
"web": "expo start --web"
},
"dependencies": {
"@react-native-picker/picker": "^2.4.8",
"@react-navigation/bottom-tabs": "^6.5.3",
"@react-navigation/native": "^6.1.2",
"@react-navigation/native-stack": "^6.9.8",
"axios": "^1.2.4",
"expo": "~47.0.12",
"expo-file-system": "~15.1.1",
"expo-font": "~11.0.1",
"expo-media-library": "~15.0.0",
"expo-network": "~5.0.0",
"expo-notifications": "~0.17.0",
"expo-permissions": "~14.0.0",
"expo-status-bar": "~1.4.2",
"react": "18.1.0",
"react-native": "0.70.5",
"react-native-elements": "^3.4.3",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-vector-icons": "^9.2.0",
"expo-permissions": "~14.0.0",
"expo-media-library": "~15.0.0",
"expo-network": "~5.0.0",
"expo-notifications": "~0.17.0"
"react-native-vector-icons": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9"
Expand Down
11 changes: 5 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<a href="https://github.com/jabedzaman/spotiloader"><img src="/assets/iconlarge.png" align="left" height="80" width="80" ></a>
# Spotiloader
- **React Native Multiplatform** Music Downloader ,supports **Spotify only at this moment**. <br/>
- **React Native Multiplatform** Music Downloader ,supports **Spotify & YouTube**. <br/>


Download Spotfy Tracks or Playlists from URL and save them locally to listen while offline !!!
Expand All @@ -12,14 +12,15 @@ Download Spotfy Tracks or Playlists from URL and save them locally to listen whi
### Supported Platforms:

- Spotify
- YouTube
- (more coming soon)


## 💻 Install

| Platform | Download | Status |
|----------|----------|--------|
| Android |[![Download Button](https://img.shields.io/github/v/release/jabedzaman/spotiloader?color=7885FF&label=Android-Apk&logo=android&style=for-the-badge)](https://github.com/jabedzaman/)| ✅ Stable |
| Android |[![Download Button](https://img.shields.io/github/v/release/jabedzaman/spotiloader?color=7885FF&label=Android-Apk&logo=android&style=for-the-badge)](https://github.com/jabedzaman/spotiloader/releases)| ✅ Stable |

### Permissions required:

Expand All @@ -29,12 +30,10 @@ Download Spotfy Tracks or Playlists from URL and save them locally to listen whi
### Todos

- [ ] Add download progress bar
- [ ] Add other platform support
- [ ] Add inbuilt player
- [x] Add other platform support
- [ ] Add Dark Mode
- [ ] Add search history
- [ ] Add seach with suggestions
- [ ] Add downlaod with meta data
- [ ] Add downlaod with meta data
- [ ] Write Tests

**GPL-3.0 License**
Expand Down
Loading

0 comments on commit 6237c99

Please sign in to comment.