Skip to content
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

Open
wants to merge 411 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 24, 2018

  1. Merge pull request #58 from CS2103-AY1819S1-T13-3/gongjie

    add list tracks command
    davidchoo12 authored Oct 24, 2018
    Configuration menu
    Copy the full SHA
    86ef7d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd1fc0c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    71cb96e View commit details
    Browse the repository at this point in the history
  4. 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.
    davidchoo12 committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    fe64ac3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    61e270e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    bbb7a35 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    058da33 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2018

  1. update issue tracker link

    NancyQuris authored Oct 25, 2018
    Configuration menu
    Copy the full SHA
    c0b4140 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2018

  1. Configuration menu
    Copy the full SHA
    6c4e818 View commit details
    Browse the repository at this point in the history
  2. Add TrackAddCommand

    Update gitignore for vscode
    handshou committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    fd18009 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4af8b52 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8dd6ef7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d7cc4d3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c118351 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    61732b8 View commit details
    Browse the repository at this point in the history
  8. add tracksearchcommand

    Gongjie663746 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    e86c10c View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f808cbd View commit details
    Browse the repository at this point in the history
  10. Correct for checkstyle

    handshou committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    1f5e0ea View commit details
    Browse the repository at this point in the history
  11. add tracksearchcommand

    Gongjie663746 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    6abb628 View commit details
    Browse the repository at this point in the history
  12. Correct for checkstyle

    handshou committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    9b9e5de View commit details
    Browse the repository at this point in the history
  13. Correct for checkstyle

    handshou committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    02fe094 View commit details
    Browse the repository at this point in the history
  14. Add PlaylistSearchCommandTest

    Add PlaylistSearchCommandParserTest
    Refactor DeleteCommandTest to PlaylistDelCommandTest
    Update multiple test files
    HaydenPhillips committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    336ad13 View commit details
    Browse the repository at this point in the history
  15. Add PlaylistSearchCommand

    Refactor FindCommandParser to PlaylistSearchCommandParser
    Refactor DeleteCommand to PlaylistDelCommand
    Update FindCommand & LibraryParser
    HaydenPhillips committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    96eb0cb View commit details
    Browse the repository at this point in the history
  16. Update CheckStyle

    HaydenPhillips committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    b05c716 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    06a777f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    35ca0f9 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    d8b323c View commit details
    Browse the repository at this point in the history
  20. 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.
    davidchoo12 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    1f4cc8a View commit details
    Browse the repository at this point in the history
  21. Implement PlayCommand

    Add PlayCommandParser
    
    Change LibraryParser switch case for play command
    to use PlayCommandParser
    davidchoo12 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    dfb34d7 View commit details
    Browse the repository at this point in the history
  22. 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
    davidchoo12 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    0135438 View commit details
    Browse the repository at this point in the history
  23. 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.
    davidchoo12 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    3a840d5 View commit details
    Browse the repository at this point in the history
  24. Fix failing tests

    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.
    davidchoo12 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    ae420c9 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2018

  1. Merge pull request #63 from CS2103-AY1819S1-T13-3/david

    Implement PlayCommand
    NancyQuris authored Oct 27, 2018
    Configuration menu
    Copy the full SHA
    6347f81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87c1db1 View commit details
    Browse the repository at this point in the history
  3. fix coding style error

    NancyQuris committed Oct 27, 2018
    Configuration menu
    Copy the full SHA
    bb5ed93 View commit details
    Browse the repository at this point in the history
  4. fix coding style error

    NancyQuris committed Oct 27, 2018
    Configuration menu
    Copy the full SHA
    cadf45b View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2018

  1. Update CheckStyle

    HaydenPhillips committed Oct 28, 2018
    Configuration menu
    Copy the full SHA
    3be068e View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2018

  1. Configuration menu
    Copy the full SHA
    b5069a8 View commit details
    Browse the repository at this point in the history
  2. update checkstyle 4.0

    HaydenPhillips committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    4e290d5 View commit details
    Browse the repository at this point in the history
  3. refactor TypicalPlaylists to TypicalPlaylistList; add test file for T…

    …rackCard and TrackListPanel
    NancyQuris committed Oct 29, 2018
    Configuration menu
    Copy the full SHA
    de782d2 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2018

  1. Configuration menu
    Copy the full SHA
    f1f8023 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54dedf7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f10f8ca View commit details
    Browse the repository at this point in the history
  4. revise coding style

    NancyQuris committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    3d63441 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2018

  1. Add TrackAddCommand tests

    handshou committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    84de2ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ff4b720 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79f57ac View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ca70d1a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9506438 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1b4855b View commit details
    Browse the repository at this point in the history
  7. Implement TrackAddCommand, tests and modified TypicalPlaylists to mod…

    …el library for an added track
    handshou committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    22199dd View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    16f0481 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2afd542 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0ed5668 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    774cb26 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    0fdc2ec View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    5970249 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    91d8bb2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    5513670 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    cfebfd4 View commit details
    Browse the repository at this point in the history
  17. revise coding style

    NancyQuris committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    5cc23cb View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    e38c1b2 View commit details
    Browse the repository at this point in the history
  19. revise coding style

    NancyQuris committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    ced9ebc View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    66e812b View commit details
    Browse the repository at this point in the history
  21. Merge pull request #64 from CS2103-AY1819S1-T13-3/UI

    Create TrackListPanel in UI component
    davidchoo12 authored Oct 31, 2018
    Configuration menu
    Copy the full SHA
    4aeeaf0 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    db17f04 View commit details
    Browse the repository at this point in the history
  23. update UserGuide.adoc

    NancyQuris committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    a9afd2f View commit details
    Browse the repository at this point in the history
  24. Update architecture diagram

    Includes Player component
    davidchoo12 committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    d756b89 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    d2f2398 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    b13d79c View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    1b97c65 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    ec255de View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    1b7f4c7 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    51e4d47 View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    1077e8f View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    9e6397f View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    59447b7 View commit details
    Browse the repository at this point in the history
  34. Add PlaylistDelCommandParserTest

    Add PlaylistDelCommandParser
    Add 4 sample Playlists
    HaydenPhillips committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    35b204e View commit details
    Browse the repository at this point in the history
  35. Merge pull request #65 from CS2103-AY1819S1-T13-3/tracksearch

    Implement `track search` command and track list panel UI
    davidchoo12 authored Oct 31, 2018
    Configuration menu
    Copy the full SHA
    0a12703 View commit details
    Browse the repository at this point in the history
  36. update UI image

    NancyQuris authored Oct 31, 2018
    Configuration menu
    Copy the full SHA
    aa91b31 View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    190c221 View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    b9189ab View commit details
    Browse the repository at this point in the history
  39. Merge pull request #61 from CS2103-AY1819S1-T13-3/hayden

    Implement playlist search and delete commands
    davidchoo12 authored Oct 31, 2018
    Configuration menu
    Copy the full SHA
    f42f292 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    e9da940 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    88f5fb7 View commit details
    Browse the repository at this point in the history
  42. 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
    davidchoo12 committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    a5f73aa View commit details
    Browse the repository at this point in the history
  43. Bump to v1.3.0

    davidchoo12 committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    25603c0 View commit details
    Browse the repository at this point in the history
  44. Fix log file name

    davidchoo12 committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    28fa43f View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    5df7c68 View commit details
    Browse the repository at this point in the history
  46. Implement TrackDeleteCommand, TrackDeleteCommandParser, TrackDeleteCo…

    …mmandTest and add Playlist methods: hasTrack(), deleteTrack()
    handshou committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    ae455ee View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    901037d View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    9f76886 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2018

  1. Merge pull request #60 from CS2103-AY1819S1-T13-3/hansel

    Add/delete track command for managing playlists
    davidchoo12 authored Nov 1, 2018
    Configuration menu
    Copy the full SHA
    bd5053d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a7a1959 View commit details
    Browse the repository at this point in the history
  3. Update and fix user guide

    Update the quick start
    Fix search commands to remove q/
    Fix delete commands to remove i/
    davidchoo12 committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    ccdbe2c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    18f4503 View commit details
    Browse the repository at this point in the history
  5. Make search commands work with substrings

    Basically use string.contains to search
    davidchoo12 committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    917d61a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8246dea View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2018

  1. update theme color of UI to green, add captain on the top of trackLis…

    …tPanel and playlistListPanel
    NancyQuris committed Nov 2, 2018
    Configuration menu
    Copy the full SHA
    974186f View commit details
    Browse the repository at this point in the history
  2. update UI image

    NancyQuris committed Nov 2, 2018
    Configuration menu
    Copy the full SHA
    ac25e86 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d6911a8 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f5076c2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8417f52 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    99670a1 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3e13984 View commit details
    Browse the repository at this point in the history
  8. Implement add multiple tracks support to Track Add Command, add empty…

    … playlist message if deleting tracks in empty playlist, and tests
    handshou committed Nov 2, 2018
    Configuration menu
    Copy the full SHA
    3813bd7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    967b9ab View commit details
    Browse the repository at this point in the history
  10. Rework track add, track del and tweak tests. Rename getTypicalLibrary…

    …AfterAdd() to getModifiedTypicalLibrary()
    handshou committed Nov 2, 2018
    Configuration menu
    Copy the full SHA
    d3ac3f8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    00a103f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7f6b1ef View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2018

  1. Configuration menu
    Copy the full SHA
    f99d181 View commit details
    Browse the repository at this point in the history
  2. Update README.adoc

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    335b870 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8443809 View commit details
    Browse the repository at this point in the history
  4. update Coverage Status

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    3cf32fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f6f8a21 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d95626a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1fdbb49 View commit details
    Browse the repository at this point in the history
  8. Update .codacy.yml

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    6ef62a0 View commit details
    Browse the repository at this point in the history
  9. Update .codacy.yml

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    0cc74ea View commit details
    Browse the repository at this point in the history
  10. Update .codacy.yml

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    a024433 View commit details
    Browse the repository at this point in the history
  11. Update .codacy.yml

    NancyQuris authored Nov 4, 2018
    Configuration menu
    Copy the full SHA
    f5848d1 View commit details
    Browse the repository at this point in the history
  12. 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
    davidchoo12 committed Nov 4, 2018
    Configuration menu
    Copy the full SHA
    251d205 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    18d8548 View commit details
    Browse the repository at this point in the history
  14. Add PlayCommandTest

    Reorder TypicalPlaylistList to put ANIME as first
    so that when playing default playlist, test success
    davidchoo12 committed Nov 4, 2018
    Configuration menu
    Copy the full SHA
    82c1cda View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3198fe6 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    9da38ff View commit details
    Browse the repository at this point in the history
  17. Attempt fix failing travis build

    Travis fails with "Toolkit already initialized" exception
    davidchoo12 committed Nov 4, 2018
    Configuration menu
    Copy the full SHA
    95a4269 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2018

  1. Configuration menu
    Copy the full SHA
    127e462 View commit details
    Browse the repository at this point in the history
  2. implement seek command

    NancyQuris committed Nov 5, 2018
    Configuration menu
    Copy the full SHA
    beaebd0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    959a347 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ff286d8 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2018

  1. Configuration menu
    Copy the full SHA
    c498933 View commit details
    Browse the repository at this point in the history
  2. fix getDuration problem

    NancyQuris committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    5ca4459 View commit details
    Browse the repository at this point in the history
  3. Fix failing travis and appveyor builds

    Configure to skip PlayCommandTest when run on travis and appveyor
    davidchoo12 committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    a4c5170 View commit details
    Browse the repository at this point in the history
  4. Add PlayerManagerTest

    davidchoo12 committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    a7d2d6f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4977345 View commit details
    Browse the repository at this point in the history
  6. Improve TrackAddCommand, TrackDeleteCommand tests, add new TEST Playl…

    …ist in TypicalPlaylistList
    handshou committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    a96b429 View commit details
    Browse the repository at this point in the history
  7. Fix for codacy

    handshou committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    a6fce27 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2018

  1. Merge pull request #101 from CS2103-AY1819S1-T13-3/david

    Add statuses to Player for validation checks in player related commands
    davidchoo12 authored Nov 8, 2018
    Configuration menu
    Copy the full SHA
    e660cf5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #68 from CS2103-AY1819S1-T13-3/UI

    Update the design of UI
    davidchoo12 authored Nov 8, 2018
    Configuration menu
    Copy the full SHA
    bdbe4a9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #70 from CS2103-AY1819S1-T13-3/hansel

    Fix add/delete track command for managing playlists
    davidchoo12 authored Nov 8, 2018
    Configuration menu
    Copy the full SHA
    0b322f7 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #100 from CS2103-AY1819S1-T13-3/gongjie

    Add tests for tracksearch command and tracklist command
    davidchoo12 authored Nov 8, 2018
    Configuration menu
    Copy the full SHA
    2a8294c View commit details
    Browse the repository at this point in the history
  5. add nancyquirs.adoc

    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    99fdf64 View commit details
    Browse the repository at this point in the history
  6. update nancyquris.adoc

    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    eb3e455 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8e2f14c View commit details
    Browse the repository at this point in the history
  8. Merge pull request #105 from CS2103-AY1819S1-T13-3/hansel

    TrackAdd TrackDelete into v1.4
    handshou authored Nov 8, 2018
    Configuration menu
    Copy the full SHA
    0b1bc37 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    93ae50b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    287cf2a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3f71d9e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    66b1a3d View commit details
    Browse the repository at this point in the history
  13. Revert "update nancyquris.adoc"

    This reverts commit eb3e455.
    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    a9840f7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6ec6972 View commit details
    Browse the repository at this point in the history
  15. comment test file

    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    ba00d78 View commit details
    Browse the repository at this point in the history
  16. comment test file

    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    177a956 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    1ac6e86 View commit details
    Browse the repository at this point in the history
  18. fix coding style

    NancyQuris committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    402df69 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2018

  1. Configuration menu
    Copy the full SHA
    c8d48c1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae0a81b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    53b71b6 View commit details
    Browse the repository at this point in the history
  4. Update user guide

    davidchoo12 committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    1dbb56b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    37f9b1f View commit details
    Browse the repository at this point in the history
  6. Fix more user guide

    davidchoo12 committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    2aeb0f5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    358ada4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ee3f60e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fc1335e View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    a7c6aa8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a8b701e View commit details
    Browse the repository at this point in the history
  12. Merge branch 'v1.4' into yingnan

    # Conflicts:
    #	docs/UserGuide.adoc
    NancyQuris committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    c50c78c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    be2e70a View commit details
    Browse the repository at this point in the history
  14. Fix failing PlayCommandTest

    when playing default playlist
    davidchoo12 committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    c2af4fa View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e49cda3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    17dcd72 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    62b2f3f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    55497fd View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    bb29488 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    14ce5f8 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    4773b18 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    74e1afb View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    d491e04 View commit details
    Browse the repository at this point in the history
  24. fix coding style erorr

    NancyQuris committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    bc04906 View commit details
    Browse the repository at this point in the history
  25. fix coding style

    NancyQuris committed Nov 9, 2018
    Configuration menu
    Copy the full SHA
    d93f050 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2018

  1. Configuration menu
    Copy the full SHA
    d1779ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    713eb32 View commit details
    Browse the repository at this point in the history
  3. fix coding style error

    NancyQuris committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    9d9dafd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a366ba View commit details
    Browse the repository at this point in the history
  5. Delete findCommand

    Delete deleteCommandParser
    Delete editCommand
    Delete editCommand Parser
    HaydenPhillips committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    8cb61d9 View commit details
    Browse the repository at this point in the history
  6. Update developerDocs

    - Update the logicComponentSequenceDiagram.png
    - Update the logicComponentSequenceDiagram.pptx
    - Correct the playlist del command occurences
    HaydenPhillips committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    653e50b View commit details
    Browse the repository at this point in the history
  7. Add DurationCommand

    davidchoo12 committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    bd0e7eb View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a82f17f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c3e1d80 View commit details
    Browse the repository at this point in the history
  10. Format duration string

    davidchoo12 committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    3797f15 View commit details
    Browse the repository at this point in the history
  11. Fix codacy failing build

    Remove NullPointerException test in PlayableTrack
    davidchoo12 committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    b3f2314 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #106 from CS2103-AY1819S1-T13-3/yingnan

    implement SeekCommand
    NancyQuris authored Nov 10, 2018
    Configuration menu
    Copy the full SHA
    4c1efe6 View commit details
    Browse the repository at this point in the history
  13. update Ui.png

    NancyQuris committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    c54fe35 View commit details
    Browse the repository at this point in the history
  14. 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
    HaydenPhillips committed Nov 10, 2018
    Configuration menu
    Copy the full SHA
    238725f View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    527f2db View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2018

  1. Update dev guide

    Gongjie663746 committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    cd532e0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5925143 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b7e7db View commit details
    Browse the repository at this point in the history
  4. Merge pull request #107 from CS2103-AY1819S1-T13-3/hansel

    TrackAddCommand now works with index
    davidchoo12 authored Nov 11, 2018
    Configuration menu
    Copy the full SHA
    4feb2cd View commit details
    Browse the repository at this point in the history
  5. update developer guide

    NancyQuris committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    a010d14 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a159b73 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7878582 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    03e0359 View commit details
    Browse the repository at this point in the history
  9. update PPP

    Gongjie663746 committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    28ee327 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f7c5cd2 View commit details
    Browse the repository at this point in the history
  11. update ppp

    Gongjie663746 committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    19c1c6c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    dab359b View commit details
    Browse the repository at this point in the history
  13. update PPP

    NancyQuris committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    b689d5b View commit details
    Browse the repository at this point in the history
  14. Update nancyquris.adoc

    NancyQuris authored Nov 11, 2018
    Configuration menu
    Copy the full SHA
    261b119 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    cba5062 View commit details
    Browse the repository at this point in the history
  16. update PPP and about us

    Gongjie663746 committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    ca1fbdb View commit details
    Browse the repository at this point in the history
  17. update about us

    Gongjie663746 committed Nov 11, 2018
    Configuration menu
    Copy the full SHA
    6d47e15 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2018

  1. update PPP

    Gongjie663746 committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    194d366 View commit details
    Browse the repository at this point in the history
  2. delete commented lines

    Gongjie663746 committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    dd33dcb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d624970 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b500e2 View commit details
    Browse the repository at this point in the history
  5. remove irrelevant codes

    NancyQuris committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    cbfe018 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    41201f8 View commit details
    Browse the repository at this point in the history
  7. fix the userguide

    Gongjie663746 committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    0e1add8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4110e2e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    bd94b2c View commit details
    Browse the repository at this point in the history
  10. correct indentation level

    NancyQuris authored Nov 12, 2018
    Configuration menu
    Copy the full SHA
    58bdca6 View commit details
    Browse the repository at this point in the history
  11. update PPP

    NancyQuris committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    73246d0 View commit details
    Browse the repository at this point in the history
  12. Update README.adoc

    NancyQuris authored Nov 12, 2018
    Configuration menu
    Copy the full SHA
    92f9783 View commit details
    Browse the repository at this point in the history
  13. Update UserGuide.adoc

    NancyQuris authored Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a82f716 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    8c510bd View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e2f6888 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    bc2c73f View commit details
    Browse the repository at this point in the history
  17. Add Hayden's PPP

    Edit DevGuide tags
    Edit UserGuide tags
    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    5d861af View commit details
    Browse the repository at this point in the history
  18. Edit PPP adoc name

    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a5dc63b View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    1926fd9 View commit details
    Browse the repository at this point in the history
  20. edit hayden ppp

    edit devGuide
    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    206730b View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    eb896e0 View commit details
    Browse the repository at this point in the history
  22. PPP touch-ups Hayden

    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    7e6c098 View commit details
    Browse the repository at this point in the history
  23. PPP final Hayden

    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a08f70a View commit details
    Browse the repository at this point in the history
  24. PPP final Hayden

    HaydenPhillips committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a9a8ae4 View commit details
    Browse the repository at this point in the history
  25. update PPP

    NancyQuris committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a781066 View commit details
    Browse the repository at this point in the history
  26. update PPP

    NancyQuris committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    a0ccdb8 View commit details
    Browse the repository at this point in the history
  27. update PPP's tag

    NancyQuris committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    bbb1a99 View commit details
    Browse the repository at this point in the history
  28. Update david's PPP

    Previous PPP exceeds limit of 10 pages
    Shrink my diagrams in dev guide
    davidchoo12 committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    c585526 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    c0afe92 View commit details
    Browse the repository at this point in the history
  30. Bump to v1.4

    davidchoo12 committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    91d14cd View commit details
    Browse the repository at this point in the history
  31. Update AboutUs on david's part

    And Hayden's url
    davidchoo12 authored Nov 12, 2018
    Configuration menu
    Copy the full SHA
    1884c2b View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    28cb7cc View commit details
    Browse the repository at this point in the history
  33. Fix checkstyle

    handshou committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    b6c1ffa View commit details
    Browse the repository at this point in the history
  34. small mistake fix

    handshou committed Nov 12, 2018
    Configuration menu
    Copy the full SHA
    eae05a9 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    ace19ec View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    f93d04d View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2019

  1. Removing id

    handshou authored Mar 9, 2019
    Configuration menu
    Copy the full SHA
    09743f1 View commit details
    Browse the repository at this point in the history