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

[CS2103-T14-2] Advanced&Efficient #79

Open
wants to merge 418 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 26, 2023

  1. Merge pull request #119 from AaronJT1/branch-create-view-command

    Create view command
    AaronJT1 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    5cc46d7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #120 from RiyaMehta2211/ICNumberBasedAccess

    Modify Delete Command to use IC Number
    AaronJT1 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    49b6a25 View commit details
    Browse the repository at this point in the history
  3. Fix bug for DeleteCommand

    Currently, the deletecommand is finding a patient to delete based
    on a filtered list rather than full list of patients
    
    It is important for a user to delete a patient outside of the
    filtered list as well.
    
    Create a getCurrentPatientList method in ModelManager.java to
    get the current list of patients
    AaronJT1 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    af16680 View commit details
    Browse the repository at this point in the history
  4. Modify User Guide to include features

    Make changes to edit and delete to access a patient in the list using ic number instead of patient index. Update User Guide to reflect these changes to edit and delete commands.
    
    Let's modify User Guide to ensure an easy tutorial for the users
    RiyaMehta2211 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    205389c View commit details
    Browse the repository at this point in the history
  5. Add existing Ic Number check for Add command

    Currently, the Add Command is implemented in a way that patients
    with similar ic numbers are allowed to be added
    
    Since ic numbers should be unique to every patient, it is important
    to inform users that the ic number of the new patient already exist
    
    Update AddCommand.java and AddCommandTest.java for ic number check
    AaronJT1 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    e5fbe6a View commit details
    Browse the repository at this point in the history
  6. Merge pull request #9 from AY2324S1-CS2103T-T14-2/master

    Update project from team repo
    longnguyentan committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    26079e1 View commit details
    Browse the repository at this point in the history
  7. Update UI Component section of developer guide

    Currently the UI Component section of the developer guide
    is outdated and missing information related to the
    newly added RecordCard and RecordPanel classes.
    
    Updating the guide can help us keep better documentation
    of our project.
    
    Let's add the newly added RecordPanel and RecordCard
    classes to the UML diagram and alter the explanation
    to include them as well.
    wujy28 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    317f89e View commit details
    Browse the repository at this point in the history
  8. Add JSON serialization for Record

    Implement JsonAdaptedRecord to enable JSON serialization for patient records.
    Update JsonSerializableAddressBook to work with new serialization.
    Enhance AddressBook model to support new serialization functionality.
    Introduce UniqueRecordList for ensuring record uniqueness.
    longnguyentan committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    729d15a View commit details
    Browse the repository at this point in the history
  9. Update UI

    The A&E current UI does not match with the team's design.
    Update the FXML files to update the design.
    longnguyentan committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    ef26cae View commit details
    Browse the repository at this point in the history
  10. Add unit tests for Record class

    - Test default constructor for Record.
    - Validate initialization with default values for fields.
    - Test setters and getters for initialObservations, diagnosis, treatmentPlan.
    - Ensure correct behavior of equals method.
    longnguyentan committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    ac3631a View commit details
    Browse the repository at this point in the history
  11. Add Record JSON storage format to Developer Guide

    - Detailed the JSON representation of the `Record` class.
    - Provided an example JSON format with explanations for each field.
    - Highlighted the default values used for certain fields when no data is provided.
    longnguyentan committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    bafbfd6 View commit details
    Browse the repository at this point in the history
  12. Implement Record Command

    Implement Record command to edit patient record.
    
    A Record attribute with relevant fields has been created for our Patient
    class. However, it cannot be edited and will stay as default values.
    
    Implementing a record function will allow us to take the first step in making
    a more viable product with suitable features.
    
    Let’s create the RecordCommand classes along with parser and test
    classes. Doing so will allow us to edit a patient’s record more efficiently.
    thienmy0 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    beeeb1f View commit details
    Browse the repository at this point in the history
  13. Fix Checkstyle Errors

    Fix Checkstyle Errors
    
    Some classes have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code.
    thienmy0 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    cddf894 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #127 from RiyaMehta2211/branchUserGuide

    Modify User Guide to include Edit and Delete Features
    thienmy0 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    bcd32b4 View commit details
    Browse the repository at this point in the history
  15. Modify DeveloperGuide.md to include enhancements

    Add Birthday class and save Assigned Department to Storage. Also modify delete and edit a patient to use IC Number instead of index of the patient.
    RiyaMehta2211 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    6b10dcf View commit details
    Browse the repository at this point in the history
  16. Add Assign command and functionality to app

    Currently, the app does not support the editing of department
    or the assignment of a patient to a department.
    
    This functionality must be added for our app to be fully
    functional as per its functional requirements.
    
    Let's,
    * Add an AssignCommand class to handle the command execution
    * Add an AssignCommandParser class to parse user input
    * Add the command to the AddressBookParser
    wujy28 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    1496f8f View commit details
    Browse the repository at this point in the history
  17. Fix some checkstyle issues

    wujy28 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    97a967b View commit details
    Browse the repository at this point in the history
  18. Add implementation details for assign department

    The current developer guide lacks details regarding our
    new features.
    
    Updating it now would alleviate the burden of having
    to do them later.
    
    Let's add a section about how our department attribute
    and assign department feature is implemented.
    wujy28 committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    552404e View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2023

  1. Merge pull request #134 from RiyaMehta2211/branchUserGuide

    Modify DeveloperGuide.md to include enhancements
    thienmy0 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    eb73906 View commit details
    Browse the repository at this point in the history
  2. Update DG with Implementation of Record Feature

    Update DG with Implementation of Record Command
    
    A New Record Command has been created and implemented. DG does
    not contain information about the Record Command.
    
    Updating the DG will ensure that DG is kept up to date and fellow
    developers understand the implementation of the newly added Record command.
    
    Let’s keep the DG up to date with our enhancements. Doing so allows
    everyone to be aware of the changes made and how they were made.
    thienmy0 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    f933f1c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #128 from AaronJT1/master

    Update Add command to check for existing Ic Number
    thienmy0 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    0f1d633 View commit details
    Browse the repository at this point in the history
  4. Add sequence diagram for AssignCommand#execute in DG

    Currently there is placeholder text for the sequence diagram
    for assign department in the implementation section.
    
    Let's replace it with the actual diagram.
    wujy28 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    59366c5 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #136 from thienmy0/branch-UpdateDG

    Update DG with Record Feature
    wujy28 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    9f626cf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9bf8cd6 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #137 from wujy28/branch-docs

    Update DG with Assign Department Feature and Ui Component
    thienmy0 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    8ef8faa View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    832c8c4 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #132 from longnguyentan/branch-DG

    Add `Record` JSON Storage Format to DG
    wujy28 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    af5f076 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    105c822 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #133 from thienmy0/branch-EditRecord

    Implement Record Command
    wujy28 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    4fbfb50 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    5421839 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #135 from wujy28/branch-Assign-Department

    Add Assign Department Functionality to App
    thienmy0 committed Oct 27, 2023
    Configuration menu
    Copy the full SHA
    9f14f93 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2023

  1. Fix Bug of Assigned Department and Record being reset after using Edi…

    …t Command
    
    Fix Bug of Assigned Department and Record being reset after using Edit
    Command
    
    Assign and Record Commands have been created to edit assigned
    department and record. Using the Edit Command will reset the edited
    assigned department and record back to default.
    
    Fixing this bug will ensure that all relevant fields are kept even after
    modifying their values.
    
    Let’s add a Patient Constructor that takes in both the assigned
    department and record. Doing so allows us to keep the assigned
    department and record values even after using the edit command.
    thienmy0 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    18eb363 View commit details
    Browse the repository at this point in the history
  2. Fix Checkstyle Errors

    Fix Checkstyle Errors
    
    Some classes have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code that passes checks.
    thienmy0 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    3f109d5 View commit details
    Browse the repository at this point in the history
  3. Fix Github Check Errors

    Fix Github Check Errors
    
    Some classes have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code that passes checks.
    thienmy0 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    6becfe9 View commit details
    Browse the repository at this point in the history
  4. Make Edit Command with i/ prefix in user input

    Currently, the edit command requires user input like edit <IC> n/<edit name>... However, this is not consistent with the user inputs for other commands.
    
    Let's change edit command and corresponding edit command tests to take in input like edit i/<ic> n/<edit name> etc.
    RiyaMehta2211 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    a901865 View commit details
    Browse the repository at this point in the history
  5. Create Method to Copy Record Information

    Create Method to Copy Record Information
    
    The Patient class has a constructor that takes in Record as a
    parameter and sets its record field to the Record given in the
    parameter. However, this would make a patient have a Record
    that could be tied to another Patient.
    
    Creating a method to copy the Record information will ensure that
    the Patient field of the Record matches.
    
    Let’s be careful in our code. Doing so will allow our product to be
    more future-proof and error-free.
    thienmy0 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    0c801bc View commit details
    Browse the repository at this point in the history
  6. Merge pull request #144 from thienmy0/branch-FixEditBug

    Fix Edit Bug and Checkstyle Errors
    wujy28 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    b4bc74f View commit details
    Browse the repository at this point in the history
  7. Fix bug where patient details do not update

    Currently, when you edit a patient's details, the GUI
    does not update with the new details unless you reselect
    the patient in the list.
    
    We must fix this bug so that the user can view the new
    details easily.
    
    Let's edit the RecordPanel class to handle the event
    when the patient's details changes properly.
    wujy28 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    e691662 View commit details
    Browse the repository at this point in the history
  8. Fix Delete feature not able to parse empty input bug

    Currently, when no argument is given to delete command, it causes an
    exception in the system and no help message is shown.
    
    It is important to notify users of any help message when required
    
    Update DeleteCommand.java and DeleteCommandParser.java to fix help
    message bug
    AaronJT1 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    75b406c View commit details
    Browse the repository at this point in the history
  9. Restyle Record fields and fix non-update bug

    The record fields in the GUI currently do not update
    when the user edits the record using the record
    command. There is also the remark field in the GUI
    even though we do not intend for the user to edit it.
    
    We should fix the bug and remove the remark so that the
    program works like intended.
    
    Let's
    * Wrap the Record fields in SimpleStringProperty so that
    changes to them can be observed by listeners in the GUI.
    * Change the container type of record fields in the GUI
    from TextFlow to TextArea.
    * Add the GUI components as listeners to the events of the
    Record Card fields.
    * Remove the remark box from the GUI."
    wujy28 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    ba1b3d1 View commit details
    Browse the repository at this point in the history
  10. Simplify the previous changes

    The changes needed for the GUI to update when record
    is edited previously involved the refactoring of
    String attributes in Record into SimpleStringProperty.
    
    However, such changes in Record were not required for
    the bug fix we need for the GUI.
    
    Let's simplify the changes so that we can avoid
    modifying what we have previously done as much
    as possible.
    wujy28 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    cacc76e View commit details
    Browse the repository at this point in the history
  11. Restyle GUI to look like initial mockup

    Currently, the GUI still looks different from the
    intended UI.
    
    We should update it to match.
    
    Let's modify the CSS and layout of the UI components
    so that they resemble the initial design.
    wujy28 committed Oct 28, 2023
    Configuration menu
    Copy the full SHA
    8ddfb98 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2023

  1. Make final changes and fix warnings

    When running the application, there are many warnings about
    the wrong JavaFX version that show up in the console.
    
    We should remove these warnings so that the application can
    run as smoothly as possible.
    
    Let's fix these warnings and also make some final changes
    to the GUI of the application.
    wujy28 committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    7c5fc76 View commit details
    Browse the repository at this point in the history
  2. Fix checkstyle issues

    wujy28 committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    166b0a2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #150 from wujy28/branch-GUI

    Update GUI to look like our final product
    AaronJT1 committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    a725167 View commit details
    Browse the repository at this point in the history
  4. Fix Record Command bug for not showing help message

    Currently, the record feature does not show help message for
    no input
    
    It is important to let the user know of any useful help message
    
    Update RecordCommandParser to throw exception with helpful message
    AaronJT1 committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    7b0e4d2 View commit details
    Browse the repository at this point in the history
  5. Add Priority Attribute

    Add Priority Attribute
    
    Having priority as an attribute of patients would be helpful for ED
    doctors. Our system does not have a Priority attribute.
    
    Creating a class for Priority will ensure that this can be implemented
    as part of a Patient.
    
    Let’s create the classes: Priority and PriorityTest. Doing so
    will ensure that the user can input important information about patients
    into the application and ease subsequent testing of the information.
    thienmy0 committed Oct 29, 2023
    Configuration menu
    Copy the full SHA
    0d93b82 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Update RecordCommand test

    Currently record command does not test if ic number already exist
    
    It is important to do integration testing for ic number to ensure system
    work as expected.
    
    Add RecordCommand testcases testing existing ic number
    AaronJT1 committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    115dd94 View commit details
    Browse the repository at this point in the history
  2. Update Find command to show message when no patient with keyword found

    Currently when no patients with the keyword is found, no error
    message is given.
    
    It is important to inform the user with helpful error messages
    
    Update FindCommand and FindCommandTest to handle no patient with
    keyword found
    AaronJT1 committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    9aed7ae View commit details
    Browse the repository at this point in the history
  3. Update DeveloperGuide.md for the add command implementation

    Currently, there is no developer guide implementation for
    add command.
    
    It is important to update the developer guide to ensure that future
    developers can understand our implementation philosophy
    
    Update DeveloperGuide.md to include implementation for add command
    AaronJT1 committed Oct 30, 2023
    Configuration menu
    Copy the full SHA
    9941380 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Configuration menu
    Copy the full SHA
    e163cf0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #145 from RiyaMehta2211/master

    Make Edit Command with i/ prefix in user input
    AaronJT1 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    826d638 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a5660ea View commit details
    Browse the repository at this point in the history
  4. Merge pull request #153 from AaronJT1/branch-enhance-find

    Update commands to show error message if field does not exist
    AaronJT1 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    9e1d416 View commit details
    Browse the repository at this point in the history
  5. Make Edit Command Parser with i/ prefix in user input

    Let's modify the Edit Command Parser and the corresponding test cases to parse raw user inputs without the command word
    RiyaMehta2211 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    ad1cd48 View commit details
    Browse the repository at this point in the history
  6. Implement Priority Attribute

    Implement Priority Attribute
    
    Priority attribute has been created for our Patient class. However, it
    is not being implemented in our system.
    
    Editing the relevant classes will ensure that the Priority attribute is
    implemented and functional.
    
    Let’s edit the Patient, Command and etc. classes to implement
    Priority. Doing so will ensure that the Priority attribute can be used
    and provide benefits to users.
    thienmy0 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    226fe6f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    eca6e5e View commit details
    Browse the repository at this point in the history
  8. Merge pull request #155 from RiyaMehta2211/Edit_Command_Parser

    Make Edit Command Parser with i/ prefix in user input
    AaronJT1 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    62c721f View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b5c4b16 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #156 from thienmy0/branch-PriorityAttribute

    Add and implement Priority attribute
    AaronJT1 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    325e5f4 View commit details
    Browse the repository at this point in the history
  11. Fix & Add Test Cases

    Fix & Add Test Cases
    
    Some test cases are failing due to our implementation. There is also a
    lack of test cases in some areas.
    
    Editing the test cases will ensure that our system is more well-tested.
    
    Let’s fix and add more test cases. Doing so will ensure that failed test
    cases do not accumulate.
    thienmy0 committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    377dd20 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

  1. Merge pull request #158 from thienmy0/branch-FixTestCases

    Fix & Add Test Cases
    AaronJT1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    9813de2 View commit details
    Browse the repository at this point in the history
  2. Update Edit command related tests

    Currently, the testing for Edit related features like EditCommand and
    EditCommandParser are failing.
    
    It is important to ensure that the test cases pass at all times so as
    to ensure the workability of that segment of code.
    
    Update EditCommandParserTest.java and EditCommandTest.java to fix
    failing test cases
    AaronJT1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    964ef1e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d66c43 View commit details
    Browse the repository at this point in the history
  4. Add age attribute to patient

    Currently, the Age class is unused.
    
    We want to include the Age attribute in Patient so
    that users can view and make use of this information
    to make decisions.
    
    Let's,
    * Modify the age class to be so that it instantiated
    with birthday to support the auto-computation of age
    * Add the age attribute to the patient
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    1353e31 View commit details
    Browse the repository at this point in the history
  5. Fix Patient test case and relax equals for Patient

    Currently, there is an issue with the test case for equals()
    in Patient. This test case is believed to arise from the
    addition of the age.equals into the equals method.
    
    Perhaps removing it will fix the test case failure.
    
    Let's remove the equality checking for age in Patient and
    add age into the toString test case expected output."
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    e5c80a7 View commit details
    Browse the repository at this point in the history
  6. Readd age equality comparison in Patient equals

    The statement was removed due to it being suspected to
    have caused the test case failure in PatientTest for
    the equals method.
    
    However, it appears to not be the cause of the issue,
    after checking with other programmers.
    
    Let's add it back into equals for completeness.
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    3413929 View commit details
    Browse the repository at this point in the history
  7. Update test cases for Age and Birthday

    Currently, the AgeTest tests and BirthdayTests are
    outdated and do not take into account the new changes.
    
    We should update the test cases to ensure that our
    tests are testing the updated methods properly.
    
    Let's add new test cases for the constructor and toString
    methods in Age, and for the isValidBirthdate method in
    BirthdayTest.
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    bed9cd0 View commit details
    Browse the repository at this point in the history
  8. Fix checkstyle issues

    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    2c894a5 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #160 from AaronJT1/branch-fix-edit

    Update Edit command related tests
    thienmy0 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    e976360 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #161 from wujy28/branch-Age

    Add auto-computation behavior for Age
    thienmy0 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    05c948d View commit details
    Browse the repository at this point in the history
  11. Improve implementation of age

    Currently, the age is computed with the formula,
    age = current year - birth year.
    
    However, this does not consider whether the birthday
    has passed for that year, and is different from
    how people generally compute their age.
    
    Let's change the implementation to fit our
    understanding of age and birthdays.
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    e7353c7 View commit details
    Browse the repository at this point in the history
  12. Fix checkstyle issues

    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    6175f03 View commit details
    Browse the repository at this point in the history
  13. Create test for Assign Command feature

    Currently, there are no test cases for Asssign Command
    
    It is important to ensure all components of the software is
    tested to ensure workability.
    
    Create AssignCommandTest.java and AssignCommandParserTest.java
    AaronJT1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    cdc7676 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #162 from wujy28/branch-Age

    Improve implementation of Age
    AaronJT1 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    1fca10e View commit details
    Browse the repository at this point in the history
  15. Add sort command to app

    Currently, there lacks a command for users to sort
    the patient list by a given property.
    
    We should add it to allow patients to better
    organize their data.
    
    Let's,
    * Add the SortCommand and SortCommandParser
    classes
    * Modify Priority class to store the enum type
    as its value instead of a string
    
    Note that the function is currently implemented
    such that you can sort the displayed filtered list,
    but doing so will also sort the underlying full list.
    It is this way as the filteredpatientlist cannot be
    modified, so sorting the underlying addressbook is
    the fastest and easiest way to add this functionality
    without modifying the structure of the model and ui
    too much."
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    8d07f2a View commit details
    Browse the repository at this point in the history
  16. Merge pull request #163 from AaronJT1/branch-create-assign-tests

    Create test for Assign Command feature
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    af5e2dd View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    8e7f178 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    1d1902e View commit details
    Browse the repository at this point in the history
  19. Remove Record from Storage

    Remove Record attribute from Storage to debug.
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    4ef3a57 View commit details
    Browse the repository at this point in the history
  20. Implement JSON storage for patient records and enhance UniqueRecordList

    Currently, the patient record storage does not support JSON serialization/deserialization for
    critical attributes like initial observations, diagnosis, and treatment plan. Additionally,
    the UniqueRecordList class lacks comprehensive test cases to validate its behavior.
    
    Enhancing JSON storage will ensure all necessary patient details are persisted, and expanding
    test coverage for UniqueRecordList will help maintain data integrity and prevent potential bugs.
    
    Let's,
    * Update JsonAdaptedPatient to serialize/deserialize additional patient attributes
    * Add extensive test cases for UniqueRecordList to cover various scenarios
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    9320a6a View commit details
    Browse the repository at this point in the history
  21. Improve User Guide Introduction and Adjust Photo Sizes

    The current version of the User Guide lacks a comprehensive introduction,
    and the photos within are not displayed at an optimal size.
    
    Let's,
    * Enhancing the introductory section with additional details to provide a clearer overview.
    * Rescaling the photos in the User Guide to improve readability and visual appeal.
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    67c9c8c View commit details
    Browse the repository at this point in the history
  22. Merge pull request #164 from longnguyentan/branch-RecordStorage

    Implement JSON storage for patient records
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    4708d94 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #165 from longnguyentan/branch-UG

    Improve User Guide Introduction and Adjust Photo Sizes
    longnguyentan committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    83ec465 View commit details
    Browse the repository at this point in the history
  24. Update GUI to include priority tags

    Priorities are currently not visible to the user
    in the GUI.
    
    We should make them visible for easy reference.
    
    Let's,
    * Restyle the tags
    * Add a priority tag
    * Do other small adjustments to make the UI look
    better.
    wujy28 committed Nov 1, 2023
    Configuration menu
    Copy the full SHA
    cb8307a View commit details
    Browse the repository at this point in the history
  25. Fix checkstyle issues

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

