-
Notifications
You must be signed in to change notification settings - Fork 64
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
[T13-3] JxMusic #116
base: master
Are you sure you want to change the base?
[T13-3] JxMusic #116
Commits on Oct 24, 2018
-
Merge pull request #58 from CS2103-AY1819S1-T13-3/gongjie
add list tracks command
Configuration menu - View commit details
-
Copy full SHA for 86ef7d9 - Browse repository at this point
Copy the full SHA 86ef7d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd1fc0c - Browse repository at this point
Copy the full SHA dd1fc0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71cb96e - Browse repository at this point
Copy the full SHA 71cb96eView commit details -
Add space for PlaylistList and TrackList commands
As LibraryParser is fixed, the PlaylistList and TrackList commands can use multiple words command phrase. Add the commands' cases to LibraryParserTest Fix LogicManagerTest to use PlaylistListCommand instead of ListCommand.
Configuration menu - View commit details
-
Copy full SHA for fe64ac3 - Browse repository at this point
Copy the full SHA fe64ac3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61e270e - Browse repository at this point
Copy the full SHA 61e270eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bbb7a35 - Browse repository at this point
Copy the full SHA bbb7a35View commit details -
Configuration menu - View commit details
-
Copy full SHA for 058da33 - Browse repository at this point
Copy the full SHA 058da33View commit details
Commits on Oct 25, 2018
-
Configuration menu - View commit details
-
Copy full SHA for c0b4140 - Browse repository at this point
Copy the full SHA c0b4140View commit details
Commits on Oct 26, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6c4e818 - Browse repository at this point
Copy the full SHA 6c4e818View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd18009 - Browse repository at this point
Copy the full SHA fd18009View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4af8b52 - Browse repository at this point
Copy the full SHA 4af8b52View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8dd6ef7 - Browse repository at this point
Copy the full SHA 8dd6ef7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d7cc4d3 - Browse repository at this point
Copy the full SHA d7cc4d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c118351 - Browse repository at this point
Copy the full SHA c118351View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61732b8 - Browse repository at this point
Copy the full SHA 61732b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for e86c10c - Browse repository at this point
Copy the full SHA e86c10cView commit details -
Configuration menu - View commit details
-
Copy full SHA for f808cbd - Browse repository at this point
Copy the full SHA f808cbdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f5e0ea - Browse repository at this point
Copy the full SHA 1f5e0eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6abb628 - Browse repository at this point
Copy the full SHA 6abb628View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b9e5de - Browse repository at this point
Copy the full SHA 9b9e5deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 02fe094 - Browse repository at this point
Copy the full SHA 02fe094View commit details -
Add PlaylistSearchCommandParserTest Refactor DeleteCommandTest to PlaylistDelCommandTest Update multiple test files
Configuration menu - View commit details
-
Copy full SHA for 336ad13 - Browse repository at this point
Copy the full SHA 336ad13View commit details -
Refactor FindCommandParser to PlaylistSearchCommandParser Refactor DeleteCommand to PlaylistDelCommand Update FindCommand & LibraryParser
Configuration menu - View commit details
-
Copy full SHA for 96eb0cb - Browse repository at this point
Copy the full SHA 96eb0cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for b05c716 - Browse repository at this point
Copy the full SHA b05c716View commit details -
Configuration menu - View commit details
-
Copy full SHA for 06a777f - Browse repository at this point
Copy the full SHA 06a777fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 35ca0f9 - Browse repository at this point
Copy the full SHA 35ca0f9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8b323c - Browse repository at this point
Copy the full SHA d8b323cView commit details -
Refactor PlayerManager to be a singleton
As Player will only be used in Command subclasses, I converted the PlayerManager to be a singleton. The singleton is only used in the Command abstract class. This way, all subclasses will have access to the player instance. An alternative would be to add a Player parameter to every Command subclasses similar to how CommandHistory used to be a parameter before the refactoring stage. The argument for not going with this alternative is that not all Command subclass need to use the Player, just like CommandHistory was only used by undo and redo. Also, I prefer to avoid further mass refactoring nightmare. Of course, we need to be mindful of the consequences of using singleton as singleton class is essentially a global variable. We try to use it sparingly. Pretty sure this is the only time where we need singleton. Honestly, the initial codes of the AddressBook was not very intuitive/friendly for integrating new components, or dependency injection.
Configuration menu - View commit details
-
Copy full SHA for 1f4cc8a - Browse repository at this point
Copy the full SHA 1f4cc8aView commit details -
Add PlayCommandParser Change LibraryParser switch case for play command to use PlayCommandParser
Configuration menu - View commit details
-
Copy full SHA for dfb34d7 - Browse repository at this point
Copy the full SHA dfb34d7View commit details -
Remove album art from unplayable mp3 files
Due to the Java bug where JavaFX MediaPlayer does not play photoshopped album art https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8210828
Configuration menu - View commit details
-
Copy full SHA for 0135438 - Browse repository at this point
Copy the full SHA 0135438View commit details -
Fix command history not showing
After you entered a command in the UI CommandBox, you should be able to press up/down key to navigate the commands you have entered. This is a regression from the refactoring stage.
Configuration menu - View commit details
-
Copy full SHA for 3a840d5 - Browse repository at this point
Copy the full SHA 3a840d5View commit details -
SelectCommandSystemTest As LibraryParser regex is now detecting first 2 alphabetical words as the command phrase, the test case should expect unknown command message. CommandBoxTest As we are not using ListCommand, change the command that succeeds to PlaylistListCommand.
Configuration menu - View commit details
-
Copy full SHA for ae420c9 - Browse repository at this point
Copy the full SHA ae420c9View commit details
Commits on Oct 27, 2018
-
Merge pull request #63 from CS2103-AY1819S1-T13-3/david
Implement PlayCommand
Configuration menu - View commit details
-
Copy full SHA for 6347f81 - Browse repository at this point
Copy the full SHA 6347f81View commit details -
Configuration menu - View commit details
-
Copy full SHA for 87c1db1 - Browse repository at this point
Copy the full SHA 87c1db1View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb5ed93 - Browse repository at this point
Copy the full SHA bb5ed93View commit details -
Configuration menu - View commit details
-
Copy full SHA for cadf45b - Browse repository at this point
Copy the full SHA cadf45bView commit details
Commits on Oct 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 3be068e - Browse repository at this point
Copy the full SHA 3be068eView commit details
Commits on Oct 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for b5069a8 - Browse repository at this point
Copy the full SHA b5069a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e290d5 - Browse repository at this point
Copy the full SHA 4e290d5View commit details -
refactor TypicalPlaylists to TypicalPlaylistList; add test file for T…
…rackCard and TrackListPanel
Configuration menu - View commit details
-
Copy full SHA for de782d2 - Browse repository at this point
Copy the full SHA de782d2View commit details
Commits on Oct 30, 2018
-
Configuration menu - View commit details
-
Copy full SHA for f1f8023 - Browse repository at this point
Copy the full SHA f1f8023View commit details -
Configuration menu - View commit details
-
Copy full SHA for 54dedf7 - Browse repository at this point
Copy the full SHA 54dedf7View commit details -
Configuration menu - View commit details
-
Copy full SHA for f10f8ca - Browse repository at this point
Copy the full SHA f10f8caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d63441 - Browse repository at this point
Copy the full SHA 3d63441View commit details
Commits on Oct 31, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 84de2ca - Browse repository at this point
Copy the full SHA 84de2caView commit details -
Configuration menu - View commit details
-
Copy full SHA for ff4b720 - Browse repository at this point
Copy the full SHA ff4b720View commit details -
Configuration menu - View commit details
-
Copy full SHA for 79f57ac - Browse repository at this point
Copy the full SHA 79f57acView commit details -
Configuration menu - View commit details
-
Copy full SHA for ca70d1a - Browse repository at this point
Copy the full SHA ca70d1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9506438 - Browse repository at this point
Copy the full SHA 9506438View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b4855b - Browse repository at this point
Copy the full SHA 1b4855bView commit details -
Implement TrackAddCommand, tests and modified TypicalPlaylists to mod…
…el library for an added track
Configuration menu - View commit details
-
Copy full SHA for 22199dd - Browse repository at this point
Copy the full SHA 22199ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 16f0481 - Browse repository at this point
Copy the full SHA 16f0481View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2afd542 - Browse repository at this point
Copy the full SHA 2afd542View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ed5668 - Browse repository at this point
Copy the full SHA 0ed5668View commit details -
Configuration menu - View commit details
-
Copy full SHA for 774cb26 - Browse repository at this point
Copy the full SHA 774cb26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0fdc2ec - Browse repository at this point
Copy the full SHA 0fdc2ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5970249 - Browse repository at this point
Copy the full SHA 5970249View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91d8bb2 - Browse repository at this point
Copy the full SHA 91d8bb2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5513670 - Browse repository at this point
Copy the full SHA 5513670View commit details -
Configuration menu - View commit details
-
Copy full SHA for cfebfd4 - Browse repository at this point
Copy the full SHA cfebfd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cc23cb - Browse repository at this point
Copy the full SHA 5cc23cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for e38c1b2 - Browse repository at this point
Copy the full SHA e38c1b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for ced9ebc - Browse repository at this point
Copy the full SHA ced9ebcView commit details -
create the frame of SeekCommand, SeekCommandParser and add seek comma…
…nd to libraryParser
Configuration menu - View commit details
-
Copy full SHA for 66e812b - Browse repository at this point
Copy the full SHA 66e812bView commit details -
Merge pull request #64 from CS2103-AY1819S1-T13-3/UI
Create TrackListPanel in UI component
Configuration menu - View commit details
-
Copy full SHA for 4aeeaf0 - Browse repository at this point
Copy the full SHA 4aeeaf0View commit details -
Configuration menu - View commit details
-
Copy full SHA for db17f04 - Browse repository at this point
Copy the full SHA db17f04View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9afd2f - Browse repository at this point
Copy the full SHA a9afd2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d756b89 - Browse repository at this point
Copy the full SHA d756b89View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2f2398 - Browse repository at this point
Copy the full SHA d2f2398View commit details -
Configuration menu - View commit details
-
Copy full SHA for b13d79c - Browse repository at this point
Copy the full SHA b13d79cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b97c65 - Browse repository at this point
Copy the full SHA 1b97c65View commit details -
Configuration menu - View commit details
-
Copy full SHA for ec255de - Browse repository at this point
Copy the full SHA ec255deView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b7f4c7 - Browse repository at this point
Copy the full SHA 1b7f4c7View commit details -
update trackscanner so that it can copy tracks from resouces folder t…
…o library folder
Configuration menu - View commit details
-
Copy full SHA for 51e4d47 - Browse repository at this point
Copy the full SHA 51e4d47View commit details -
update sequential diagram of "event-driven nature of design" part in …
…DeveloperGuide.adoc
Configuration menu - View commit details
-
Copy full SHA for 1077e8f - Browse repository at this point
Copy the full SHA 1077e8fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e6397f - Browse repository at this point
Copy the full SHA 9e6397fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 59447b7 - Browse repository at this point
Copy the full SHA 59447b7View commit details -
Add PlaylistDelCommandParserTest
Add PlaylistDelCommandParser Add 4 sample Playlists
Configuration menu - View commit details
-
Copy full SHA for 35b204e - Browse repository at this point
Copy the full SHA 35b204eView commit details -
Merge pull request #65 from CS2103-AY1819S1-T13-3/tracksearch
Implement `track search` command and track list panel UI
Configuration menu - View commit details
-
Copy full SHA for 0a12703 - Browse repository at this point
Copy the full SHA 0a12703View commit details -
Configuration menu - View commit details
-
Copy full SHA for aa91b31 - Browse repository at this point
Copy the full SHA aa91b31View commit details -
Configuration menu - View commit details
-
Copy full SHA for 190c221 - Browse repository at this point
Copy the full SHA 190c221View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9189ab - Browse repository at this point
Copy the full SHA b9189abView commit details -
Merge pull request #61 from CS2103-AY1819S1-T13-3/hayden
Implement playlist search and delete commands
Configuration menu - View commit details
-
Copy full SHA for f42f292 - Browse repository at this point
Copy the full SHA f42f292View commit details -
Configuration menu - View commit details
-
Copy full SHA for e9da940 - Browse repository at this point
Copy the full SHA e9da940View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88f5fb7 - Browse repository at this point
Copy the full SHA 88f5fb7View commit details -
Ensure /library exists on startup (fix issue #67)
TrackScanner checks if /library doesn't exist or is empty then it copies the contents of resources/library out If it is compiled to a jar file, it runs the command line: unzip "library/*" Else when running in IDE, it basically copies the contents
Configuration menu - View commit details
-
Copy full SHA for a5f73aa - Browse repository at this point
Copy the full SHA a5f73aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 25603c0 - Browse repository at this point
Copy the full SHA 25603c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28fa43f - Browse repository at this point
Copy the full SHA 28fa43fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5df7c68 - Browse repository at this point
Copy the full SHA 5df7c68View commit details -
Implement TrackDeleteCommand, TrackDeleteCommandParser, TrackDeleteCo…
…mmandTest and add Playlist methods: hasTrack(), deleteTrack()
Configuration menu - View commit details
-
Copy full SHA for ae455ee - Browse repository at this point
Copy the full SHA ae455eeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 901037d - Browse repository at this point
Copy the full SHA 901037dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f76886 - Browse repository at this point
Copy the full SHA 9f76886View commit details
Commits on Nov 1, 2018
-
Merge pull request #60 from CS2103-AY1819S1-T13-3/hansel
Add/delete track command for managing playlists
Configuration menu - View commit details
-
Copy full SHA for bd5053d - Browse repository at this point
Copy the full SHA bd5053dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a7a1959 - Browse repository at this point
Copy the full SHA a7a1959View commit details -
Update the quick start Fix search commands to remove q/ Fix delete commands to remove i/
Configuration menu - View commit details
-
Copy full SHA for ccdbe2c - Browse repository at this point
Copy the full SHA ccdbe2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 18f4503 - Browse repository at this point
Copy the full SHA 18f4503View commit details -
Make search commands work with substrings
Basically use string.contains to search
Configuration menu - View commit details
-
Copy full SHA for 917d61a - Browse repository at this point
Copy the full SHA 917d61aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8246dea - Browse repository at this point
Copy the full SHA 8246deaView commit details
Commits on Nov 2, 2018
-
update theme color of UI to green, add captain on the top of trackLis…
…tPanel and playlistListPanel
Configuration menu - View commit details
-
Copy full SHA for 974186f - Browse repository at this point
Copy the full SHA 974186fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ac25e86 - Browse repository at this point
Copy the full SHA ac25e86View commit details -
Configuration menu - View commit details
-
Copy full SHA for d6911a8 - Browse repository at this point
Copy the full SHA d6911a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5076c2 - Browse repository at this point
Copy the full SHA f5076c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8417f52 - Browse repository at this point
Copy the full SHA 8417f52View commit details -
Configuration menu - View commit details
-
Copy full SHA for 99670a1 - Browse repository at this point
Copy the full SHA 99670a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e13984 - Browse repository at this point
Copy the full SHA 3e13984View commit details -
Implement add multiple tracks support to Track Add Command, add empty…
… playlist message if deleting tracks in empty playlist, and tests
Configuration menu - View commit details
-
Copy full SHA for 3813bd7 - Browse repository at this point
Copy the full SHA 3813bd7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 967b9ab - Browse repository at this point
Copy the full SHA 967b9abView commit details -
Rework track add, track del and tweak tests. Rename getTypicalLibrary…
…AfterAdd() to getModifiedTypicalLibrary()
Configuration menu - View commit details
-
Copy full SHA for d3ac3f8 - Browse repository at this point
Copy the full SHA d3ac3f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 00a103f - Browse repository at this point
Copy the full SHA 00a103fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f6b1ef - Browse repository at this point
Copy the full SHA 7f6b1efView commit details
Commits on Nov 4, 2018
-
Configuration menu - View commit details
-
Copy full SHA for f99d181 - Browse repository at this point
Copy the full SHA f99d181View commit details -
Configuration menu - View commit details
-
Copy full SHA for 335b870 - Browse repository at this point
Copy the full SHA 335b870View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8443809 - Browse repository at this point
Copy the full SHA 8443809View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cf32fe - Browse repository at this point
Copy the full SHA 3cf32feView commit details -
Configuration menu - View commit details
-
Copy full SHA for f6f8a21 - Browse repository at this point
Copy the full SHA f6f8a21View commit details -
Configuration menu - View commit details
-
Copy full SHA for d95626a - Browse repository at this point
Copy the full SHA d95626aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fdbb49 - Browse repository at this point
Copy the full SHA 1fdbb49View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ef62a0 - Browse repository at this point
Copy the full SHA 6ef62a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0cc74ea - Browse repository at this point
Copy the full SHA 0cc74eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for a024433 - Browse repository at this point
Copy the full SHA a024433View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5848d1 - Browse repository at this point
Copy the full SHA f5848d1View commit details -
Add status for Player and Playable
The status can be used for validation checks when running player related commands Eg. if Player is not playing, pause command should announce there is no playing track to pause
Configuration menu - View commit details
-
Copy full SHA for 251d205 - Browse repository at this point
Copy the full SHA 251d205View commit details -
Configuration menu - View commit details
-
Copy full SHA for 18d8548 - Browse repository at this point
Copy the full SHA 18d8548View commit details -
Reorder TypicalPlaylistList to put ANIME as first so that when playing default playlist, test success
Configuration menu - View commit details
-
Copy full SHA for 82c1cda - Browse repository at this point
Copy the full SHA 82c1cdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3198fe6 - Browse repository at this point
Copy the full SHA 3198fe6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9da38ff - Browse repository at this point
Copy the full SHA 9da38ffView commit details -
Attempt fix failing travis build
Travis fails with "Toolkit already initialized" exception
Configuration menu - View commit details
-
Copy full SHA for 95a4269 - Browse repository at this point
Copy the full SHA 95a4269View commit details
Commits on Nov 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 127e462 - Browse repository at this point
Copy the full SHA 127e462View commit details -
Configuration menu - View commit details
-
Copy full SHA for beaebd0 - Browse repository at this point
Copy the full SHA beaebd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 959a347 - Browse repository at this point
Copy the full SHA 959a347View commit details -
Configuration menu - View commit details
-
Copy full SHA for ff286d8 - Browse repository at this point
Copy the full SHA ff286d8View commit details
Commits on Nov 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for c498933 - Browse repository at this point
Copy the full SHA c498933View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ca4459 - Browse repository at this point
Copy the full SHA 5ca4459View commit details -
Fix failing travis and appveyor builds
Configure to skip PlayCommandTest when run on travis and appveyor
Configuration menu - View commit details
-
Copy full SHA for a4c5170 - Browse repository at this point
Copy the full SHA a4c5170View commit details -
Configuration menu - View commit details
-
Copy full SHA for a7d2d6f - Browse repository at this point
Copy the full SHA a7d2d6fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4977345 - Browse repository at this point
Copy the full SHA 4977345View commit details -
Improve TrackAddCommand, TrackDeleteCommand tests, add new TEST Playl…
…ist in TypicalPlaylistList
Configuration menu - View commit details
-
Copy full SHA for a96b429 - Browse repository at this point
Copy the full SHA a96b429View commit details -
Configuration menu - View commit details
-
Copy full SHA for a6fce27 - Browse repository at this point
Copy the full SHA a6fce27View commit details
Commits on Nov 8, 2018
-
Merge pull request #101 from CS2103-AY1819S1-T13-3/david
Add statuses to Player for validation checks in player related commands
Configuration menu - View commit details
-
Copy full SHA for e660cf5 - Browse repository at this point
Copy the full SHA e660cf5View commit details -
Merge pull request #68 from CS2103-AY1819S1-T13-3/UI
Update the design of UI
Configuration menu - View commit details
-
Copy full SHA for bdbe4a9 - Browse repository at this point
Copy the full SHA bdbe4a9View commit details -
Merge pull request #70 from CS2103-AY1819S1-T13-3/hansel
Fix add/delete track command for managing playlists
Configuration menu - View commit details
-
Copy full SHA for 0b322f7 - Browse repository at this point
Copy the full SHA 0b322f7View commit details -
Merge pull request #100 from CS2103-AY1819S1-T13-3/gongjie
Add tests for tracksearch command and tracklist command
Configuration menu - View commit details
-
Copy full SHA for 2a8294c - Browse repository at this point
Copy the full SHA 2a8294cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 99fdf64 - Browse repository at this point
Copy the full SHA 99fdf64View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb3e455 - Browse repository at this point
Copy the full SHA eb3e455View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e2f14c - Browse repository at this point
Copy the full SHA 8e2f14cView commit details -
Merge pull request #105 from CS2103-AY1819S1-T13-3/hansel
TrackAdd TrackDelete into v1.4
Configuration menu - View commit details
-
Copy full SHA for 0b1bc37 - Browse repository at this point
Copy the full SHA 0b1bc37View commit details -
Configuration menu - View commit details
-
Copy full SHA for 93ae50b - Browse repository at this point
Copy the full SHA 93ae50bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 287cf2a - Browse repository at this point
Copy the full SHA 287cf2aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f71d9e - Browse repository at this point
Copy the full SHA 3f71d9eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 66b1a3d - Browse repository at this point
Copy the full SHA 66b1a3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a9840f7 - Browse repository at this point
Copy the full SHA a9840f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6ec6972 - Browse repository at this point
Copy the full SHA 6ec6972View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba00d78 - Browse repository at this point
Copy the full SHA ba00d78View commit details -
Configuration menu - View commit details
-
Copy full SHA for 177a956 - Browse repository at this point
Copy the full SHA 177a956View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ac6e86 - Browse repository at this point
Copy the full SHA 1ac6e86View commit details -
Configuration menu - View commit details
-
Copy full SHA for 402df69 - Browse repository at this point
Copy the full SHA 402df69View commit details
Commits on Nov 9, 2018
-
Configuration menu - View commit details
-
Copy full SHA for c8d48c1 - Browse repository at this point
Copy the full SHA c8d48c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae0a81b - Browse repository at this point
Copy the full SHA ae0a81bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53b71b6 - Browse repository at this point
Copy the full SHA 53b71b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dbb56b - Browse repository at this point
Copy the full SHA 1dbb56bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 37f9b1f - Browse repository at this point
Copy the full SHA 37f9b1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aeb0f5 - Browse repository at this point
Copy the full SHA 2aeb0f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 358ada4 - Browse repository at this point
Copy the full SHA 358ada4View commit details -
Configuration menu - View commit details
-
Copy full SHA for ee3f60e - Browse repository at this point
Copy the full SHA ee3f60eView commit details -
Configuration menu - View commit details
-
Copy full SHA for fc1335e - Browse repository at this point
Copy the full SHA fc1335eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a7c6aa8 - Browse repository at this point
Copy the full SHA a7c6aa8View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8b701e - Browse repository at this point
Copy the full SHA a8b701eView commit details -
Merge branch 'v1.4' into yingnan
# Conflicts: # docs/UserGuide.adoc
Configuration menu - View commit details
-
Copy full SHA for c50c78c - Browse repository at this point
Copy the full SHA c50c78cView commit details -
Configuration menu - View commit details
-
Copy full SHA for be2e70a - Browse repository at this point
Copy the full SHA be2e70aView commit details -
Configuration menu - View commit details
-
Copy full SHA for c2af4fa - Browse repository at this point
Copy the full SHA c2af4faView commit details -
Configuration menu - View commit details
-
Copy full SHA for e49cda3 - Browse repository at this point
Copy the full SHA e49cda3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17dcd72 - Browse repository at this point
Copy the full SHA 17dcd72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 62b2f3f - Browse repository at this point
Copy the full SHA 62b2f3fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 55497fd - Browse repository at this point
Copy the full SHA 55497fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb29488 - Browse repository at this point
Copy the full SHA bb29488View commit details -
Configuration menu - View commit details
-
Copy full SHA for 14ce5f8 - Browse repository at this point
Copy the full SHA 14ce5f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4773b18 - Browse repository at this point
Copy the full SHA 4773b18View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74e1afb - Browse repository at this point
Copy the full SHA 74e1afbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d491e04 - Browse repository at this point
Copy the full SHA d491e04View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc04906 - Browse repository at this point
Copy the full SHA bc04906View commit details -
Configuration menu - View commit details
-
Copy full SHA for d93f050 - Browse repository at this point
Copy the full SHA d93f050View commit details
Commits on Nov 10, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d1779ef - Browse repository at this point
Copy the full SHA d1779efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 713eb32 - Browse repository at this point
Copy the full SHA 713eb32View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d9dafd - Browse repository at this point
Copy the full SHA 9d9dafdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a366ba - Browse repository at this point
Copy the full SHA 0a366baView commit details -
Delete deleteCommandParser Delete editCommand Delete editCommand Parser
Configuration menu - View commit details
-
Copy full SHA for 8cb61d9 - Browse repository at this point
Copy the full SHA 8cb61d9View commit details -
- Update the logicComponentSequenceDiagram.png - Update the logicComponentSequenceDiagram.pptx - Correct the playlist del command occurences
Configuration menu - View commit details
-
Copy full SHA for 653e50b - Browse repository at this point
Copy the full SHA 653e50bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd0e7eb - Browse repository at this point
Copy the full SHA bd0e7ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for a82f17f - Browse repository at this point
Copy the full SHA a82f17fView commit details -
Configuration menu - View commit details
-
Copy full SHA for c3e1d80 - Browse repository at this point
Copy the full SHA c3e1d80View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3797f15 - Browse repository at this point
Copy the full SHA 3797f15View commit details -
Remove NullPointerException test in PlayableTrack
Configuration menu - View commit details
-
Copy full SHA for b3f2314 - Browse repository at this point
Copy the full SHA b3f2314View commit details -
Merge pull request #106 from CS2103-AY1819S1-T13-3/yingnan
implement SeekCommand
Configuration menu - View commit details
-
Copy full SHA for 4c1efe6 - Browse repository at this point
Copy the full SHA 4c1efe6View commit details -
Configuration menu - View commit details
-
Copy full SHA for c54fe35 - Browse repository at this point
Copy the full SHA c54fe35View commit details -
Update adoc: Section 3 - Implementation
Added Playlist Management feature, including all commands with emphasis on playlistNewCommand Add PlaylistNewActivityDiagram.png Delete UndoRedo Activity Diagram and image
Configuration menu - View commit details
-
Copy full SHA for 238725f - Browse repository at this point
Copy the full SHA 238725fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 527f2db - Browse repository at this point
Copy the full SHA 527f2dbView commit details
Commits on Nov 11, 2018
-
Configuration menu - View commit details
-
Copy full SHA for cd532e0 - Browse repository at this point
Copy the full SHA cd532e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5925143 - Browse repository at this point
Copy the full SHA 5925143View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b7e7db - Browse repository at this point
Copy the full SHA 5b7e7dbView commit details -
Merge pull request #107 from CS2103-AY1819S1-T13-3/hansel
TrackAddCommand now works with index
Configuration menu - View commit details
-
Copy full SHA for 4feb2cd - Browse repository at this point
Copy the full SHA 4feb2cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for a010d14 - Browse repository at this point
Copy the full SHA a010d14View commit details -
Configuration menu - View commit details
-
Copy full SHA for a159b73 - Browse repository at this point
Copy the full SHA a159b73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7878582 - Browse repository at this point
Copy the full SHA 7878582View commit details -
Configuration menu - View commit details
-
Copy full SHA for 03e0359 - Browse repository at this point
Copy the full SHA 03e0359View commit details -
Configuration menu - View commit details
-
Copy full SHA for 28ee327 - Browse repository at this point
Copy the full SHA 28ee327View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7c5cd2 - Browse repository at this point
Copy the full SHA f7c5cd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19c1c6c - Browse repository at this point
Copy the full SHA 19c1c6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for dab359b - Browse repository at this point
Copy the full SHA dab359bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b689d5b - Browse repository at this point
Copy the full SHA b689d5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 261b119 - Browse repository at this point
Copy the full SHA 261b119View commit details -
Configuration menu - View commit details
-
Copy full SHA for cba5062 - Browse repository at this point
Copy the full SHA cba5062View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca1fbdb - Browse repository at this point
Copy the full SHA ca1fbdbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d47e15 - Browse repository at this point
Copy the full SHA 6d47e15View commit details
Commits on Nov 12, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 194d366 - Browse repository at this point
Copy the full SHA 194d366View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd33dcb - Browse repository at this point
Copy the full SHA dd33dcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d624970 - Browse repository at this point
Copy the full SHA d624970View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b500e2 - Browse repository at this point
Copy the full SHA 5b500e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbfe018 - Browse repository at this point
Copy the full SHA cbfe018View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41201f8 - Browse repository at this point
Copy the full SHA 41201f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e1add8 - Browse repository at this point
Copy the full SHA 0e1add8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4110e2e - Browse repository at this point
Copy the full SHA 4110e2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd94b2c - Browse repository at this point
Copy the full SHA bd94b2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58bdca6 - Browse repository at this point
Copy the full SHA 58bdca6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 73246d0 - Browse repository at this point
Copy the full SHA 73246d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 92f9783 - Browse repository at this point
Copy the full SHA 92f9783View commit details -
Configuration menu - View commit details
-
Copy full SHA for a82f716 - Browse repository at this point
Copy the full SHA a82f716View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c510bd - Browse repository at this point
Copy the full SHA 8c510bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2f6888 - Browse repository at this point
Copy the full SHA e2f6888View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc2c73f - Browse repository at this point
Copy the full SHA bc2c73fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d861af - Browse repository at this point
Copy the full SHA 5d861afView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5dc63b - Browse repository at this point
Copy the full SHA a5dc63bView commit details -
As per requirement of v1.4: https://nus-cs2103-ay1819s1.github.io/cs2103-website/admin/project-w13-v14.html
Configuration menu - View commit details
-
Copy full SHA for 1926fd9 - Browse repository at this point
Copy the full SHA 1926fd9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 206730b - Browse repository at this point
Copy the full SHA 206730bView commit details -
Configuration menu - View commit details
-
Copy full SHA for eb896e0 - Browse repository at this point
Copy the full SHA eb896e0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e6c098 - Browse repository at this point
Copy the full SHA 7e6c098View commit details -
Configuration menu - View commit details
-
Copy full SHA for a08f70a - Browse repository at this point
Copy the full SHA a08f70aView commit details -
Configuration menu - View commit details
-
Copy full SHA for a9a8ae4 - Browse repository at this point
Copy the full SHA a9a8ae4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a781066 - Browse repository at this point
Copy the full SHA a781066View commit details -
Configuration menu - View commit details
-
Copy full SHA for a0ccdb8 - Browse repository at this point
Copy the full SHA a0ccdb8View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbb1a99 - Browse repository at this point
Copy the full SHA bbb1a99View commit details -
Previous PPP exceeds limit of 10 pages Shrink my diagrams in dev guide
Configuration menu - View commit details
-
Copy full SHA for c585526 - Browse repository at this point
Copy the full SHA c585526View commit details -
Configuration menu - View commit details
-
Copy full SHA for c0afe92 - Browse repository at this point
Copy the full SHA c0afe92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91d14cd - Browse repository at this point
Copy the full SHA 91d14cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1884c2b - Browse repository at this point
Copy the full SHA 1884c2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 28cb7cc - Browse repository at this point
Copy the full SHA 28cb7ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6c1ffa - Browse repository at this point
Copy the full SHA b6c1ffaView commit details -
Configuration menu - View commit details
-
Copy full SHA for eae05a9 - Browse repository at this point
Copy the full SHA eae05a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for ace19ec - Browse repository at this point
Copy the full SHA ace19ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for f93d04d - Browse repository at this point
Copy the full SHA f93d04dView commit details
Commits on Mar 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 09743f1 - Browse repository at this point
Copy the full SHA 09743f1View commit details