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-W12-4] ModuLink #95

Open
wants to merge 355 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 15, 2021

  1. Configuration menu
    Copy the full SHA
    74d454c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0d2812 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2021

  1. Merge pull request #71 from charltonator/AddFavCommand

    Fixes #2; Add AddFavCommand, AddFavCommandParser, and test files for both.
    aakanshanarain authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    16a4f3b View commit details
    Browse the repository at this point in the history
  2. Add files via upload

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    92671ed View commit details
    Browse the repository at this point in the history
  3. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    9f968e7 View commit details
    Browse the repository at this point in the history
  4. Add files via upload

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    151b886 View commit details
    Browse the repository at this point in the history
  5. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    3cfbd0a View commit details
    Browse the repository at this point in the history
  6. Delete helpMessage.png

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    bce62a6 View commit details
    Browse the repository at this point in the history
  7. Add files via upload

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    711667e View commit details
    Browse the repository at this point in the history
  8. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    ef32354 View commit details
    Browse the repository at this point in the history
  9. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    317cf77 View commit details
    Browse the repository at this point in the history
  10. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    9894dfb View commit details
    Browse the repository at this point in the history
  11. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    fbb4ae1 View commit details
    Browse the repository at this point in the history
  12. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    94d4a9a View commit details
    Browse the repository at this point in the history
  13. Update UserGuide.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    1d9231a View commit details
    Browse the repository at this point in the history
  14. Docs update

    zacharylwy committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    b79d1f6 View commit details
    Browse the repository at this point in the history
  15. Update AboutUs.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    a06f394 View commit details
    Browse the repository at this point in the history
  16. Update AboutUs.md

    zacharylwy authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    2c73a37 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    f9f58a7 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #72 from zacharylwy/docs-update-branch

    Docs update branch
    ngjiayuan authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    b12c0b4 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    5a9332a View commit details
    Browse the repository at this point in the history
  20. Fix checkstyle

    ngjiayuan committed Oct 16, 2021
    Configuration menu
    Copy the full SHA
    26ba8cb View commit details
    Browse the repository at this point in the history
  21. Merge pull request #75 from ngjiayuan/remove-favourite-command

    Add remove favourite command
    aakanshanarain authored Oct 16, 2021
    Configuration menu
    Copy the full SHA
    371c31f View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2021

  1. listfav dg

    zacharylwy committed Oct 18, 2021
    Configuration menu
    Copy the full SHA
    634f752 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #76 from zacharylwy/listfav-dg-branch

    Test out the addition of the ListFavCommand into the DG
    zacharylwy authored Oct 18, 2021
    Configuration menu
    Copy the full SHA
    920a5f7 View commit details
    Browse the repository at this point in the history
  3. Update UserGuide.md

    ngjiayuan authored Oct 18, 2021
    Configuration menu
    Copy the full SHA
    9e31c15 View commit details
    Browse the repository at this point in the history
  4. Edited sample data

    ngjiayuan committed Oct 18, 2021
    Configuration menu
    Copy the full SHA
    90580a0 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #79 from ngjiayuan/master

    Edited sample data
    ngjiayuan authored Oct 18, 2021
    Configuration menu
    Copy the full SHA
    77bc43a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    56eb041 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    93f6756 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2021

  1. Implement addMod and RemoveMod features

    Main changes:
    - addModCommand/Parser
    - removeModCommand/Parser
    - their associated tests
    
    Smaller Changes:
    - Changed Mod equals method so it only compares the module code now
    - Added RegEx check for Mods, so now the module code has to be a valid one
    - Changed all previously defined "tags" to follow this regex check (i was too lazy to change all of the "tag" words to "mod" though)
    -  Also added a getProfile() function in Model that yall can probs use in the future for convenience
    EthanWong6362 committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    3c4eb94 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #81 from EthanWong6362/Add-mod-function

    Implement addMod and RemoveMod features
    zacharylwy authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    3ab8040 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e7c51e9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1e411ed View commit details
    Browse the repository at this point in the history
  5. Merge pull request #84 from charltonator/editDG

    Fixes #82; Update DeveloperGuide.md
    charltonator authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    0a9a4b6 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #85 from EthanWong6362/Add-mod-function

    updates as per C$ request
    charltonator authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    a052d61 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5c29faa View commit details
    Browse the repository at this point in the history
  8. Merge pull request #89 from charltonator/refactor

    Fixes #88, Fixes #87; Add refresh for AddFav and RemFav, refactor the package name
    charltonator authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    4394888 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    297207d View commit details
    Browse the repository at this point in the history
  10. UG-Update

    zacharylwy committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    dd51323 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #90 from zacharylwy/UG-update-branch

    Update DG diagrams
    ngjiayuan authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    07c3d8e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    8e2d8e6 View commit details
    Browse the repository at this point in the history
  13. Fix some errors

    ngjiayuan committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    045862a View commit details
    Browse the repository at this point in the history
  14. Merge pull request #91 from ngjiayuan/master

    Clean up DG, diagrams and command classes
    zacharylwy authored Oct 19, 2021
    Configuration menu
    Copy the full SHA
    e690de8 View commit details
    Browse the repository at this point in the history
  15. Change Edit Command

    ...and also some stylistic changes.
    
    Also removed some test cases associated with edit and edit parser that were no longer relevant to us
    EthanWong6362 committed Oct 19, 2021
    Configuration menu
    Copy the full SHA
    fbaa2af View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2021

  1. Configuration menu
    Copy the full SHA
    c85772b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    981b52f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d85c7aa View commit details
    Browse the repository at this point in the history
  4. Update DeveloperGuide.md

    added table of contents
    EthanWong6362 committed Oct 20, 2021
    Configuration menu
    Copy the full SHA
    4494ec2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    993c8fe View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3e567f8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #94 from EthanWong6362/master

    fixed merge conflict when changing edit command
    zacharylwy authored Oct 20, 2021
    Configuration menu
    Copy the full SHA
    5124a80 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2021

  1. Update DG

    aakanshanarain committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    3246820 View commit details
    Browse the repository at this point in the history
  2. Edit DG

    aakanshanarain committed Oct 21, 2021
    Configuration menu
    Copy the full SHA
    3f04a11 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f0bd640 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2021

  1. Update UserGuide.md

    zacharylwy authored Oct 22, 2021
    Configuration menu
    Copy the full SHA
    c5f9713 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c969742 View commit details
    Browse the repository at this point in the history
  3. update Status

    Restricts Status to only accept "need group" and "need member" as mod descriptions
    EthanWong6362 committed Oct 22, 2021
    Configuration menu
    Copy the full SHA
    43e077a View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2021

  1. Configuration menu
    Copy the full SHA
    6f91bcd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40c8848 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #99 from aakanshanarain/fix-main-class-issue

    Change mainClassName to run the app
    aakanshanarain authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    f8632fa View commit details
    Browse the repository at this point in the history
  4. Update UG

    aakanshanarain committed Oct 23, 2021
    Configuration menu
    Copy the full SHA
    54ee92a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #100 from aakanshanarain/master

    Update UG
    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    0e45f6a View commit details
    Browse the repository at this point in the history
  6. Update title

    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    5b7fb02 View commit details
    Browse the repository at this point in the history
  7. Update site header

    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    2db2da4 View commit details
    Browse the repository at this point in the history
  8. Update title

    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    ef075d9 View commit details
    Browse the repository at this point in the history
  9. Update title

    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    e95ff0b View commit details
    Browse the repository at this point in the history
  10. Update title

    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    f5a88b3 View commit details
    Browse the repository at this point in the history
  11. Update Status.java

    EthanWong6362 committed Oct 23, 2021
    Configuration menu
    Copy the full SHA
    af2f2a6 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    da1b9a9 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #101 from EthanWong6362/master

    rip forgot to add a trim() to status
    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    0362cc4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    e6ec463 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #102 from ngjiayuan/master

    Fix favourite icon not showing on Jar file
    ngjiayuan authored Oct 23, 2021
    Configuration menu
    Copy the full SHA
    af5d42e View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2021

  1. Configuration menu
    Copy the full SHA
    587ca37 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #103 from aakanshanarain/add-github-username-to-pr…

    …ofile
    
    Add GitHub Username feature to profiles
    zacharylwy authored Oct 24, 2021
    Configuration menu
    Copy the full SHA
    772fe23 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    65312cd View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2021

  1. Configuration menu
    Copy the full SHA
    93d5f14 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #105 from aakanshanarain/add-telegram-handle-to-pr…

    …ofile
    
    Add telegram handle feature to profile
    ngjiayuan authored Oct 25, 2021
    Configuration menu
    Copy the full SHA
    86de1cd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #107 from aakanshanarain/edit-group-status-feature

    Add Edit group status feature
    ngjiayuan authored Oct 25, 2021
    Configuration menu
    Copy the full SHA
    85c7faa View commit details
    Browse the repository at this point in the history
  4. Some change to UG

    aakanshanarain committed Oct 25, 2021
    Configuration menu
    Copy the full SHA
    8b02908 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2021

  1. Configuration menu
    Copy the full SHA
    bdd15e3 View commit details
    Browse the repository at this point in the history
  2. Update UserGuide.md

    charltonator authored Oct 26, 2021
    Configuration menu
    Copy the full SHA
    8c9576d View commit details
    Browse the repository at this point in the history
  3. Change format of filter feature and also change editGroupStatusComman…

    …d to take only one module
    aakanshanarain committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    8afbb50 View commit details
    Browse the repository at this point in the history
  4. Maybe fixes CI issue

    aakanshanarain committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    e6f2472 View commit details
    Browse the repository at this point in the history
  5. Update things before the demo

    -make addFav/remFav not work on your own profile
    -fixed bug where addFav wouldn't immediately update/mark a profile after favouriting/un-favouriting
    -made filter not include your own profile
    -populated SampleDataUtil with a few more ppl, can continue to add more
    EthanWong6362 committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    71c46fc View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Merge pull request #109 from aakanshanarain/change-filter-and-editGro…

    …upStatus-features
    
    Change filter and edit group status features
    aakanshanarain authored Oct 27, 2021
    Configuration menu
    Copy the full SHA
    cffa998 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #110 from EthanWong6362/updates-before-demo

    Update things before the demo
    aakanshanarain authored Oct 27, 2021
    Configuration menu
    Copy the full SHA
    3bb0f64 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2021

  1. Configuration menu
    Copy the full SHA
    1175ace View commit details
    Browse the repository at this point in the history
  2. Update UserGuide.md

    aakanshanarain authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    bda6714 View commit details
    Browse the repository at this point in the history
  3. Update UserGuide.md

    aakanshanarain authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    e07a2c6 View commit details
    Browse the repository at this point in the history
  4. Update UserGuide.md

    aakanshanarain authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    d2a9e3c View commit details
    Browse the repository at this point in the history
  5. Merge pull request #111 from aakanshanarain/enhance-user-guide

    Enhance user guide
    ngjiayuan authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    bb8a34c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    61da01f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    dd7234a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ef293d8 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #114 from charltonator/userProfileHighlight

    Fixes #73; User profile highlight and user profile icon
    charltonator authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    49eb07b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4a324b0 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #115 from ngjiayuan/profile-top-branch

    Adds the user profile to the top of the list
    zacharylwy authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    5cedda2 View commit details
    Browse the repository at this point in the history
  12. Update UserGuide.md

    zacharylwy authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    1ca8c1c View commit details
    Browse the repository at this point in the history
  13. Update UserGuide.md

    zacharylwy authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    ac8ed97 View commit details
    Browse the repository at this point in the history
  14. fixed sample data util

    zacharylwy committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    3034114 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #116 from zacharylwy/small-fix-branch

    fixed sample data util
    zacharylwy authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    f8eb309 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d0c0ae3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4d1e37c View commit details
    Browse the repository at this point in the history
  18. update stuff again

    charltonator committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    50ecb91 View commit details
    Browse the repository at this point in the history
  19. update the padding

    charltonator committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    9417495 View commit details
    Browse the repository at this point in the history
  20. update padding

    charltonator committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    5b9005b View commit details
    Browse the repository at this point in the history
  21. Merge pull request #118 from charltonator/master

    Wrap text in result box and add a bit more padding within each person card
    ngjiayuan authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    87409a3 View commit details
    Browse the repository at this point in the history
  22. Add more sample persons

    ngjiayuan committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    86dc2c5 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    488a3de View commit details
    Browse the repository at this point in the history
  24. Merge pull request #119 from ngjiayuan/sample-data

    Add more sample persons
    ngjiayuan authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    9e47469 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    ec7acbe View commit details
    Browse the repository at this point in the history
  26. Update CreateCommandTest.java

    made the test work
    EthanWong6362 committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    25f625f View commit details
    Browse the repository at this point in the history
  27. Merge pull request #120 from EthanWong6362/master

    last minutes changes for demo
    EthanWong6362 authored Oct 28, 2021
    Configuration menu
    Copy the full SHA
    04469f6 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2021

  1. Configuration menu
    Copy the full SHA
    5bf2da7 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2021

  1. Update UserGuide.md

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    3fb761b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #172 from zacharylwy/master

    Update UserGuide.md
    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    63d69e6 View commit details
    Browse the repository at this point in the history
  3. Delete Ui2.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    c99479f View commit details
    Browse the repository at this point in the history
  4. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    2f00c26 View commit details
    Browse the repository at this point in the history
  5. Delete Ui2.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    8aa19c7 View commit details
    Browse the repository at this point in the history
  6. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    1ce45c3 View commit details
    Browse the repository at this point in the history
  7. Delete Ui2.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    88f2023 View commit details
    Browse the repository at this point in the history
  8. Delete createProfile.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    2160218 View commit details
    Browse the repository at this point in the history
  9. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    650be0e View commit details
    Browse the repository at this point in the history
  10. Delete editProfile.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    60366fd View commit details
    Browse the repository at this point in the history
  11. Delete addMod.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    9a916c2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    94b6e1a View commit details
    Browse the repository at this point in the history
  13. Delete egsc.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    eb020cf View commit details
    Browse the repository at this point in the history
  14. Delete remMod.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    050cd48 View commit details
    Browse the repository at this point in the history
  15. Delete remFav.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    0d5a0cb View commit details
    Browse the repository at this point in the history
  16. Delete addFav.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    0a72c6e View commit details
    Browse the repository at this point in the history
  17. Delete list.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    64b35f5 View commit details
    Browse the repository at this point in the history
  18. Delete listfav.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    733d921 View commit details
    Browse the repository at this point in the history
  19. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    b7263b4 View commit details
    Browse the repository at this point in the history
  20. Delete find.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    658a6eb View commit details
    Browse the repository at this point in the history
  21. Delete findId.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    25099da View commit details
    Browse the repository at this point in the history
  22. Delete filtermod.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    2028cff View commit details
    Browse the repository at this point in the history
  23. Delete filtermodgroup.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    d52d56f View commit details
    Browse the repository at this point in the history
  24. Delete remModProfile.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    614342f View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    8e95957 View commit details
    Browse the repository at this point in the history
  26. Delete addModProfile.png

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    dc22e17 View commit details
    Browse the repository at this point in the history
  27. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    76b57c4 View commit details
    Browse the repository at this point in the history
  28. Add files via upload

    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    74ec444 View commit details
    Browse the repository at this point in the history
  29. Merge pull request #173 from zacharylwy/master

    Update UG
    zacharylwy authored Oct 31, 2021
    Configuration menu
    Copy the full SHA
    7b9f8cc View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    418efd4 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2021

  1. Mod & status changes

    made the mod and status regex checks work different (better lol)
    EthanWong6362 committed Nov 2, 2021
    Configuration menu
    Copy the full SHA
    e22992c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #174 from EthanWong6362/master

    Fixed smaller bugs from PED
    EthanWong6362 authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    caccc30 View commit details
    Browse the repository at this point in the history
  3. Fixes #154.

    charltonator authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    f41a0d2 View commit details
    Browse the repository at this point in the history
  4. Fixes #158

    charltonator authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    53203f3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    827a736 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a83ccc2 View commit details
    Browse the repository at this point in the history
  7. undid previous commit

    charltonator committed Nov 2, 2021
    Configuration menu
    Copy the full SHA
    b8961be View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1803b13 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3601404 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    55d2324 View commit details
    Browse the repository at this point in the history
  11. Update UserGuide.md

    charltonator authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    b29a344 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fce70c0 View commit details
    Browse the repository at this point in the history
  13. Added section 1.1

    ngjiayuan authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    6ac9037 View commit details
    Browse the repository at this point in the history
  14. Edited getting started

    ngjiayuan authored Nov 2, 2021
    Configuration menu
    Copy the full SHA
    6727881 View commit details
    Browse the repository at this point in the history
  15. Bug fixes

    Mainly fixed the issue where users could add wrong/random prefixes to commands.
    
    deleted Clear command cuz it no longer fits our app.
    
    made the mod/ not taking a module thing throw an error now
    EthanWong6362 committed Nov 2, 2021
    Configuration menu
    Copy the full SHA
    6eb4a5d View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2021

  1. Configuration menu
    Copy the full SHA
    e1a7bf3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    decc4ad View commit details
    Browse the repository at this point in the history
  3. Clean ups for closed issues

    Went through all closed issues to double check they all work. Changed some message outputs to (hopefully) make more sense (eg if no people are listed a diff msg will show up now)
    
    Edited the UG and changed our screenshots to make everything stay in line with our "strictly 1 input per thing" policy
    EthanWong6362 committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    36610ba View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3bb1606 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #179 from EthanWong6362/master

    Clean ups for closed issues
    aakanshanarain authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    1490d9b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6cba08d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9cf68f5 View commit details
    Browse the repository at this point in the history
  8. Add files via upload

    zacharylwy authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    9cd145b View commit details
    Browse the repository at this point in the history
  9. Update UserGuide.md

    zacharylwy authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    c651b5b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d6aa321 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #180 from zacharylwy/master

    Update UG
    ngjiayuan authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    85f0a9d View commit details
    Browse the repository at this point in the history
  12. Merge pull request #181 from ngjiayuan/master

    Add exception for corrupted JSON file with duplicate studentId
    ngjiayuan authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    503cc89 View commit details
    Browse the repository at this point in the history
  13. fixed the addFav glitch(?????????

    i honestly dk
    EthanWong6362 committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    c4a7481 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #182 from EthanWong6362/master

    fixed the addFav glitch(?????????
    EthanWong6362 authored Nov 3, 2021
    Configuration menu
    Copy the full SHA
    3aea779 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2021

  1. Configuration menu
    Copy the full SHA
    a2d2c83 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f737029 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae5a84a View commit details
    Browse the repository at this point in the history
  4. EOF fix

    aakanshanarain committed Nov 4, 2021
    Configuration menu
    Copy the full SHA
    d9faa9d View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2021

  1. Create zacharywy.md

    zacharylwy authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    257959c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c19072 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    606b9a7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6cd37f4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3b76778 View commit details
    Browse the repository at this point in the history
  6. Fix EOF

    aakanshanarain committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    bb8553f View commit details
    Browse the repository at this point in the history
  7. Fix EOF

    aakanshanarain committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    ef902ad View commit details
    Browse the repository at this point in the history
  8. Merge pull request #186 from zacharylwy/master

    Create Project Portfolio Page (PPP)
    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    d5f0df7 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #187 from aakanshanarain/personal-project-portfolio

    Personal project portfolio
    zacharylwy authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    bc32d85 View commit details
    Browse the repository at this point in the history
  10. Update zacharylwy.md

    zacharylwy authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    4a87e64 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a9ec175 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #188 from aakanshanarain/master

    Update aakanshanarain.md
    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    822d981 View commit details
    Browse the repository at this point in the history
  13. Update index.md

    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    a459400 View commit details
    Browse the repository at this point in the history
  14. Update UserGuide.md

    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    aab9ec2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    20d981a View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    f1e3de4 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #189 from ngjiayuan/master

    Add ngjiayuan.md and edit DG
    zacharylwy authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    5660bcf View commit details
    Browse the repository at this point in the history
  18. Update UserGuide.md

    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    5dcc940 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    f1f6dc8 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    479a6c9 View commit details
    Browse the repository at this point in the history
  21. Update UserGuide.md

    aakanshanarain authored Nov 5, 2021
    Configuration menu
    Copy the full SHA
    441aa67 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2021

  1. Small tweak to error message for GitHub Username and add null tests t…

    …o GitHubUsernameTest & TelegramHandleTest
    aakanshanarain committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    ea08b67 View commit details
    Browse the repository at this point in the history
  2. Fix checkstyle

    aakanshanarain committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    7206e78 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4a6edb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0b19085 View commit details
    Browse the repository at this point in the history
  5. Fix checkstyle

    aakanshanarain committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    347269e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    da53914 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    20bb9b9 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    08db251 View commit details
    Browse the repository at this point in the history
  9. Update ngjiayuan.md

    charltonator authored Nov 6, 2021
    Configuration menu
    Copy the full SHA
    95e62c0 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    ad4ac53 View commit details
    Browse the repository at this point in the history
  11. More tests

    aakanshanarain committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    a4c482b View commit details
    Browse the repository at this point in the history
  12. Push these changes

    aakanshanarain committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    b27d67b View commit details
    Browse the repository at this point in the history
  13. Merge pull request #190 from aakanshanarain/master

    Add tests for more coverage
    aakanshanarain authored Nov 6, 2021
    Configuration menu
    Copy the full SHA
    c0289a8 View commit details
    Browse the repository at this point in the history
  14. Add ppp

    EthanWong6362 committed Nov 6, 2021
    Configuration menu
    Copy the full SHA
    082241a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b0413c0 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2021

  1. Configuration menu
    Copy the full SHA
    1eec434 View commit details
    Browse the repository at this point in the history
  2. Fix DG diagram

    aakanshanarain committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    eceaacf View commit details
    Browse the repository at this point in the history
  3. Fix DG Diagram

    aakanshanarain committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    59b3983 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #196 from aakanshanarain/master

    Fix DG Diagram
    aakanshanarain authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    677a366 View commit details
    Browse the repository at this point in the history
  5. Update model diagram

    zacharylwy committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    1c9587b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2fb9d69 View commit details
    Browse the repository at this point in the history
  7. Update UserGuide.md

    aakanshanarain authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    e06088f View commit details
    Browse the repository at this point in the history
  8. Correct Typo

    zacharylwy committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    2091f85 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #197 from zacharylwy/master

    Update DG Diagram
    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    2f5c842 View commit details
    Browse the repository at this point in the history
  10. smol updates

    update to user/developer guide and edit command
    EthanWong6362 committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    3422d7b View commit details
    Browse the repository at this point in the history
  11. Merge pull request #198 from EthanWong6362/master

    smol updates
    EthanWong6362 authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    644c235 View commit details
    Browse the repository at this point in the history
  12. Update UserGuide.md

    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    68121d7 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #199 from zacharylwy/master

    Update UserGuide.md
    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    1437d42 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a7393cf View commit details
    Browse the repository at this point in the history
  15. Merge pull request #200 from charltonator/master

    Add check for profile that is both user profile and favourite
    charltonator authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    375fbbb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    84a7f78 View commit details
    Browse the repository at this point in the history
  17. Update AboutUs.md

    EthanWong6362 authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    924fff8 View commit details
    Browse the repository at this point in the history
  18. Update UserGuide.md

    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    9e041da View commit details
    Browse the repository at this point in the history
  19. Delete editProfile.png

    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    fea8772 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    c2146eb View commit details
    Browse the repository at this point in the history
  21. Add files via upload

    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    a1601db View commit details
    Browse the repository at this point in the history
  22. Update Ui.png

    EthanWong6362 committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    56bdda5 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #201 from EthanWong6362/master

    Update Ui.png
    EthanWong6362 authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    f95e6e6 View commit details
    Browse the repository at this point in the history
  24. Update DeveloperGuide

    ngjiayuan authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    4dbef23 View commit details
    Browse the repository at this point in the history
  25. Merge pull request #202 from zacharylwy/master

    Update UG
    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    8c3d080 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    4b6de5f View commit details
    Browse the repository at this point in the history
  27. Update DG

    zacharylwy committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    6c60e33 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    a9d9091 View commit details
    Browse the repository at this point in the history
  29. Merge pull request #203 from zacharylwy/master

    Update DG
    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    19f6d04 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    27b6a8f View commit details
    Browse the repository at this point in the history
  31. Add files via upload

    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    3d0160c View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    edb038d View commit details
    Browse the repository at this point in the history
  33. Update DG Diagram

    zacharylwy committed Nov 7, 2021
    Configuration menu
    Copy the full SHA
    fe1e82c View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    c6693f6 View commit details
    Browse the repository at this point in the history
  35. Merge pull request #204 from zacharylwy/master

    Update DG Diagram
    zacharylwy authored Nov 7, 2021
    Configuration menu
    Copy the full SHA
    f3a2b56 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. Update UserGuide.md

    ngjiayuan authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    dae3bed View commit details
    Browse the repository at this point in the history