mirror of
https://github.com/koel/koel.git
synced 2026-04-25 16:56:02 +03:00
[PR #487] [CLOSED] Feature/additional metadata #1267
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#1267
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/koel/koel/pull/487
Author: @alex-phillips
Created: 11/25/2016
Status: ❌ Closed
Base:
master← Head:feature/additional-metadata📝 Commits (10+)
e8c32f7added support for disc number of songs, album year, and song genres5808567genre is now its own table and songs have a foreign key to its genredd69b28added front-end code for genre supporta788d91fixed missing equals2bcbf7amoved database migrations to proper location2209f93fixed invalid genre and genre_id reference2bb3f42fixed style issuesf95469amore style fixes3d68af9fixed SCSS semicolons in .vue files, removed jquery requirement from bad merge of another fork19dcd79initial commit of genre store and genre stub📊 Changes
38 files changed (+1049 additions, -65 deletions)
View changed files
📝
app/Http/Controllers/API/DataController.php(+5 -0)📝
app/Models/Album.php(+3 -1)📝
app/Models/File.php(+47 -3)➕
app/Models/Genre.php(+66 -0)📝
app/Models/Song.php(+24 -4)📝
app/Services/Media.php(+9 -1)📝
database/factories/ModelFactory.php(+10 -0)➕
database/migrations/2016_04_22_175752_add_year_to_albums_table.php(+31 -0)➕
database/migrations/2016_04_23_150726_add_disc_to_songs_table.php(+31 -0)➕
database/migrations/2016_11_18_150838_add_genre_table.php(+39 -0)➕
database/migrations/2016_11_18_150839_add_genre_id_to_songs_table.php(+33 -0)➕
resources/assets/js/components/main-wrapper/main-content/genre.vue(+135 -0)➕
resources/assets/js/components/main-wrapper/main-content/genres.vue(+80 -0)📝
resources/assets/js/components/main-wrapper/main-content/index.vue(+5 -1)📝
resources/assets/js/components/main-wrapper/sidebar/index.vue(+7 -1)📝
resources/assets/js/components/modals/edit-songs-form.vue(+16 -9)📝
resources/assets/js/components/modals/edit-user-form.vue(+1 -1)➕
resources/assets/js/components/shared/genre-item.vue(+101 -0)📝
resources/assets/js/router.js(+12 -1)📝
resources/assets/js/services/playback.js(+10 -0)...and 18 more files
📄 Description
Continuation (reopening) of PR https://github.com/phanan/koel/pull/318.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.