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

[CS2103T-F08-4] NUSearch #113

Open
wants to merge 535 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 29, 2023

  1. Merge pull request #136 from kayabuttertoastt/update-parser-testcases

    Add Parser testcases
    lawruixi authored Oct 29, 2023
    Configuration menu
    Copy the full SHA
    be7feac View commit details
    Browse the repository at this point in the history
  2. Fix list bug

    frrrrry committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    3ae30f9 View commit details
    Browse the repository at this point in the history
  3. Update gradle.yml

    lawruixi authored Oct 29, 2023
    Configuration menu
    Copy the full SHA
    c861e15 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Configuration menu
    Copy the full SHA
    3c6e917 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #139 from AY2324S1-CS2103T-F08-0/update-roleXXX

    Update RoleContainsKeywordsPredicate
    xxiaoweii authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    1be629f View commit details
    Browse the repository at this point in the history
  3. delete white space

    wjacobw committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    496efc1 View commit details
    Browse the repository at this point in the history
  4. Add java docs

    wjacobw committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    063fabe View commit details
    Browse the repository at this point in the history
  5. Merge pull request #141 from wjacobw/branch-ListTestCase

    Add list command test cases and fix some bugs
    xxiaoweii authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    b603ac5 View commit details
    Browse the repository at this point in the history
  6. Delete empty method block

    frrrrry committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    3dc51c2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    690a6d9 View commit details
    Browse the repository at this point in the history
  8. Fix checkstyle errors

    frrrrry committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    7bf04ce View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    0ed9776 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b2bd4d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5389ce View commit details
    Browse the repository at this point in the history
  4. Fix checkstyle error

    xxiaoweii committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    0bc7cc8 View commit details
    Browse the repository at this point in the history
  5. Fix bug in ListCommandTest

    xxiaoweii committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    0a9a557 View commit details
    Browse the repository at this point in the history
  6. Fix checkstyle error

    xxiaoweii committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    0d22107 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5c6c902 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #144 from AY2324S1-CS2103T-F08-0/add-more-testcases

    Add testcases for SampleDataUtil
    xxiaoweii authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    306dc78 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    08f8ed5 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #145 from xxiaoweii/update-testcases-1

    Update testcases 1
    kayabuttertoastt authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    17ba107 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #143 from AY2324S1-CS2103T-F08-0/update-testcases-1

    Update testcases 1 but better
    lawruixi authored Oct 31, 2023
    Configuration menu
    Copy the full SHA
    f13ae9b View commit details
    Browse the repository at this point in the history
  12. Change AddressBooKParser's parseCommand method

    AddressBookParser used to use a very lengthy switch/case statement to
    decide which command word was said.
    
    This can be shortened by using a map of Strings to CheckedFunctions
    (functional interfaces that behave like Functions but can throw an
    error). While this doesn't eliminate the complexity of checking, it
    does allow for autocomplete to be implemented easier with a unified
    list of command words, with not much additional cost to current
    implementations of parsing methods.
    
    Let's change it to this equally complex but more easily extensible
    method of implementation!
    lawruixi committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    300624c View commit details
    Browse the repository at this point in the history
  13. Add autocomplete feature

    Let's add the autocomplete feature that allows users to cycle through
    command suggestions.
    lawruixi committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    4f31050 View commit details
    Browse the repository at this point in the history
  14. Update to comply with checkstyle

    Let's update the changed files to comply with the checkstyle
    specifications.
    lawruixi committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    b1ca7ff View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    65afa8a View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    0c58879 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Configuration menu
    Copy the full SHA
    2472b16 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e08bb1b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b1416a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    71765a7 View commit details
    Browse the repository at this point in the history
  5. Edit AddCommand.java

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    f07c336 View commit details
    Browse the repository at this point in the history
  6. Change help command URL

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    d824720 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    3056d78 View commit details
    Browse the repository at this point in the history
  8. Edit help window fxml

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    084cc28 View commit details
    Browse the repository at this point in the history
  9. Update address book logo

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    ee7b493 View commit details
    Browse the repository at this point in the history
  10. Fix checkstyle error

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    006c237 View commit details
    Browse the repository at this point in the history
  11. Remove unnecessary syntax

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    33e0c42 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    39f28aa View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    e26d7df View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    c0219cf View commit details
    Browse the repository at this point in the history
  15. Update UG

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    3cf5443 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d8d3682 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    11129ba View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    6891b66 View commit details
    Browse the repository at this point in the history
  19. Implement FavList

    Add:
    * Implement favlist command
    kayabuttertoastt committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    ec8a723 View commit details
    Browse the repository at this point in the history
  20. Fix Checkstyle

    kayabuttertoastt committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    b10733f View commit details
    Browse the repository at this point in the history
  21. Update UG

    xxiaoweii committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    1c0a34f View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2023

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

