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

[T7][T14-C2] #109

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

Commits on Oct 18, 2016

  1. Update UserGuide.md

    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    922f9d5 View commit details
    Browse the repository at this point in the history
  2. Update UserGuide.md

    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    3683aa5 View commit details
    Browse the repository at this point in the history
  3. Update DeveloperGuide.md

    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    9778146 View commit details
    Browse the repository at this point in the history
  4. Update DeveloperGuide.md

    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    4e95bf5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8c2d116 View commit details
    Browse the repository at this point in the history
  6. Update DeveloperGuide.md

    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    784a178 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #61 from CS2103AUG2016-T14-C2/V0.3-Update-Gradle

    Merge V0.3-Update-Gradle
    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    85ade9c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ca0b76b View commit details
    Browse the repository at this point in the history
  9. Merge pull request #62 from CS2103AUG2016-T14-C2/V0.3-Update-SUT

    Merge V0.3-Update-SUT
    qhng authored Oct 18, 2016
    Configuration menu
    Copy the full SHA
    ac64049 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2016

  1. Configuration menu
    Copy the full SHA
    ce54074 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a41a012 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2016

  1. Merge pull request #63 from CS2103AUG2016-T14-C2/V0.3-Update-Docs

    Merge V0.3-Update-Docs
    qhng authored Oct 20, 2016
    Configuration menu
    Copy the full SHA
    e9b9073 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #64 from CS2103AUG2016-T14-C2/V0.3

    Merge V0.3 to master
    qhng authored Oct 20, 2016
    Configuration menu
    Copy the full SHA
    0bc2ad0 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2016

  1. Refactor and clean code base

    qhng committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    b722c1c View commit details
    Browse the repository at this point in the history
  2. Refactor TaskFieldParser,IndexParser,FindCommandParser subparsing met…

    …hods to not reset parameter.
    
    Add AliasCommandParser
    Add skeleton methods addPreprocessorSymbol and removePreprocessorSymbol in LogicManager to prepare for future alias implementation
    Update ParserTest to conduct unit test on AliasCommandParser
    e0003801 committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    4275e33 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #71 from CS2103AUG2016-T14-C2/V0.4-Refactor-And-Cl…

    …eanup
    
    Merge V0.4-Refactor-And-Cleanup
    qhng authored Oct 21, 2016
    Configuration menu
    Copy the full SHA
    9d448c2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    55844cf View commit details
    Browse the repository at this point in the history
  5. Refactor Command abstract class setData() method to setModel().

    Add setLogic() method in Command abstract class
    Add LogicRequiringCommand and ModelRequiringCommand abstract classes to provide a way to get access to logic and model dependencies
    Refactor *Command classes to inherit from ModelRequiringCommand and LogicRequiringCommand whereas before that they inherit directly from Command to gain dependencies.
    e0003801 committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    5247497 View commit details
    Browse the repository at this point in the history
  6. Add parsing preprocessing handling methods in Logic interface and Log…

    …icManager
    
    Modify AliasCommand to prepare for its implementation
    Add preprocessing handling methods in MasterParser
    e0003801 committed Oct 21, 2016
    Configuration menu
    Copy the full SHA
    0fb08ec View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2016

  1. Add AliasSymbol as the model data for alias symbols

    Add AliasSymbolList as the collection class for storing AliasSymbol
    Add DuplicateSymbolKeywordException, SymbolKeywordNotFoundException class for errors when using AliasSymbolList add and remove method
    Add AliasSymbolChangedEvent for notifying observers that alias symbol has been added or removed
    Add XmlAdaptedAliasSymbol which is used for serialization and deserialization of AliasSymbol
    Modify SavvyTasker class to provide methods to add and remove AliasSymbol data into internal AliasSymbolList
    Modify ReadOnlySavyTasker to provide methods for accessing AliasSymbolList
    Modify Model interface and ModelManager class to provide methods to add and remove AliasSymbol data as well as raise AliasSymbolChangedEvent
    Modify XmlSerializableSavvyTasker to be capable of being stored/loaded to for AliasSymbol data
    Modify Logic interface to no longer expose AliasSymbol handling methods and undo/redo functionality - Changes should be communicated through events
    Modify LogicManager to subscribe to AliasSymbolChangedEvent to handle adding and removal of AliasSymbols and removed previous addPreprocessSymbol and removePreprocessSymbol methods
    Implement LogicManager.loadAllAliasSymbols() to add externally loaded symbols (from the storage) into the parser during construction stage
    Implement AliasCommand.execute() to work properly
    Refactor AliasCommandModel and AliasCommandParser to use consistent naming of AliasSymbol components
    Fix XmlAdaptedTask showing wrong comment
    Remove LogicRequiringModel class - now AliasSymbol changes are communicated through events rather than directly through LogicRequiringModel dependency
    e0003801 committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    df09c0a View commit details
    Browse the repository at this point in the history
  2. Add UnaliasCommandParser to parse unalias command

    Implement UnaliasCommand.execute() to execute unalias command
    Refactor UnaliasCommandModel to use consistent naming
    Refactor AliasCommand to use consistent naming
    Modify ParserTest to also test UnaliasCommandParser
    Update UserGuide.md to reflect changes in alias and unalias command
    e0003801 committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    64fe1ab View commit details
    Browse the repository at this point in the history
  3. Add canParseHeader() method in Logic and LogicManager to support quer…

    …ying of ability of parsing a command
    
    Add dependency from AliasCommand to Logic
    Add checking in AliasCommand.execute() to prevent using command headers as aliasing keyword
    Update MasterParser.parse() to enable aliasing
    Update AliasCommandParser and UnaliasCommandParser to turn off aliasing
    Modify ParserTest to test using MasterParser instead of individual parser.
    Modify ParserTest to conduct parameterized testing.
    e0003801 committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    ea16c55 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #74 from CS2103AUG2016-T14-C2/V0.4-Alias

    V0.4 alias, Closes #69
    e0003801 authored Oct 22, 2016
    Configuration menu
    Copy the full SHA
    aad8465 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2016

  1. Modify to MasterParser.registerCommandParser() to return boolean if r…

    …egistration fails, and to reject any parser with the same header as existing AliasSymbol keyword
    
    Rollback ParserTest and separated MasterParser test into its own test case
    Organised imports for all classes
    e0003801 committed Oct 23, 2016
    Configuration menu
    Copy the full SHA
    2641c57 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2016

  1. Established structure for undo and redo, missing inverse commands for…

    … each undoable operation
    tet54 committed Oct 24, 2016
    Configuration menu
    Copy the full SHA
    35217da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    242f09c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    82f3acf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8ca6b2e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f9dd4e4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8569ef3 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #77 from CS2103AUG2016-T14-C2/V0.4-Fix-SUT

    Merge V0.4-Fix-SUT
    qhng authored Oct 24, 2016
    Configuration menu
    Copy the full SHA
    0551581 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    84a28ef View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    802a4ce View commit details
    Browse the repository at this point in the history
  10. Updated command methods

    tet54 committed Oct 24, 2016
    Configuration menu
    Copy the full SHA
    dbb043f View commit details
    Browse the repository at this point in the history
  11. Implemented Mark Command

    tet54 committed Oct 24, 2016
    Configuration menu
    Copy the full SHA
    19cf4b1 View commit details
    Browse the repository at this point in the history
  12. Updated mark command

    tet54 committed Oct 24, 2016
    Configuration menu
    Copy the full SHA
    3eefdcd View commit details
    Browse the repository at this point in the history
  13. Implemented unmark command

    tet54 committed Oct 24, 2016
    Configuration menu
    Copy the full SHA
    ae0a954 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2016

  1. Configuration menu
    Copy the full SHA
    31d7ba3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56a0538 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #78 from CS2103AUG2016-T14-C2/V0.4-Remove-CommandM…

    …odels
    
    Merge V0.4-Remove-CommandModels
    qhng authored Oct 25, 2016
    Configuration menu
    Copy the full SHA
    23a7d3d View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2016

  1. Update Architecture diagram

    e0003801 authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    e20948d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aaf4d79 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    614db60 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3191f50 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c54fcbc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    43c5e9c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0b87be0 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #83 from CS2103AUG2016-T14-C2/V0.4-Implement-Smart…

    …-Defaults
    
    Merge V0.4-Implement-Smart-Defaults
    Fixes #79 #80 #72 #66 #43
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    53bbd1c View commit details
    Browse the repository at this point in the history
  9. Implement search by category

    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    23f2a3e View commit details
    Browse the repository at this point in the history
  10. Merge pull request #84 from CS2103AUG2016-T14-C2/V0.4-Implement-Searc…

    …h-By-Category
    
    Merge V0.4-Implement-Search-By-Category
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    f4e2b55 View commit details
    Browse the repository at this point in the history
  11. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    3a92dc3 View commit details
    Browse the repository at this point in the history
  12. Revert "Update UserGuide.md"

    This reverts commit 3a92dc3.
    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    69a578c View commit details
    Browse the repository at this point in the history
  13. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    a5dad2c View commit details
    Browse the repository at this point in the history
  14. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    aaae65f View commit details
    Browse the repository at this point in the history
  15. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    48dde8e View commit details
    Browse the repository at this point in the history
  16. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    3c77917 View commit details
    Browse the repository at this point in the history
  17. Update UserGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    8bc1a72 View commit details
    Browse the repository at this point in the history
  18. Update DeveloperGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    fcfa44d View commit details
    Browse the repository at this point in the history
  19. Update diagrams

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    c00e3e6 View commit details
    Browse the repository at this point in the history
  20. Update diagrams

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    5f343bd View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    e8f4f1a View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    07483c7 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    1ff858b View commit details
    Browse the repository at this point in the history
  24. Update Diagrams

    e0003801 authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    9f44ee6 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    4c637f1 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    fb06eac View commit details
    Browse the repository at this point in the history
  27. Deleted

    e0003801 authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    31bcda8 View commit details
    Browse the repository at this point in the history
  28. Add LogicClassDiagram

    Previous commit did not go through for some weird reason
    e0003801 authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    e83270f View commit details
    Browse the repository at this point in the history
  29. Collate codes

    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    e760248 View commit details
    Browse the repository at this point in the history
  30. Merge pull request #88 from CS2103AUG2016-T14-C2/V0.4-Qh-Collate

    Merge V0.4-Qh-Collate
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    c16278e View commit details
    Browse the repository at this point in the history
  31. Collate update

    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    ecfaeda View commit details
    Browse the repository at this point in the history
  32. Merge pull request #89 from CS2103AUG2016-T14-C2/V0.4-Qh-Collate

    Collate update
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    a88916b View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    b426ff4 View commit details
    Browse the repository at this point in the history
  34. Update DeveloperGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    570ccb6 View commit details
    Browse the repository at this point in the history
  35. Update DeveloperGuide.md

    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    a37fa41 View commit details
    Browse the repository at this point in the history
  36. Revert "Add additional product survey"

    This reverts commit b426ff4.
    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    6646444 View commit details
    Browse the repository at this point in the history
  37. Add //@@author

    e0003801 committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    8063708 View commit details
    Browse the repository at this point in the history
  38. Update collate

    qhng committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    c13abd2 View commit details
    Browse the repository at this point in the history
  39. Temporarily Fixes #82

    e0003801 committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    2c0982f View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    bf1cf2e View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    ecf5636 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    935410b View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    0d0d0e8 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    6df335e View commit details
    Browse the repository at this point in the history
  45. Merge pull request #91 from CS2103AUG2016-T14-C2/V0.4-Modify-Remove

    Merge V0.4-Modify-Remove
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    826ec60 View commit details
    Browse the repository at this point in the history
  46. Merge pull request #92 from CS2103AUG2016-T14-C2/V0.4

    V0.4 Milestone
    qhng authored Oct 26, 2016
    Configuration menu
    Copy the full SHA
    56c40d7 View commit details
    Browse the repository at this point in the history
  47. Updated with @@author

    tet54 committed Oct 26, 2016
    Configuration menu
    Copy the full SHA
    3f189cf View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2016

  1. Update collate

    qhng committed Oct 27, 2016
    Configuration menu
    Copy the full SHA
    82129e3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #93 from CS2103AUG2016-T14-C2/V0.4

    V0.4 Milestone - Collate Update
    qhng authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    c200ddb View commit details
    Browse the repository at this point in the history
  3. Update AboutUs.md

    qhng authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    675e78f View commit details
    Browse the repository at this point in the history
  4. Update AboutUs.md

    qhng authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    40b99a9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b31de34 View commit details
    Browse the repository at this point in the history
  6. Update Diagrams

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    54b8bf3 View commit details
    Browse the repository at this point in the history
  7. Update UserGuide.md

    qhng authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    3fc8e06 View commit details
    Browse the repository at this point in the history
  8. Update DeveloperGuide.md

    qhng authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    1c5e25f View commit details
    Browse the repository at this point in the history
  9. Update DeveloperGuide.md

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    64738fc View commit details
    Browse the repository at this point in the history
  10. Update AboutUs

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    054fc30 View commit details
    Browse the repository at this point in the history
  11. Update AboutUs

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    8ce16d4 View commit details
    Browse the repository at this point in the history
  12. Update DeveloperGuide

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    11cbfc4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c66b8e1 View commit details
    Browse the repository at this point in the history
  14. Update Diagrams

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    04fcd2b View commit details
    Browse the repository at this point in the history
  15. Update DeveloperGuide

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    a5c8358 View commit details
    Browse the repository at this point in the history
  16. Update AboutUs

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    5ca47e4 View commit details
    Browse the repository at this point in the history
  17. Update AboutUs

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    2c4c659 View commit details
    Browse the repository at this point in the history
  18. Update UserGuide

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    bde273d View commit details
    Browse the repository at this point in the history
  19. Update UserGuide

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    e350192 View commit details
    Browse the repository at this point in the history
  20. Update UserGuide.md

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    d4dea14 View commit details
    Browse the repository at this point in the history
  21. Update UserGuide.md

    e0003801 authored Oct 27, 2016
    Configuration menu
    Copy the full SHA
    c983765 View commit details
    Browse the repository at this point in the history
  22. Revert "Add ParserClassDiagram, Revert LogicClassDiagram"

    This reverts commit b31de34.
    qhng committed Oct 27, 2016
    Configuration menu
    Copy the full SHA
    be2f914 View commit details
    Browse the repository at this point in the history
  23. Revert "Update Diagrams"

    This reverts commit 54b8bf3.
    qhng committed Oct 27, 2016
    Configuration menu
    Copy the full SHA
    020c8f3 View commit details
    Browse the repository at this point in the history
  24. Revert "Update DeveloperGuide.md"

    This reverts commit 64738fc.
    qhng committed Oct 27, 2016
    Configuration menu
    Copy the full SHA
    29e6901 View commit details
    Browse the repository at this point in the history
  25. Update docs with tags

    tet54 committed Oct 27, 2016
    Configuration menu
    Copy the full SHA
    2f9dfe4 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2016

  1. Update collate docs

    qhng committed Oct 28, 2016
    Configuration menu
    Copy the full SHA
    a5e2404 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #94 from CS2103AUG2016-T14-C2/master-update-docs

    Merge Master-Update-Docs
    qhng authored Oct 28, 2016
    Configuration menu
    Copy the full SHA
    e41dde8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b4d813 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6118ab7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fe1356b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3cb0ad8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #101 from CS2103AUG2016-T14-C2/V0.5rc-Implement-Ju…

    …mp-To-Item
    
    Merge V0.5rc-Implement-Jump-To-Item
    qhng authored Oct 28, 2016
    Configuration menu
    Copy the full SHA
    68aeeb2 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2016

  1. Configuration menu
    Copy the full SHA
    9e75b02 View commit details
    Browse the repository at this point in the history
  2. Implement recurring tasks

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    e00b458 View commit details
    Browse the repository at this point in the history
  3. Fix bug for add/modify not jumping to list item if the first item on …

    …the list is added/modified
    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    a73a3cc View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    90e3a39 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #104 from CS2103AUG2016-T14-C2/V0.5rc-Implement-Re…

    …curring-Tasks
    
    Merge V0.5rc implement recurring tasks
    qhng authored Oct 29, 2016
    Configuration menu
    Copy the full SHA
    9675f25 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7b44086 View commit details
    Browse the repository at this point in the history
  7. Increase test coverage

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    6e22ca9 View commit details
    Browse the repository at this point in the history
  8. Include collate tool

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    bb2137b View commit details
    Browse the repository at this point in the history
  9. Update collates

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    6a79168 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #106 from CS2103AUG2016-T14-C2/V0.5rc-Increase-Tes…

    …t-Coverage
    
    V0.5rc increase test coverage
    qhng authored Oct 29, 2016
    Configuration menu
    Copy the full SHA
    ecf942d View commit details
    Browse the repository at this point in the history
  11. Fix locale issue for SUT

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    bca0b98 View commit details
    Browse the repository at this point in the history
  12. Fix locale defaults in SUT

    qhng committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    e41c89e View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b16d9a7 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #108 from CS2103AUG2016-T14-C2/V0.5rc-Increase-Tes…

    …t-Coverage
    
    Fix locale issue for SUT
    qhng authored Oct 29, 2016
    Configuration menu
    Copy the full SHA
    518667b View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2016

  1. Fix tokens that directly follows switches requiring a space to be rec…

    …ognized as an alias keyword
    
    Remove option specifier for list command (cumbersome!)
    Update parser test according to above change
    Add docs to MasterParser.parse()
    Fix TaskListParser comments
    e0003801 committed Oct 30, 2016
    Configuration menu
    Copy the full SHA
    9bcb28c View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2016

  1. Refactor Person to Task

    qhng committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    a927598 View commit details
    Browse the repository at this point in the history
  2. Refactor Person to Task

    qhng committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    d1c0dec View commit details
    Browse the repository at this point in the history
  3. Refactor Person to Task

    qhng committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    f2fec67 View commit details
    Browse the repository at this point in the history
  4. Implement list alias

    qhng committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    b8a3844 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #109 from CS2103AUG2016-T14-C2/V0.5rc-Parser-Refin…

    …ement
    
    Parser bug fixes and refinements
    e0003801 authored Nov 1, 2016
    Configuration menu
    Copy the full SHA
    4b8552d View commit details
    Browse the repository at this point in the history
  6. Move ListType enum to seedu/savvytasker/model package

    Remove unused comment in UnaliasCommand
    Change AliasCommand undo/redo methods' @@author tag to correct owner
    e0003801 committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    1758378 View commit details
    Browse the repository at this point in the history
  7. Fix AliasCommandParser and UnaliasCommandParser being case sensitive.

    Fix AliasSymbol keyword being case sensitive
    Add StorageCommandParser
    Update ParserTest
    e0003801 committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    2808d39 View commit details
    Browse the repository at this point in the history
  8. Make AliasSymbolChanged members private and provided public getters

    Extract common code into a private method in LogicManager.handleAliasSymbolChangedEvent
    Refactor if statement to follow convention in UnaliasCommand.execute
    Refactor TaskFieldParser into an abstract CommandParser
    Refactor AddCommandParser and ModifyCommandParser to inherit from TaskFieldParser
    e0003801 committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    69a3b24 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    96992c3 View commit details
    Browse the repository at this point in the history
  10. Implement list alias

    qhng committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    01e6e91 View commit details
    Browse the repository at this point in the history
  11. Refactor ParserTest methods to follow convention

    Refactor MasterParser to improve SLAP
    e0003801 committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    8734b2c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cfa6a08 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3ac53a1 View commit details
    Browse the repository at this point in the history
  14. Merge branch 'V0.5rc' of https://github.com/CS2103AUG2016-T14-C2/main

    …into V0.5rc-List-Alias
    e0003801 committed Nov 1, 2016
    Configuration menu
    Copy the full SHA
    cf33f6b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3961091 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    e97355a View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2016

  1. Configuration menu
    Copy the full SHA
    97236c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    87734d8 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #116 from CS2103AUG2016-T14-C2/V0.5rc-List-Alias

    Merge V0.5rc list alias
    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    9bd629d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c2232a7 View commit details
    Browse the repository at this point in the history
  5. Add @@author tags

    qhng committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    99d547f View commit details
    Browse the repository at this point in the history
  6. Minor changes

    tet54 committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    17613d2 View commit details
    Browse the repository at this point in the history
  7. Update method comments

    qhng committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    f27927f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cac7f0a View commit details
    Browse the repository at this point in the history
  9. Update UserGuide.md

    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    ff89cfd View commit details
    Browse the repository at this point in the history
  10. Update UserGuide.md

    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    1edba0e View commit details
    Browse the repository at this point in the history
  11. Update DeveloperGuide.md

    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    032fd78 View commit details
    Browse the repository at this point in the history
  12. Update DeveloperGuide.md

    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    3684404 View commit details
    Browse the repository at this point in the history
  13. Update DeveloperGuide.md

    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    bbbd343 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #117 from CS2103AUG2016-T14-C2/V0.5-mark-unmark-mi…

    …nor-changes
    
    Merge V0.5 mark unmark minor changes
    qhng authored Nov 2, 2016
    Configuration menu
    Copy the full SHA
    6874293 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    2d15311 View commit details
    Browse the repository at this point in the history
  16. Edit naming typo

    ruiwen905 committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    8efe115 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    28ed6d8 View commit details
    Browse the repository at this point in the history
  18. Generate overdue, floating, daily and upcoming list in model manager …

    …and load them in mainWindow
    ruiwen905 committed Nov 2, 2016
    Configuration menu
    Copy the full SHA
    5624ef3 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    9a5add9 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    8ee671b View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    57e0984 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2016

  1. Revert "Save Command and Keyboard Shortcuts and Task Card Colour Code…

    … according to Priority Level"
    
    This reverts commit 57e0984.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    ff51186 View commit details
    Browse the repository at this point in the history
  2. Revert "set up daily panel for mainWindow"

    This reverts commit 8ee671b.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    6d20f26 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5e1fdcf View commit details
    Browse the repository at this point in the history
  4. Revert "Generate overdue, floating, daily and upcoming list in model …

    …manager and load them in mainWindow"
    
    This reverts commit 5624ef3.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    6fe53d1 View commit details
    Browse the repository at this point in the history
  5. Revert "Set up dailyList controller"

    This reverts commit 28ed6d8.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    39612a2 View commit details
    Browse the repository at this point in the history
  6. Revert "Edit naming typo"

    This reverts commit 8efe115.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    06da366 View commit details
    Browse the repository at this point in the history
  7. Revert "Set up modelmanager to generate floating, overdue, daily and …

    …upcoming list"
    
    This reverts commit 2d15311.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    85050da View commit details
    Browse the repository at this point in the history
  8. Merge pull request #121 from CS2103AUG2016-T14-C2/V0.5rc-List-Alias

    Removed coupling with UI. Used event driven model to trigger UI changes.
    qhng authored Nov 3, 2016
    Configuration menu
    Copy the full SHA
    c19b73f View commit details
    Browse the repository at this point in the history
  9. Merge pull request #122 from CS2103AUG2016-T14-C2/V0.5rc-Update-Docs

    V0.5rc update docs
    qhng authored Nov 3, 2016
    Configuration menu
    Copy the full SHA
    951aaf8 View commit details
    Browse the repository at this point in the history
  10. Update collate

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    9239dfc View commit details
    Browse the repository at this point in the history
  11. Merge pull request #123 from CS2103AUG2016-T14-C2/V0.5rc-Implement-Ch…

    …ange-Storage
    
    V0.5rc implement change storage
    qhng authored Nov 3, 2016
    Configuration menu
    Copy the full SHA
    d5b084d View commit details
    Browse the repository at this point in the history
  12. Update collates

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    2ba8cef View commit details
    Browse the repository at this point in the history
  13. Merge pull request #124 from CS2103AUG2016-T14-C2/V0.5rc

    V0.5rc Milestone
    qhng authored Nov 3, 2016
    Configuration menu
    Copy the full SHA
    278752f View commit details
    Browse the repository at this point in the history
  14. Revert "Revert "Set up modelmanager to generate floating, overdue, da…

    …ily and upcoming list""
    
    This reverts commit 85050da.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    f6115e2 View commit details
    Browse the repository at this point in the history
  15. Revert "Revert "Edit naming typo""

    This reverts commit 06da366.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    abf4967 View commit details
    Browse the repository at this point in the history
  16. Revert "Revert "Set up dailyList controller""

    This reverts commit 39612a2.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    dd80095 View commit details
    Browse the repository at this point in the history
  17. Take theirs

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    7e03738 View commit details
    Browse the repository at this point in the history
  18. Revert "Revert "Description of mainWindow.java and edit mainWindow.fx…

    …ml""
    
    This reverts commit 5e1fdcf.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    72feb4e View commit details
    Browse the repository at this point in the history
  19. Revert "Revert "set up daily panel for mainWindow""

    This reverts commit 6d20f26.
    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    0f91d45 View commit details
    Browse the repository at this point in the history
  20. no message

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    9fdd86d View commit details
    Browse the repository at this point in the history
  21. Integration round 1

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    1b18552 View commit details
    Browse the repository at this point in the history
  22. Integration round 1

    qhng committed Nov 3, 2016
    Configuration menu
    Copy the full SHA
    928d4ab View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2016

  1. Fix SUT. Removed menu feature.

    qhng committed Nov 5, 2016
    Configuration menu
    Copy the full SHA
    6696ff6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    408ed33 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #125 from CS2103AUG2016-T14-C2/V0.5rc-Ruiwen

    Merge V0.5rc ruiwen
    qhng authored Nov 5, 2016
    Configuration menu
    Copy the full SHA
    619f04f View commit details
    Browse the repository at this point in the history
  4. Cleaned up codes

    qhng committed Nov 5, 2016
    Configuration menu
    Copy the full SHA
    877aa8a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e0aeeac View commit details
    Browse the repository at this point in the history
  6. Merge pull request #126 from CS2103AUG2016-T14-C2/V0.5-Qh-Improve-Cod…

    …e-Quality
    
    V0.5 qh improve code quality
    qhng authored Nov 5, 2016
    Configuration menu
    Copy the full SHA
    7af27bb View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2016

  1. Fix code style consistency for single line if to follow convention

    Change undo and redo to use Deque instead of Stack to put a limit on number of undo/redo
    e0003801 committed Nov 6, 2016
    Configuration menu
    Copy the full SHA
    9a4cc5e View commit details
    Browse the repository at this point in the history
  2. Update docs, minor fixes

    e0003801 committed Nov 6, 2016
    Configuration menu
    Copy the full SHA
    44a8ec3 View commit details
    Browse the repository at this point in the history
  3. add image icon, SLAP keyboard shortcuts and add list priority and lis…

    …t alias keyboard shortcuts
    ruiwen905 committed Nov 6, 2016
    Configuration menu
    Copy the full SHA
    a6ba592 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7e5043f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d2a0cb7 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    110e1e9 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2016

  1. Configuration menu
    Copy the full SHA
    ec0a76f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    08abb4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0b0cf56 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #127 from CS2103AUG2016-T14-C2/V0.5-Limited-UndoRedo

    V0.5 limited undo redo
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    ec3502b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    04f0751 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #128 from CS2103AUG2016-T14-C2/V0.5

    Merge V0.5
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    095e74e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ac0b32f View commit details
    Browse the repository at this point in the history
  8. Update README.md

    Add codacy badge
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    47f40d6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2decef5 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #129 from CS2103AUG2016-T14-C2/V0.5rc-Ruiwen

    Merge V0.5rc ruiwen for integration
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    8809de4 View commit details
    Browse the repository at this point in the history
  11. UI screenshot

    ruiwen905 committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    4c44077 View commit details
    Browse the repository at this point in the history
  12. Fix lost import after merging

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    1c01061 View commit details
    Browse the repository at this point in the history
  13. Fix Help window SUT failing.

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    464864b View commit details
    Browse the repository at this point in the history
  14. Fix hide index on sublists

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    8dca765 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8b74ffb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    dbba5e5 View commit details
    Browse the repository at this point in the history
  17. Merge branch 'V0.5rc-Ruiwen' of https://github.com/CS2103AUG2016-T14-…

    …C2/main into V0.5-Integration-Test-Branch
    
    # Conflicts:
    #	src/main/java/seedu/savvytasker/ui/TaskListPanel.java
    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    15fda63 View commit details
    Browse the repository at this point in the history
  18. Update README.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    a71ec31 View commit details
    Browse the repository at this point in the history
  19. Update AboutUs.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    8cde8f7 View commit details
    Browse the repository at this point in the history
  20. Update AboutUs.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    24cc2b7 View commit details
    Browse the repository at this point in the history
  21. Merge pull request #130 from CS2103AUG2016-T14-C2/V0.5-Integration-Te…

    …st-Branch
    
    Merge V0.5 integration test branch
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    3044c3b View commit details
    Browse the repository at this point in the history
  22. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    7e5f6b1 View commit details
    Browse the repository at this point in the history
  23. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    74cd929 View commit details
    Browse the repository at this point in the history
  24. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    2710fc3 View commit details
    Browse the repository at this point in the history
  25. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    5fda247 View commit details
    Browse the repository at this point in the history
  26. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    f2cac1e View commit details
    Browse the repository at this point in the history
  27. Collate updates

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    65fdd0c View commit details
    Browse the repository at this point in the history
  28. Fix UI not displaying correctly

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    095d1c8 View commit details
    Browse the repository at this point in the history
  29. Update Ui screenshot

    qhng committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    180dd16 View commit details
    Browse the repository at this point in the history
  30. Merge pull request #131 from CS2103AUG2016-T14-C2/V0.5

    Merge V0.5 milestone
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    84ea246 View commit details
    Browse the repository at this point in the history
  31. Update UserGuide.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    37d7b2f View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    2a8d5aa View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    e572b09 View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    a4399dc View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    bf18b24 View commit details
    Browse the repository at this point in the history
  36. changed format

    tet54 committed Nov 7, 2016
    Configuration menu
    Copy the full SHA
    dc7faeb View commit details
    Browse the repository at this point in the history
  37. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    3992fb2 View commit details
    Browse the repository at this point in the history
  38. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    bdcc5cc View commit details
    Browse the repository at this point in the history
  39. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    2668119 View commit details
    Browse the repository at this point in the history
  40. Merge pull request #132 from CS2103AUG2016-T14-C2/V0.5

    Merge V0.5 to master
    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    f162eaa View commit details
    Browse the repository at this point in the history
  41. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    4a261ec View commit details
    Browse the repository at this point in the history
  42. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    6354e75 View commit details
    Browse the repository at this point in the history
  43. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    724f67e View commit details
    Browse the repository at this point in the history
  44. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    0ae8b05 View commit details
    Browse the repository at this point in the history
  45. Update TestScript.md

    qhng authored Nov 7, 2016
    Configuration menu
    Copy the full SHA
    4b0e71c View commit details
    Browse the repository at this point in the history