Commits on Nov 2, 2023

  1. Configuration menu
    Copy the full SHA
    5b06576 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #166 from wujy28/branch-Sort

    Add sort command and UI changes
    thienmy0 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    ce6c100 View commit details
    Browse the repository at this point in the history
  3. Add ViewSequenceDiagram to DeveloperGuide.md

    Currently theres no diagrams for the View feature
    
    It is important to provide diagram to best aid future developers
    in using our software.
    
    Create ViewSequenceDiagram.puml
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    38af6cf View commit details
    Browse the repository at this point in the history
  4. Create AddSequenceDiagram.puml and update DeveloperGuide.md

    Currently, there is no diagram depicting the control flow of the
    Add command.
    
    It is important to provide diagram to best aid future developers
    in using our software.
    
    Create AddSequenceDiagram.puml
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    1e6a1e4 View commit details
    Browse the repository at this point in the history
  5. Add Undo and Redo Command

    Some commands like clear can have massive implications if performed wrongly with large databases being lost.
    
    Hence, implemented Undo and Redo to cushion such loss in data. Also added corresponding test cases, updated user guide, and fixed test cases from other classes
    RiyaMehta2211 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    c9ac07d View commit details
    Browse the repository at this point in the history
  6. Update UserGuide.md to have quick start component

    Currently the user guide does not have quick start component
    
    It is important to ensure that user guide have this component
    so that users will know how to start with our product.
    
    Update UserGuide.md to add quick start component
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    8e8f6ff View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0a8c179 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #167 from RiyaMehta2211/branch-AddUndoAndRedo

    Add Undo and Redo Command
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    d9c3ada View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    ac25071 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #168 from AaronJT1/branch-editing-documentations

    Editing documentations
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    4fabeee View commit details
    Browse the repository at this point in the history
  11. Fix error that came from conflict in git

    Currently, the program is not able to run due to bug in conflict
    
    It is important to ensure that the program run at all times
    
    Fix errors in programme code which prevent programme execution
    AaronJT1 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    fcb27b0 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #169 from AaronJT1/branch-fix-erros

    Fix error that came from conflict in git
    RiyaMehta2211 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    7d01277 View commit details
    Browse the repository at this point in the history
  13. Make final UI changes

    Currently, the styling of the scrollbar looks out
    of place with the rest of the UI. The help window's
    font is different as well. Warnings are also thrown
    when FXML files are loaded.
    
    We should update the UI and remove these warnings
    so that our GUI looks more cohesive and runs more
    smoothly.
    
    Let's,
    * Style the scrollbar
    * Style the help window
    * Remove fxml warnings
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    06d99dd View commit details
    Browse the repository at this point in the history
  14. Update some parts of the User Guide

    Currently, the user guide is very outdated, lacking
    commands we've added and the new UI screenshots.
    
    We should update the UG to match our new iteration.
    
    Let's,
    * Update the Ui Screenshots
    * Add the departments appendix
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    6dc957a View commit details
    Browse the repository at this point in the history
  15. Add Sort and Find to User Guide

    Currently, the user guide is outdated and does not contain
    information about some newer commands.
    
    We should make sure that our UG is up to date so that
    users know what our app has to offer
    
    Let's add the new sections into the UG.
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    7910684 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #171 from wujy28/branch-UG

    Update UI and UG
    thienmy0 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    7617c8a View commit details
    Browse the repository at this point in the history
  17. Update UG

    Update UG
    
    User Guide is not up to date.
    
    Editing the UG ensures that the UG is up to date.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    8f74255 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #172 from thienmy0/branch-UGUpdates

    Update UG
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    025ffe9 View commit details
    Browse the repository at this point in the history
  19. Fix GUI Record not updating bug

    Currently, if you edit a record that is currently
    displayed, the new fields are not updated in the UI.
    
    We should fix this issue to make our app more
    user-friendly and professional.
    
    Let's,
    * Wrap Record strings in SimpleStringProperty
    so that they can be observed.
    * Add GUI components as observers of the changes
    to these Record fields.
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    1ef5413 View commit details
    Browse the repository at this point in the history
  20. Fix some checkstyle issues

    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    e66c4cd View commit details
    Browse the repository at this point in the history
  21. Update images in user guide

    Right now, the image for checking Java version is
    missing. The image for the jar file is blurry as well.
    
    We should replace these images so that users will find
    the images helpful.
    
    Let's add the java version image and replace the jar file
    image with a high quality one.
    wujy28 committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    ea5dfb3 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Merge pull request #175 from wujy28/branch-UG

    Update images in user guide
    AaronJT1 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    b793960 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #173 from wujy28/branch-GUI

    Fix bug whereby UI does not update with new Record field values when record is edited
    AaronJT1 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    7d416db View commit details
    Browse the repository at this point in the history
  3. Update UserGuide.md to allow user to download latest release

    Currently the release points to the trial release
    
    It is important to ensure that the user guide reflects the latest jar
    
    Update the user guide to show latest jar
    AaronJT1 committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    9274b8b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ec2d08f View commit details
    Browse the repository at this point in the history
  5. Update A&E icon for webpage

    Currently, the icon of the webpage is still the SE Education logo.
    We updated the icon so it will match our product logo.
    longnguyentan committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    9924b28 View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Fix Add feature bug for wrong ic number

    Currently, if wrong ic number is given, there is no error message
    
    It is important to ensure that relevant help messsages are given
    to users.
    
    Update AddCommandParser.java to fix error messaging
    AaronJT1 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    a0f7a3c View commit details
    Browse the repository at this point in the history
  2. Update Project Portfolio Page (PPP)

    Currently, the PPP is outdated.
    
    It is important to constantly update the PPP so as to allow users to
    view contributions by individual team members
    
    Update PPP to add contributions
    AaronJT1 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    cd0c0cd View commit details
    Browse the repository at this point in the history
  3. Update DeveloperGuide.md to fit project

    Currently, the developer guide overview section is outdated
    
    It is important to ensure that the developer guide is always updated
    so that future developers will be able to work on our project
    
    Update DeveloperGuide.md headers to fit project
    AaronJT1 committed Nov 6, 2023
    Configuration menu
    Copy the full SHA
    85bc39a View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    30f02e9 View commit details
    Browse the repository at this point in the history
  2. Fix name sorting by ASCII value

    Currently, the sorting of names follow the ASCII
    order, whereby all names starting with a capital
    letter will be ordered in front of names starting
    with a lower case letter.
    
    However, this does not make much sense from the
    user's standpoint, as we would expect sorting by
    lexicographical order to be based purely on the
    alphabet and not the case.
    
    Let's change the compareTo method in name to
    disregard the case of letters when comparing.
    wujy28 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    4f7509d View commit details
    Browse the repository at this point in the history
  3. Fix Undo And Redo Commands

    Minor issues with the states when undo and redo commands are executed. Fix these issues and add corresponding command tests.
    RiyaMehta2211 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    a2e2a14 View commit details
    Browse the repository at this point in the history
  4. Fix AddressBook Parser and Add Command Test cases

    RiyaMehta2211 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    7cbde8c View commit details
    Browse the repository at this point in the history
  5. Delete Dead Code and comments

    Ensure code aligns with coding standards
    RiyaMehta2211 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    ce98b13 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #224 from RiyaMehta2211/master

    Fix Undo And Redo Commands
    thienmy0 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    04aaa0b View commit details
    Browse the repository at this point in the history
  7. Fix failing test cases

    Currently, there are some failing test cases. Debug Record and other classes to pass these test cases.
    RiyaMehta2211 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    acc42cf View commit details
    Browse the repository at this point in the history
  8. Merge pull request #225 from RiyaMehta2211/master

    Fix failing test cases
    AaronJT1 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    bbdc6ac View commit details
    Browse the repository at this point in the history
  9. Add comments into test files

    Currently, the testing utilities like AddCommandParserTest lack comments
    explaining the testing methodology.
    
    It is important to write comments on test cases so that future
    developers under our test methodology.
    
    Add comments to test cases in testing utilities
    AaronJT1 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    3b6dd39 View commit details
    Browse the repository at this point in the history
  10. Add testing for AssignCommand and AssignCommandParser

    Currently, the testing for AssignCommand and AssignCommandParser
    is insufficient.
    
    We need to make the testing more effective so that we can detect
    more bugs.
    
    Let's,
    * Add more testcases for AssignCommand
    * Add more testcases for AssignCommandParser
    wujy28 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    8d5658f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    f4d4bb0 View commit details
    Browse the repository at this point in the history
  12. Add testing for Sort command

    Currently, the sort command lacks any form of testing.
    
    We need to test this feature to ensure that it is
    working as intended and detect bugs.
    
    Let's,
    * Add testing for the SortCommand class
    * Add testing for the SortCommandParser class
    * Add testing for the compareTo methods used by sort
    wujy28 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    6c729a4 View commit details
    Browse the repository at this point in the history
  13. Fix checkstyle issues

    wujy28 committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    85042e5 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. Merge pull request #226 from wujy28/branch-Sort

    Fix bug with sort and added testing for assign and sort
    AaronJT1 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    1a11a67 View commit details
    Browse the repository at this point in the history
  2. Update PPP

    Currently, there is ug and dg contribution section with no content
    
    I chose to not write it since it is optional, so i remove it
    
    Remove UG and DG contribution section in PPP
    AaronJT1 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    a26ba01 View commit details
    Browse the repository at this point in the history
  3. Update DeveloperGuide to add Planned Enhancements appendix

    Currently, we dont have a planned enahancemnets appendix
    
    It is good to have it as it allows us to counter feature flaws
    
    Add Planned enhancements appendix into DeveloperGuide
    AaronJT1 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    7046c2f View commit details
    Browse the repository at this point in the history
  4. Update address book references in javadocs

    Currently, some of our files have reference to the address book term.
    
    It is important to change it to fit our product which is a patient
    record system.
    
    Update the address book references to patient record system
    AaronJT1 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    6c51008 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #227 from AaronJT1/branch-fix-add-bugs

    Branch fix add bugs
    RiyaMehta2211 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    53725dc View commit details
    Browse the repository at this point in the history
  6. Update PPP

    Update PPP
    
    PPP draft deadline is upcoming and PPP is not updated.
    
    Editing the PPP with relevant details ensures that PPP is updated and
    relevant parties would be more aware of my contributions.
    
    Let’s update our PPP regularly. Doing so ensures we are kept up to date
    about each other’s contributions.
    thienmy0 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    a82fe14 View commit details
    Browse the repository at this point in the history
  7. Fix error message bugs

    Currently, if you use the assign command without department
    prefix, the program will not display an error message but an
    exception is thrown behind the scenes.
    
    This is undesirable as the user does not get any feedback
    as to why the command is not working, and there will
    be an unhandled exception which might cause other issues
    in the program.
    
    Let's add a check for department prefix in AssignCommandParser,
    and also add a newline to the assign command message.
    wujy28 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    31a341a View commit details
    Browse the repository at this point in the history
  8. Update wujy28's PPP

    Currently, the PPP is only a skeleton, and lacks
    any real information.
    
    We should update the PPP with a draft containing
    our contributions so far so that it is up-to-date.
    
    Let's create a draft for our PPPs.
    wujy28 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    91e5d22 View commit details
    Browse the repository at this point in the history
  9. Fix checkstyle issues

    wujy28 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3526e58 View commit details
    Browse the repository at this point in the history
  10. Update DG with Appendix Instructions for Manual Testing

    Update DG with Appendix Instructions for Manual Testing
    
    An important appendix for manual testing is missing in the DG.
    
    Editing the DG ensures that the DG is more complete and relevant.
    
    Let’s keep the DG updated. Doing so ensures future and fellow
    developers have a clearer idea of our project.
    thienmy0 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    ed4c2fd View commit details
    Browse the repository at this point in the history
  11. Merge pull request #228 from wujy28/branch-docs

    Fixed error message bug for assign command and updated PPP
    thienmy0 committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    c3b296a View commit details
    Browse the repository at this point in the history
  12. Merge pull request #229 from thienmy0/branch-v1.4

    Update PPP and DG Appendix Instructions for Manual Testing
    longnguyentan committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    698c5be View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Merge pull request #11 from AY2324S1-CS2103T-T14-2/master

    Update project from team repo
    longnguyentan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    60c77d4 View commit details
    Browse the repository at this point in the history
  2. Change addressbook.json and update PPP

    * Currently, the data is still stored in `addressbook.json`. So, the team changes it to
    match with the current project's name.
    * Update Project Portfolio Page (PPP).
    longnguyentan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    5e392c5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #232 from longnguyentan/branch-JsonFile

    Change `addressbook.json` and update PPP
    thienmy0 committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    8e6c532 View commit details
    Browse the repository at this point in the history
  4. Update use cases in DeveloperGuide

    Currently, the use casees in dg is outdated
    
    It is important to constantly update the dg use cases
    
    Update use cases in dg
    AaronJT1 committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    f866f83 View commit details
    Browse the repository at this point in the history
  5. Update PPP

    Updated PPP with contributions made in the team project, both in terms of code and documentation
    RiyaMehta2211 committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    2d205ae View commit details
    Browse the repository at this point in the history
  6. Remove extra sections

    Removed additional sections in the PPP for better readability
    RiyaMehta2211 committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    f5d361f View commit details
    Browse the repository at this point in the history
  7. Merge pull request #234 from RiyaMehta2211/PPP

    Update PPP
    longnguyentan committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    e562e99 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9478ec1 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2023

  1. Merge pull request #233 from AaronJT1/branch-update-doc

    Update use cases in DeveloperGuide
    thienmy0 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    6dccc22 View commit details
    Browse the repository at this point in the history
  2. Fix error messages

    Fix error messages
    
    Error messages for some commands are inconsistent or display the wrong
    information.
    
    Editing the said error messages ensures that users will not get confused.
    
    Let’s ensure that our system’s messages are clear and consistent. Doing
    so allows our app to look and feel better using.
    thienmy0 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    e788cf9 View commit details
    Browse the repository at this point in the history
  3. Update DG

    Update DG
    
    Implementation of Record Command and Appendix: Instructions for Manual
    Testing in DG are not updated and polished.
    
    Editing the DG ensures that our DG is more complete for submission.
    
    Let’s update our parts in the DG. Doing so will allow us to get better marks
    for DG.
    thienmy0 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    7883bd5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de710d9 View commit details
    Browse the repository at this point in the history
  5. Fix Checkstyle Errors

    Fix Checkstyle Errors
    
    Some files have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code that passes checks.
    thienmy0 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    e8ec6b8 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #12 from AY2324S1-CS2103T-T14-2/master

    Update project
    longnguyentan committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    9cb9537 View commit details
    Browse the repository at this point in the history
  7. Update Data Archiving in DG

    Currently, the data archiving is still missing. Update this part
    to provide an overview of how data is stored and archived.
    longnguyentan committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    af62617 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #237 from thienmy0/branch-PolishDG

    Fix Checkstyle Errors
    longnguyentan committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    75143b1 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #238 from longnguyentan/master

    Update Data Archiving Section in Developer Guide
    thienmy0 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    2e3a535 View commit details
    Browse the repository at this point in the history
  10. Update implementation section of DG

    Currently, the DG lacks information about the implementation
    of newer commands such as sort.
    
    We should keep the DG up to date with its most recent
    implementation details.
    
    Let's,
    * Refine the assign command section of the DG
    * Add a section for the implementation of sort command.
    wujy28 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    0746725 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a3e92bf View commit details
    Browse the repository at this point in the history
  12. Update user guide to add faq section

    Currently, the user guide is outdated and does not have a proper faq
    section
    
    It is important to update the faq section accordingly as the product
    grow
    
    Update the faq section of user guide
    AaronJT1 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    641c11a View commit details
    Browse the repository at this point in the history
  13. Add UML diagrams

    Make modifications to Delete sequence diagram, and undo & redo state diagrams. Also implemented Redo, Edit sequence diagrams.
    RiyaMehta2211 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    60e1f79 View commit details
    Browse the repository at this point in the history
  14. Minor modification to Edit sequence diagram

    Minor modification made to edit sequence diagram.
    RiyaMehta2211 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    e3ec9bc View commit details
    Browse the repository at this point in the history
  15. Merge pull request #239 from RiyaMehta2211/master

    Add UML diagrams
    AaronJT1 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    1da0539 View commit details
    Browse the repository at this point in the history
  16. Update PPP page

    Currently, my PPP when converted to pdf exceeds 2 pages
    
    It is important to stick within the page limit
    
    Update the PPP to reduce page count
    AaronJT1 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    a148e54 View commit details
    Browse the repository at this point in the history
  17. Update some other components of DG

    Currently, some other components in the DG are outdated,
    with references to Person instead of Patient etc.
    
    They need to be updated so that it matches our project.
    
    Let's,
    * Change instances of 'Person' to 'Patient'
    * Update UML diagrams
    wujy28 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    4470d95 View commit details
    Browse the repository at this point in the history
  18. Fix some checkstyle issues

    wujy28 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    d09c067 View commit details
    Browse the repository at this point in the history
  19. Fix checkstyle issues

    wujy28 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    740abc7 View commit details
    Browse the repository at this point in the history
  20. Fix MORE checkstyle issues

    wujy28 committed Nov 11, 2023
    Configuration menu
    Copy the full SHA
    564e033 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2023

  1. Configuration menu
    Copy the full SHA
    21f1aca View commit details
    Browse the repository at this point in the history
  2. Update UG to take into account comments given

    Currently there are some typo and mistakes in the UG.
    
    It is important to fix this typo constantly
    
    Update UG to take into account comments
    AaronJT1 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    7b27abb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    072bb49 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #240 from AaronJT1/branch-update-ug

    Branch update ug
    RiyaMehta2211 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    32fe2fd View commit details
    Browse the repository at this point in the history
  5. Fix Test Cases

    Fix Test Cases
    
    Some test cases are failing due to our implementation.
    
    Editing the test cases will ensure that our system is more well-tested.
    
    Let’s fix test cases. Doing so will ensure that failed test cases do not
    accumulate and that we pass our checks.
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    4746e6a View commit details
    Browse the repository at this point in the history
  6. Update UG

    Currently, the UG is outdated and there are several issues
    with it, like broken image links.
    
    We should update it and prepare it for final submission.
    
    Let's,
    * Add the Getting to Know A&E section
    * Add the prefix summary section
    * Polish up sort and assign sections
    * Update the features box
    * Add new screenshots
    wujy28 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    1a2f410 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #243 from wujy28/branch-docs

    Update UG
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    72251f1 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #13 from AY2324S1-CS2103T-T14-2/master

    Update project
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    4161171 View commit details
    Browse the repository at this point in the history
  9. Update UG, PPP, and Testing

    - Update the Introduction and Find, Help, List, Clear, Exit features in UG.
    - Update the contribution in PPP.
    - Fix bugs in testing.
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    604b953 View commit details
    Browse the repository at this point in the history
  10. Fix Test Cases 2

    Fix Test Cases
    
    Some test cases are failing due to our implementation.
    
    Editing the test cases will ensure that our system is more well-tested.
    
    Let’s fix test cases. Doing so will ensure that failed test cases do not
    accumulate and that we pass our checks.
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    0737e31 View commit details
    Browse the repository at this point in the history
  11. Fix Checkstyle Errors

    Fix Check Errors
    
    Some classes have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code that passes checks.
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2aad45a View commit details
    Browse the repository at this point in the history
  12. Merge pull request #244 from longnguyentan/master

    Update UG, PPP, and Testing
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    fd5615d View commit details
    Browse the repository at this point in the history
  13. Merge pull request #242 from thienmy0/branch-TestCases

    Fix Remaining Test Cases
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    ef8f299 View commit details
    Browse the repository at this point in the history
  14. Reduce PPP length by removing compenents

    Currently the PPP length is more than 2pages when converted to pdf
    
    It is important to follow the guideline
    
    Reduce PPP length by removing compenents
    AaronJT1 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    d6c74db View commit details
    Browse the repository at this point in the history
  15. Update headers and name in UG

    Renamed aande.json in UG and formatted section headers.
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2480bad View commit details
    Browse the repository at this point in the history
  16. Increase testing for AddressBookParserTest

    Currently, there new commands we added are not tested in
    addressbookparser test
    
    It is important to always take into account such new changes
    
    Increase testing for AddressBookParser
    AaronJT1 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    0254eb6 View commit details
    Browse the repository at this point in the history
  17. Fix minor checkstyle error

    AaronJT1 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2b9d672 View commit details
    Browse the repository at this point in the history
  18. Modify features in User Guide

    Modified features and added hyperlinks to increase readability of the user guide
    RiyaMehta2211 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    cebcf1e View commit details
    Browse the repository at this point in the history
  19. Merge pull request #247 from RiyaMehta2211/branch-UG

    Modify features in User Guide
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    f0c5c1d View commit details
    Browse the repository at this point in the history
  20. Merge pull request #246 from longnguyentan/master

    Update headers and name in UG
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    f4f19be View commit details
    Browse the repository at this point in the history
  21. Merge pull request #245 from AaronJT1/branch-fix-ppp-length

    Improve test coverage
    wujy28 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    178eb39 View commit details
    Browse the repository at this point in the history
  22. Update UG

    Update UG
    
    User Guide is not up to date.
    
    Editing the UG ensures that the UG is up to date.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    24b9e85 View commit details
    Browse the repository at this point in the history
  23. Update PPP

    thienmy0 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    52f156b View commit details
    Browse the repository at this point in the history
  24. Merge pull request #248 from thienmy0/branch-UG

    Update UG
    wujy28 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    2c322b8 View commit details
    Browse the repository at this point in the history
  25. Update Storage diagram in DG

    Update the class in Storage diagram.
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    0d032ec View commit details
    Browse the repository at this point in the history
  26. Merge pull request #249 from longnguyentan/master

    Update Storage diagram in DG
    longnguyentan committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    0baf2ab View commit details
    Browse the repository at this point in the history
  27. Add implementations in DeveloperGuide.md

    Add implementations of features like Editing and Deleting a patient, along with undo & redo in DeveloperGuide.md
    RiyaMehta2211 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    b1f640f View commit details
    Browse the repository at this point in the history
  28. Update DG formatting and planned enhancements

    Currently, the DG has some minor formatting issues that
    require fixing. The planned enhancements section also
    does not contain all the feature flaws or bugs we plan
    to fix.
    
    We should update the DG to ensure that it is up-to-date
    and up-to-standard.
    
    Let's,
    * fix some minor formatting issues and inconsistencies
    * add more planned enhancements
    wujy28 committed Nov 12, 2023
    Configuration menu
    Copy the full SHA
    4a06bed View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2023

  1. Merge pull request #250 from RiyaMehta2211/master

    Add implementations in DeveloperGuide.md
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d5d97ab View commit details
    Browse the repository at this point in the history
  2. Fix UG Bugs

    Fix UG Bugs
    
    User Guide has some bugs.
    
    Editing the UG ensures that the UG is up to date with no bugs.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    de3885a View commit details
    Browse the repository at this point in the history
  3. Fix UG Bugs 2

    Fix UG Bugs
    
    User Guide has some bugs.
    
    Editing the UG ensures that the UG is up to date with no bugs.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    21fe242 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #251 from thienmy0/branch-DocsFixes

    Fix UG Bugs & Update DG Diagrams
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d02a42d View commit details
    Browse the repository at this point in the history
  5. Fix merge conflict

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    c45ad9e View commit details
    Browse the repository at this point in the history
  6. Add Test Cases

    Add Test Cases
    
    Some methods are not covered with test cases.
    
    Editing the test cases will ensure that our system is more well-tested.
    
    Let’s fix and add more test cases. Doing so will ensure that our test
    coverage increases.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    8a1eb97 View commit details
    Browse the repository at this point in the history
  7. Minor changes to DeveloperGuide.md

    Minor modifications to the undo & redo features section in DeveloperGuide.md
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    99b0144 View commit details
    Browse the repository at this point in the history
  8. Fix some DG formatting issues

    Currently, there are certain inconsistencies and formatting
    bugs in the DG, which might make the file look weird when
    exported to PDF.
    
    We should fix these problems to ensure that our DG is free
    from bugs and professional looking.
    
    Let's fix the formatting issues in the DG.
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    532a211 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #253 from RiyaMehta2211/master

    Minor changes to DeveloperGuide.md
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    398c9fe View commit details
    Browse the repository at this point in the history
  10. Fix minor DG issues

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    50941f9 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #254 from wujy28/branch-docs

    Fix some DG formatting issues
    AaronJT1 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    e3bfdd3 View commit details
    Browse the repository at this point in the history
  12. Fix UG Bugs

    Fix UG Bugs
    
    User Guide has some bugs.
    
    Editing the UG ensures that the UG is up to date with no bugs.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    1a0a498 View commit details
    Browse the repository at this point in the history
  13. Fix Github Check Errors

    Fix Github Check Errors
    
    Some files have errors with checkstyle.
    
    Fixing the checkstyle errors will ensure that the errors do not
    accumulate.
    
    Let’s make sure we run checkstyle before pushing our code.
    Doing so will allow us to have cleaner code that passes checks.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    24df3f1 View commit details
    Browse the repository at this point in the history
  14. Merge pull request #252 from thienmy0/branch-AddTest

    Add ParserUtil & UniqueRecordList Tests, Fix UG Bugs
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    a83a676 View commit details
    Browse the repository at this point in the history
  15. Add logo image to UG

    It will be nice to add our logo image into the UG.
    
    So let's do so.
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d113acf View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    3b30fa7 View commit details
    Browse the repository at this point in the history
  17. Fix formatting issues in DG

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    bf24f85 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #255 from wujy28/branch-docs

    Fix formatting issues in DG
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    0899cad View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    7c3ad78 View commit details
    Browse the repository at this point in the history
  20. Merge pull request #256 from wujy28/branch-docs

    Fix minor DG formatting issues and add logo
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    7f46769 View commit details
    Browse the repository at this point in the history
  21. Update UG

    Update UG
    
    User Guide is not up to date.
    
    Editing the UG ensures that the UG is up to date.
    
    Let’s take note of what needs to be updated in UG. Doing so ensures that
    our UG stays relevant and updated.
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    10f5061 View commit details
    Browse the repository at this point in the history
  22. Update PPP

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    00e7ee0 View commit details
    Browse the repository at this point in the history
  23. Merge pull request #257 from thienmy0/branch-FormatUG

    Format UG
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    4cff973 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    42fe130 View commit details
    Browse the repository at this point in the history
  25. Fix formatting issues in UG

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    17b0747 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    9e2cca6 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    a57b630 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    09f06a2 View commit details
    Browse the repository at this point in the history
  29. Update PPP and Format DG

    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    740fbaf View commit details
    Browse the repository at this point in the history
  30. Merge pull request #259 from wujy28/branch-docs

    Fix minor formatting issues in UG and DG
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    53d4c5d View commit details
    Browse the repository at this point in the history
  31. Merge pull request #260 from thienmy0/branch-PPPandDG

    Update PPP and Format DG
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    857687e View commit details
    Browse the repository at this point in the history
  32. Resize DG diagrams

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    49d10a8 View commit details
    Browse the repository at this point in the history
  33. Merge pull request #261 from wujy28/branch-docs

    Resize DG diagrams
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    bf4df3f View commit details
    Browse the repository at this point in the history
  34. Reize images again in DG

    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    2fa1c38 View commit details
    Browse the repository at this point in the history
  35. Merge pull request #262 from wujy28/branch-docs

    Reize images again in DG
    wujy28 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    042a2a6 View commit details
    Browse the repository at this point in the history
  36. Update PPP

    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6df46f1 View commit details
    Browse the repository at this point in the history
  37. Merge pull request #263 from thienmy0/branch-PPP

    Update PPP
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    82155f5 View commit details
    Browse the repository at this point in the history
  38. Add design considerations under Edit feature

    Considered potential design considerations under the Edit section of DeveloperGuide.md
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    952230f View commit details
    Browse the repository at this point in the history
  39. Merge pull request #264 from RiyaMehta2211/master

    Add design considerations under Edit feature
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    87ee1d4 View commit details
    Browse the repository at this point in the history
  40. Update single line in PPP

    Currently the no of  pull requests stated is incorrect
    
    There is a need to add correct information into PPP
    
    Update PPP regarding pull requests approved
    AaronJT1 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    c8766f9 View commit details
    Browse the repository at this point in the history
  41. Update JsonAdaptedRecordTest

    * Update test cases for JsonAdaptedRecordTest and modify JsonAdaptedRecord.java.
    * Add JavaDocs to some files.
    longnguyentan committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    ddc5923 View commit details
    Browse the repository at this point in the history
  42. Update PPP

    Update personal contribution to Project Portfolio Page (PPP).
    longnguyentan committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    4988328 View commit details
    Browse the repository at this point in the history
  43. Fix UG & DG Bugs

    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    f5eafef View commit details
    Browse the repository at this point in the history
  44. Merge pull request #265 from AaronJT1/branch-ug-fix

    Update single line in PPP
    longnguyentan committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    72332a3 View commit details
    Browse the repository at this point in the history
  45. Merge pull request #266 from longnguyentan/master

    Update JsonAdaptedRecordTest
    AaronJT1 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    044206a View commit details
    Browse the repository at this point in the history
  46. Merge pull request #267 from thienmy0/branch-DocsBugs

    Fix UG & DG Bugs
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    12a7440 View commit details
    Browse the repository at this point in the history
  47. Update PPP

    Updated PPP with the relevant details on contributions through the project
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    38556f8 View commit details
    Browse the repository at this point in the history
  48. Merge pull request #268 from RiyaMehta2211/master

    Update PPP
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    efab360 View commit details
    Browse the repository at this point in the history
  49. Fix formatting issues in PPP

    Fix minor line spacing issues in PPP
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    258ec1c View commit details
    Browse the repository at this point in the history
  50. Merge pull request #269 from RiyaMehta2211/master

    Fix formatting issues in PPP
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6d8fcef View commit details
    Browse the repository at this point in the history
  51. Fix formatting issues in PPP

    Fix minor formatting issues in PPP to ensure consistency.
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    e3bea8d View commit details
    Browse the repository at this point in the history
  52. Merge pull request #270 from RiyaMehta2211/master

    Fix formatting issues in PPP
    RiyaMehta2211 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    d42ee5d View commit details
    Browse the repository at this point in the history
  53. Fix Checks

    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    6c43d29 View commit details
    Browse the repository at this point in the history
  54. Merge pull request #271 from thienmy0/branch-FixCheck

    Fix Checks
    thienmy0 committed Nov 13, 2023
    Configuration menu
    Copy the full SHA
    911c632 View commit details
    Browse the repository at this point in the history