Commits on Nov 3, 2023

  1. Configuration menu
    Copy the full SHA
    d8574c5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #164 from AY2324S1-CS2103T-F08-0/fix-autocomplete-bug

    Fix autocomplete left arrow bug
    kayabuttertoastt authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    008803d View commit details
    Browse the repository at this point in the history
  3. Add edit feature in UG

    frrrrry committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    3598151 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e2df122 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a68e5c0 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #165 from AY2324S1-CS2103T-F08-0/update-ug-edit

    Add edit feature in UG
    xxiaoweii authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    91d03a5 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #166 from kayabuttertoastt/favlist-ug

    Updated UserGuide.md
    lawruixi authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    ca6ba8e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #167 from AY2324S1-CS2103T-F08-0/update-autocomple…

    …te-ug
    
    Update User Guide to include autocomplete
    kayabuttertoastt authored Nov 3, 2023
    Configuration menu
    Copy the full SHA
    ef4e4ba View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Update format of the UG

    frrrrry committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    784c4c8 View commit details
    Browse the repository at this point in the history
  2. Fix fav command GUI bug

    frrrrry committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    81d7de3 View commit details
    Browse the repository at this point in the history
  3. Update fav and unfav tests

    frrrrry committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    02e66d1 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Merge pull request #218 from AY2324S1-CS2103T-F08-0/update-ug-format

    Update format of the UG
    xxiaoweii authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    95958a9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #219 from AY2324S1-CS2103T-F08-0/bugfix-fav-label

    Fix Favourite command GUI bug
    xxiaoweii authored Nov 7, 2023
    Configuration menu
    Copy the full SHA
    4067d73 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    acf0339 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df49c86 View commit details
    Browse the repository at this point in the history
  5. Fix copy-and-paste bug from searchtutorial, searchrole and searchcourse

    commands
    
    Fix both the bugs in the Quick Start section and their respective
    dedicated sections for the searchtutorial, searchrole and searchcourse
    commands, where the command was erroneously written as "search" instead
    of their actual command words.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    78f7f53 View commit details
    Browse the repository at this point in the history
  6. Fix typo in description of searchtutorial

    The description of searchtutorial erroneously says "rle" instead of
    "tutorial". Let's fix this typo.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    45ba086 View commit details
    Browse the repository at this point in the history
  7. Fix misspelling in searchrole description

    Let's fix the typo of "role" as "rle" in the description of searchrole
    command.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    b75e935 View commit details
    Browse the repository at this point in the history
  8. Add different search commands to command summary

    Previously, the various search commands were not in the command
    summary. Let's add a row for each of them.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    7474371 View commit details
    Browse the repository at this point in the history
  9. Add a warning box for case-sensitivity of commands

    Currently, there's no indication that commands are case sensitive. Let's
    fix that by adding a warning box in the command format section.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    af94d1d View commit details
    Browse the repository at this point in the history
  10. Fix search bugs

    Fix bugs for:
    1. `search` command
    2. `searchrole` command
    3. `searchtutorial` command
    4. `searchcourse` command
    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    677c564 View commit details
    Browse the repository at this point in the history
  11. Fix checkstyle

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    c2b24ea View commit details
    Browse the repository at this point in the history
  12. Fix checkstyle

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    9e96364 View commit details
    Browse the repository at this point in the history
  13. Fix incorrect add command in Command Summary of UG

    The command summary's example Add command results in an invalid role
    error. Let's amend this mistake.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    dee403c View commit details
    Browse the repository at this point in the history
  14. Fix testcases

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    6c6ba3a View commit details
    Browse the repository at this point in the history
  15. Fix checkstyle

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    3ce7cab View commit details
    Browse the repository at this point in the history
  16. Fix checkstyle

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    30d2937 View commit details
    Browse the repository at this point in the history
  17. Fix checkstyle

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    e6a6d1d View commit details
    Browse the repository at this point in the history
  18. Update Quick Start section

    Updated and completed Quick Start section, which was previously
    incomplete.
    lawruixi committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    b8acf20 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f6de3de View commit details
    Browse the repository at this point in the history
  20. Update PPP

    Changes made:
    * update PPP
    * add javadocs
    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    2a36ca2 View commit details
    Browse the repository at this point in the history
  21. Add javadocs

    kayabuttertoastt committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    6610b7c View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Update Mockup UI to be more accurate

    Update the UI mockup in the User Guide to be more accurate to the actual
    product.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    c7334f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f4636c1 View commit details
    Browse the repository at this point in the history
  3. Updated User Guide's search* command error messages

    The User Guide's search* command had copy-pasted error messages, that
    did not match the actual error message printed by the program. Let's
    rectify that error.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    4914e1b View commit details
    Browse the repository at this point in the history
  4. Update FAQ section of User Guide

    Update the FAQ section of the User Guide to use panels, which makes it look more like the CS2103 website
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    cc954a2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    de211a0 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2e7819f View commit details
    Browse the repository at this point in the history
  7. add test case

    wjacobw committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    d5c5af4 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #220 from wjacobw/bugfix-list-command

    fix adding extra fields to list does not show error bug
    frrrrry authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    7d72f12 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5c3d50e View commit details
    Browse the repository at this point in the history
  10. fix check style

    wjacobw committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    72968d5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b51316d View commit details
    Browse the repository at this point in the history
  12. Merge pull request #225 from wjacobw/bugfix-list-command

    Fix help and clear command'd feedback error
    frrrrry authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    09816ca View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    967eae7 View commit details
    Browse the repository at this point in the history
  14. Fix search and favlist bugs

    bug fixes:
    * error message in searchcourse
    * error message in searchrole
    * favlist additional input bug
    
    yet to fix:
    * searchcourse empty input bug
    kayabuttertoastt committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    a52ca53 View commit details
    Browse the repository at this point in the history
  15. Fix checkstyle

    kayabuttertoastt committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    91b16a9 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #227 from kayabuttertoastt/fix-testing-bugs

    Fix search and favlist bugs
    kayabuttertoastt authored Nov 8, 2023
    Configuration menu
    Copy the full SHA
    46af06b View commit details
    Browse the repository at this point in the history
  17. Update User Guide formatting for optimal PDF viewing experience

    Let's update the User Guide so it looks great on a PDF and not just on a
    website.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    925e55f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    4b35220 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    cda5a2c View commit details
    Browse the repository at this point in the history
  20. Add input validation for each of the search commands

    Let's add back input validation into each of the search commands, after
    empty arguments check.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    102093f View commit details
    Browse the repository at this point in the history
  21. Change profile to person

    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    482ec8d View commit details
    Browse the repository at this point in the history
  22. Update test cases

    Update test cases to test the new fixed version of the searchtutorial
    command, changing them since it no longer supports searching multiple
    tutorials at once.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    668871f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    296d23a View commit details
    Browse the repository at this point in the history
  24. Fix erroneous profile-person conversions

    Embarrassingly, a global search-replace accidentally replaced some 'profile' to 'person' words erroneously, resulting in some extremely awkward sentences. Let's fix that!
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    82b0291 View commit details
    Browse the repository at this point in the history
  25. Fix another erroneous profile-person conversion

    Whoops, I missed out one on the previous commit.
    lawruixi committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    cf09b1a View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Merge pull request #228 from AY2324S1-CS2103T-F08-0/fix-searchcourse-…

    …invalid-input-bug
    
    Fix searchcourse invalid input bug
    lawruixi authored Nov 9, 2023
    Configuration menu
    Copy the full SHA
    29c23cd View commit details
    Browse the repository at this point in the history
  2. add list command to dg

    wjacobw committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    4ad7fd3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c7a6aac View commit details
    Browse the repository at this point in the history
  4. add more details to UG

    wjacobw committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    2914b23 View commit details
    Browse the repository at this point in the history
  5. Update lawruixi's PPP

    lawruixi committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    24f58e8 View commit details
    Browse the repository at this point in the history
  6. Change profile to person

    frrrrry committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    dfed2c2 View commit details
    Browse the repository at this point in the history
  7. Update favlist

    frrrrry committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    29ad4e6 View commit details
    Browse the repository at this point in the history
  8. Update favlist in UG

    frrrrry committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    431c3dc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cf23a14 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f4a8738 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    bc18889 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    9bf52ef View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    3287b20 View commit details
    Browse the repository at this point in the history
  14. Update fry's ppp

    frrrrry committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    596deae View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Merge pull request #235 from AY2324S1-CS2103T-F08-0/change-error-mess…

    …ages
    
    Change output messages
    xxiaoweii authored Nov 10, 2023
    Configuration menu
    Copy the full SHA
    718ccf6 View commit details
    Browse the repository at this point in the history
  2. Fix finding multiple keywords in search commands

    Previously, attempting to search using multiple keywords for the search
    commands would only yield results of the last keyword entered, due to a
    bug where the split delimiter was incorrect.
    
    Now, users can search for multiple keywords.
    lawruixi committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    d930dc2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    23e60d3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3eb0256 View commit details
    Browse the repository at this point in the history
  5. Fix empty role bug

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    2700fe4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    29f9904 View commit details
    Browse the repository at this point in the history
  7. Fix duplicate courses bug

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    e6d37e1 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6fee88b View commit details
    Browse the repository at this point in the history
  9. Update Add Command in UG

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    6da72dd View commit details
    Browse the repository at this point in the history
  10. Fix the regex for tutorial

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    1163724 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    064a3b5 View commit details
    Browse the repository at this point in the history
  12. Update add command UG

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    0106cc4 View commit details
    Browse the repository at this point in the history
  13. Fix failing testcases

    xxiaoweii committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    9994a25 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2bd6662 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Merge pull request #233 from AY2324S1-CS2103T-F08-0/update-dg-autocom…

    …plete
    
    Update dg autocomplete
    lawruixi authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    eff2439 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c332a58 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #236 from AY2324S1-CS2103T-F08-0/fix-search-comman…

    …d-multiple-inputs-bug
    
    Fix finding multiple keywords in search commands
    lawruixi authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    00ead18 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #237 from AY2324S1-CS2103T-F08-0/remove-nusearch-i…

    …con-bg
    
    Remove background from NUSearch icon
    lawruixi authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    d0df153 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8161220 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ec7384 View commit details
    Browse the repository at this point in the history
  7. Fix checkstyle

    frrrrry committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    cbae47b View commit details
    Browse the repository at this point in the history
  8. Bold headers in User Guide

    One of the headers were not bolded even though it should have been.
    lawruixi authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    a59a9e7 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8776870 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    cd659f8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    90ac7c0 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    7f8cbdf View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    afd9ef8 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #238 from xxiaoweii/name-field-bug

    Fix bugs related to Add Command
    kayabuttertoastt authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    4a34707 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    3076be6 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #239 from AY2324S1-CS2103T-F08-0/bugfix-add-tutorial

    Fix bug when parsing tutorials
    xxiaoweii authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    ad8db4d View commit details
    Browse the repository at this point in the history
  17. Merge pull request #231 from wjacobw/branch-UpdateUGDG

    Update UG and DG
    frrrrry authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    ee1732e View commit details
    Browse the repository at this point in the history
  18. Update DG

    frrrrry committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    408ab69 View commit details
    Browse the repository at this point in the history
  19. add draft ppp

    wjacobw committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    ae2639f View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    529b729 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    6a8c1cd View commit details
    Browse the repository at this point in the history
  22. Merge pull request #243 from wjacobw/branch-draftppp

    add draft ppp
    frrrrry authored Nov 11, 2023
    Configuration menu
    Copy the full SHA
    ff03b5d View commit details
    Browse the repository at this point in the history
  23. Delete edit feature

    frrrrry committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    89c5d41 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Configuration menu
    Copy the full SHA
    bd05765 View commit details
    Browse the repository at this point in the history
  2. Remove unused specifier

    xxiaoweii committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    99e8446 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #246 from AY2324S1-CS2103T-F08-0/delete-edit-1

    Delete edit feature
    xxiaoweii authored Nov 12, 2023
    Configuration menu
    Copy the full SHA
    6b4ac54 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #247 from xxiaoweii/name-field-bug

    Fix bug related to Add Command
    kayabuttertoastt authored Nov 12, 2023
    Configuration menu
    Copy the full SHA
    f3859c6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6b07820 View commit details
    Browse the repository at this point in the history
  6. Update xxiaoweii's PPP

    xxiaoweii committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    0d97f1e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    375c1e8 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    fcd53da View commit details
    Browse the repository at this point in the history
  9. Revert favlist changes

    frrrrry committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    9752932 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    64ec8e3 View commit details
    Browse the repository at this point in the history
  11. Fix search validation bug

    * fix search validation bugs for all search commands
    * update testcases for search commands
    kayabuttertoastt committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    41ec3f8 View commit details
    Browse the repository at this point in the history
  12. Update UG

    frrrrry committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    d713c84 View commit details
    Browse the repository at this point in the history
  13. Fix checkstyle

    kayabuttertoastt committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    6b4eb2f View commit details
    Browse the repository at this point in the history
  14. Fix Checkstyle

    kayabuttertoastt committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    e9276bc View commit details
    Browse the repository at this point in the history
  15. Fix Checkstyle

    kayabuttertoastt committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2d853ae View commit details
    Browse the repository at this point in the history
  16. Update Userguide

    update userguide to match the changes made to the search commands
    kayabuttertoastt committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    50daad2 View commit details
    Browse the repository at this point in the history
  17. Add clear command in UG

    frrrrry committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    1cb7bdc View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    7956417 View commit details
    Browse the repository at this point in the history
  19. Merge pull request #255 from kayabuttertoastt/final-bugfix

    Fix search validation bug
    lawruixi authored Nov 12, 2023
    Configuration menu
    Copy the full SHA
    74c3f21 View commit details
    Browse the repository at this point in the history
  20. Merge pull request #257 from AY2324S1-CS2103T-F08-0/update-ug-known-i…

    …ssues
    
    Update FAQ for data file query
    xxiaoweii authored Nov 12, 2023
    Configuration menu
    Copy the full SHA
    349e0de View commit details
    Browse the repository at this point in the history
  21. Merge pull request #256 from AY2324S1-CS2103T-F08-0/branch-revert-issues

    Revert issues that violated feature freeze
    xxiaoweii authored Nov 12, 2023
    Configuration menu
    Copy the full SHA
    7c52eaa View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    b465b3f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    b7bfcd0 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    919a0fd View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    fbdcc54 View commit details
    Browse the repository at this point in the history
  26. Change test result

    xxiaoweii committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    ca61346 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Update UG and fry's ppp

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    988dcf9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #258 from AY2324S1-CS2103T-F08-0/fry-update-ppp

    Update UG and fry's ppp
    xxiaoweii authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d017f5a View commit details
    Browse the repository at this point in the history
  3. Fix test result

    xxiaoweii committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    08c8a13 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b9b9948 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    39fc301 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #259 from xxiaoweii/name-field-bug

    Revert some changes in PR #238
    kayabuttertoastt authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    781a3c9 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #248 from xxiaoweii/update-PPP

    Update xxiaoweii's PPP and DG
    kayabuttertoastt authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    8464778 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #260 from xxiaoweii/add-command-ug

    Update UG with the updated add command
    kayabuttertoastt authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    5b5df8b View commit details
    Browse the repository at this point in the history
  9. fix list command

    wjacobw committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    37ac8f3 View commit details
    Browse the repository at this point in the history
  10. Update PPP and DG

    Update PPP and added activity diagrams for features added
    kayabuttertoastt committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    88d9476 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #261 from wjacobw/branch-something

    fix list command
    frrrrry authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    e42112f View commit details
    Browse the repository at this point in the history
  12. Fix Checkstyle

    kayabuttertoastt committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    9f8286b View commit details
    Browse the repository at this point in the history
  13. Merge pull request #262 from kayabuttertoastt/update-ppp-dg

    Update PPP and DG
    lawruixi authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    cec43cc View commit details
    Browse the repository at this point in the history
  14. Edit feature description

    Add diagrams to DG for search and favlist commands
    kayabuttertoastt committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    821b3db View commit details
    Browse the repository at this point in the history
  15. Change version

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    ff6da06 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #263 from kayabuttertoastt/final-dg-update

    Edit feature description
    frrrrry authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    2fbaa89 View commit details
    Browse the repository at this point in the history
  17. Update fry's ppp

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    31c5fbb View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    c517284 View commit details
    Browse the repository at this point in the history
  19. Modify PPP

    wjacobw committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6b02393 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    c72c0f3 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    b78f6fc View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    f2051df View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    248177c View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    09e8510 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    ad1c5ae View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    3be5a7d View commit details
    Browse the repository at this point in the history
  27. change ui mockup position

    wjacobw committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    a39db19 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    e74c6aa View commit details
    Browse the repository at this point in the history
  29. Fix bug in UG

    xxiaoweii committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    776d446 View commit details
    Browse the repository at this point in the history
  30. Fix bug in UG

    xxiaoweii committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    e7c3cac View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    263bcf3 View commit details
    Browse the repository at this point in the history
  32. ug change

    wjacobw committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6e6964a View commit details
    Browse the repository at this point in the history
  33. more change

    wjacobw committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    946af35 View commit details
    Browse the repository at this point in the history
  34. Merge pull request #273 from AY2324S1-CS2103T-F08-0/update-help-command

    Update help command to include missing commands
    xxiaoweii authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    c71204b View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    6320e7a View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    8fefe1b View commit details
    Browse the repository at this point in the history
  37. Merge pull request #268 from wjacobw/branch-updatePPP3

    Modify PPP
    frrrrry authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    cb68c5e View commit details
    Browse the repository at this point in the history
  38. Merge pull request #274 from xxiaoweii/add-command-ug

    Fix bug related to tutorial
    kayabuttertoastt authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    f4d2b37 View commit details
    Browse the repository at this point in the history
  39. Edit style

    kayabuttertoastt committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6d0c959 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    3e8fe70 View commit details
    Browse the repository at this point in the history
  41. Update DG

    Add Edit, Delete & Unfav, edit Fav
    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6304842 View commit details
    Browse the repository at this point in the history
  42. Fix some minor errors in UG

    lawruixi committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    5c5228a View commit details
    Browse the repository at this point in the history
  43. Updated ppp

    lawruixi committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    f27333d View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    1cb5a21 View commit details
    Browse the repository at this point in the history
  45. Update DG

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    41d9673 View commit details
    Browse the repository at this point in the history
  46. Merge pull request #277 from AY2324S1-CS2103T-F08-0/fix-ug-bugs

    Fix some minor errors in UG
    lawruixi authored Nov 13, 2023
    Configuration menu
    Copy the full SHA
    5c54961 View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    0db8f74 View commit details
    Browse the repository at this point in the history
  48. Update fry's ppp

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    b04c0a4 View commit details
    Browse the repository at this point in the history
  49. Fix uml diagrams checkstyle

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    bbd6259 View commit details
    Browse the repository at this point in the history
  50. Fix uml checkstyle

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    7388927 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    038cc81 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    4995aa2 View commit details
    Browse the repository at this point in the history
  53. Add page break in fry's ppp

    frrrrry committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    7a15fb8 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    d6bfeeb View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Fix errors in User Guide

    lawruixi committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    ca53aa1 View commit details
    Browse the repository at this point in the history
  2. Fix more bugs with UG

    lawruixi committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    83b9bdf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0c770ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7dfdf01 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    17414bc View commit details
    Browse the repository at this point in the history
  6. Fix ug bug

    xxiaoweii committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    464ddf0 View commit details
    Browse the repository at this point in the history
  7. Fix ug bug

    xxiaoweii committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    04b90f4 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #283 from xxiaoweii/add-command-ug

    Fix bugs in UG and Add Command usage message
    xxiaoweii authored Nov 14, 2023
    Configuration menu
    Copy the full SHA
    14ade3d View commit details
    Browse the repository at this point in the history
  9. Fix ug bug

    xxiaoweii committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    8489600 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #284 from xxiaoweii/add-command-ug

    Fix ug bug
    xxiaoweii authored Nov 14, 2023
    Configuration menu
    Copy the full SHA
    b0d4d31 View commit details
    Browse the repository at this point in the history
  11. Fix ug bug

    xxiaoweii committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    955da55 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #285 from xxiaoweii/add-command-ug

    Fix ug bug
    xxiaoweii authored Nov 14, 2023
    Configuration menu
    Copy the full SHA
    b34778f View commit details
    Browse the repository at this point in the history