-
Notifications
You must be signed in to change notification settings - Fork 521
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
Avengers Assemble #126
base: master
Are you sure you want to change the base?
Avengers Assemble #126
Commits on Apr 3, 2024
-
Now the checkstyle is fixed. Lets adhere to checkstyle.
Configuration menu - View commit details
-
Copy full SHA for d27165e - Browse repository at this point
Copy the full SHA d27165eView commit details -
Fix: headless environment for gradle
Now tests should pass on gradle checks. Lets help gradle pass.
Configuration menu - View commit details
-
Copy full SHA for 59a6d3b - Browse repository at this point
Copy the full SHA 59a6d3bView commit details -
Now code adheres to checkstyle. lets adhere to checkstyle.
Configuration menu - View commit details
-
Copy full SHA for 9944393 - Browse repository at this point
Copy the full SHA 9944393View commit details -
Currently, the name accepts alphanumerical characters, spaces, and forward slashes. This will allow the majority of names to be added into the app. However, it has come to light that there are names which would contain other characters that would throw errors if users attempt to add these names in, which is problematic since some special characters like `.` and `,` are common. Let's allow several other characters in the regex for names. In doing so, we can ensure that most common names will be successfully added into the application.
Configuration menu - View commit details
-
Copy full SHA for b5a9be5 - Browse repository at this point
Copy the full SHA b5a9be5View commit details -
Merge pull request #317 from Zer0Legion/copy-to-clipboard
Fix: remove pop up window for help command
Configuration menu - View commit details
-
Copy full SHA for 61c0121 - Browse repository at this point
Copy the full SHA 61c0121View commit details -
Merge pull request #320 from jayllo-c/branch-UpdateNameParam
Bug fix: Update name param to include more characters
Configuration menu - View commit details
-
Copy full SHA for f6ac56e - Browse repository at this point
Copy the full SHA f6ac56eView commit details -
Configuration menu - View commit details
-
Copy full SHA for df58007 - Browse repository at this point
Copy the full SHA df58007View commit details -
Merge pull request #321 from delishad21/branch_UpdateUgForHelp
Update UG for help command
Configuration menu - View commit details
-
Copy full SHA for 0b08208 - Browse repository at this point
Copy the full SHA 0b08208View commit details -
Now version is updated Lets update version.
Configuration menu - View commit details
-
Copy full SHA for d02462d - Browse repository at this point
Copy the full SHA d02462dView commit details -
Merge pull request #322 from Zer0Legion/release-1.3.0
Build: update version number
Configuration menu - View commit details
-
Copy full SHA for fc25db3 - Browse repository at this point
Copy the full SHA fc25db3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ce6610 - Browse repository at this point
Copy the full SHA 2ce6610View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp
* 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: Build: update version number Update image for help command Update chars accepted by Name Fix: checkstyle Fix: headless environment for gradle Style: fix checkstyle Fix: remove pop up window for help command
Configuration menu - View commit details
-
Copy full SHA for 513ce18 - Browse repository at this point
Copy the full SHA 513ce18View commit details -
Merge branch 'master' into branch_UserGuide_2.0
* master: (34 commits) Build: update version number Update image for help command Update chars accepted by Name Fix: checkstyle Fix: headless environment for gradle Style: fix checkstyle Fix: remove pop up window for help command Fix naming in javaDoc Fix spelling errors Small changes to test cases Comprehensive testing for `CsvUtil` and `ImportCommand` Replace references of AB3 with AA CsvUtil now throws an IOException for the case when a file is not found in the system Update examples to match images Update images to match success msg Fix: remove magic literal in unit test for import Fix: typos in success messages Satisfy github CI Satisfy Github CI Satisfy github CI actions ...
Configuration menu - View commit details
-
Copy full SHA for 2a5191f - Browse repository at this point
Copy the full SHA 2a5191fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2947f60 - Browse repository at this point
Copy the full SHA 2947f60View commit details -
Merge pull request #323 from danielleloh/branch_UserGuide_2.0
fix: add page breaks to ensure good formatting of printed user guide
Configuration menu - View commit details
-
Copy full SHA for 8e785d7 - Browse repository at this point
Copy the full SHA 8e785d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for e53a35d - Browse repository at this point
Copy the full SHA e53a35dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0a6625 - Browse repository at this point
Copy the full SHA a0a6625View commit details -
Configuration menu - View commit details
-
Copy full SHA for bcde279 - Browse repository at this point
Copy the full SHA bcde279View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ae1961 - Browse repository at this point
Copy the full SHA 1ae1961View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch_UpdateDeveloperGuide2.0
Configuration menu - View commit details
-
Copy full SHA for 789bc2f - Browse repository at this point
Copy the full SHA 789bc2fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9b176e7 - Browse repository at this point
Copy the full SHA 9b176e7View commit details
Commits on Apr 5, 2024
-
Currently, the find command holds a predicate, and creates another predicate based on whether exam scores are needed. However, this may be messy due to the fact that the predicate objects are created in different places despite serving the same purpose. Let's refactor the creation of the predicate objects to ensure that the objects follow a more logical and organized flow. In doing so, the code is both more readable and scalable.
Configuration menu - View commit details
-
Copy full SHA for 57db3c0 - Browse repository at this point
Copy the full SHA 57db3c0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94b5225 - Browse repository at this point
Copy the full SHA 94b5225View commit details -
Configuration menu - View commit details
-
Copy full SHA for 880ba1a - Browse repository at this point
Copy the full SHA 880ba1aView commit details
Commits on Apr 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c127473 - Browse repository at this point
Copy the full SHA c127473View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4418ea - Browse repository at this point
Copy the full SHA c4418eaView commit details -
Fix NullPointerException when clicking UI
Currently, the application throws a NullPointerException when items in the Exam List and the Person List are clicked on in the User Interface. This is due to bad implementation practices, as I had put a band aid on this problem by setting the selectionModel of both lists to null to prevent the selection of exams in the list.. While this implementation does not affect the use of the application, Lets update the implementation to use a proper "NoSelectionModel". This will prevent further NullPointerExceptions from being thrown in the application.
Configuration menu - View commit details
-
Copy full SHA for e31a8c0 - Browse repository at this point
Copy the full SHA e31a8c0View commit details -
Clarify email and copy related docs and messages
Currently, we were able to observe from the PE dry run that there is a possibility for testers to perceive from the UG and the error messages that there may be bugs present despite the code working as intended. This is an issue because it indicates that the documentation is not clear enough to convey the exact reason behind the current behavior of the code (e.g. semicolons after each copied email after using the `copy` command, "seemingly valid" emails being rejected). Let's ramp up the clarity in both the UG and constraint messages pertaining emails. In doing so, future users will have a much clearer idea of how the code is supposed to behave, and will not mistake correct behaviors as bugs.
Configuration menu - View commit details
-
Copy full SHA for d331aba - Browse repository at this point
Copy the full SHA d331abaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7b43799 - Browse repository at this point
Copy the full SHA 7b43799View commit details
Commits on Apr 7, 2024
-
Now import Command properly displays its Usage message, with a whitespace between import and i| ImportCommandParser now also checks for invalid characters in filePath which is already caught by the InvalidPathException in java
Configuration menu - View commit details
-
Copy full SHA for df8d19e - Browse repository at this point
Copy the full SHA df8d19eView commit details -
Bug fix for when csv file to be imported is empty
Currently the readCsv method in CsvUtil only checks if the values are empty but not if the rows themselves are empty
Configuration menu - View commit details
-
Copy full SHA for ed1fb67 - Browse repository at this point
Copy the full SHA ed1fb67View commit details -
Currently, as the testers from the PE-D have pointed out, the UG has room for improvement in regards to the clarity of some of the commands as well as the omission of usage information for some prefix. This has to be fixed because future users would likely be unclear in the purpose behind some of the features of the application. Let's revamp the UG to include the missing use cases and improve the clarity of the user guide. In doing so, future users will have a better idea of the expected behavior of the app and the rationale of why the behavior of the app was designed as such.
Configuration menu - View commit details
-
Copy full SHA for 1e86d6a - Browse repository at this point
Copy the full SHA 1e86d6aView commit details -
Fix: Correct ImportExamScores command
Now the error messages are more fine tuned with some functionality changes to provide a more comprehensive and correct message on why the command is failing. Lets improve functionality.
Configuration menu - View commit details
-
Copy full SHA for fc4188c - Browse repository at this point
Copy the full SHA fc4188cView commit details -
Fix: length constraints of fields
Now exam names and names of 1 character length are allowed as long as they are not blank. Lets reduce bugs
Configuration menu - View commit details
-
Copy full SHA for b892149 - Browse repository at this point
Copy the full SHA b892149View commit details -
Merge pull request #324 from danielleloh/branch_UserGuide_2.0
fix: typo in user guide
Configuration menu - View commit details
-
Copy full SHA for 96f31f1 - Browse repository at this point
Copy the full SHA 96f31f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0750604 - Browse repository at this point
Copy the full SHA 0750604View commit details -
Merge pull request #337 from delishad21/branch_UpdateUiImg
fix: Update Ui Image
Configuration menu - View commit details
-
Copy full SHA for ec30bb5 - Browse repository at this point
Copy the full SHA ec30bb5View commit details -
Merge pull request #381 from jayllo-c/branch-UpdateUG-PE-D-Improvements
fix: Additional PE-D UG improvements
Configuration menu - View commit details
-
Copy full SHA for 4ff3b75 - Browse repository at this point
Copy the full SHA 4ff3b75View commit details -
Refactor find functionality further
Currently, the code does its argument checks with its own code. However, in built code is already present that achieves the same thing. Essentially, the typed out code in the findCommandParser is achieving something that has been coded out already. To maintain a good coding standard, we should reuse functionalities already present to avoid repeated code. Let's implement pre-coded functions in the findCommandParser. Through this refactor, we can ensure a high coding standard.
Configuration menu - View commit details
-
Copy full SHA for 80fc3a8 - Browse repository at this point
Copy the full SHA 80fc3a8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c69702 - Browse repository at this point
Copy the full SHA 0c69702View commit details -
Currently, the UG has very minor spelling errors. We need to fix this because it undermines the professionalism of the UG. Let's fix these typos. In doing so, we uphold a higher level of professionalism.
Configuration menu - View commit details
-
Copy full SHA for a995d5c - Browse repository at this point
Copy the full SHA a995d5cView commit details -
Merge pull request #326 from delishad21/branch_UpdateDeveloperGuide2.0
Update Developer Guide with new Logic, UI, Model and Storage implementations
Configuration menu - View commit details
-
Copy full SHA for 4b02b50 - Browse repository at this point
Copy the full SHA 4b02b50View commit details -
Merge pull request #379 from jayllo-c/branch-PE-D-FunctionalityBugFixes
fix: Clarify email and copy related docs and messages
Configuration menu - View commit details
-
Copy full SHA for 62dacb0 - Browse repository at this point
Copy the full SHA 62dacb0View commit details -
Merge pull request #378 from delishad21/branch_PEDBugFixes
Bug fixes for PE-D
Configuration menu - View commit details
-
Copy full SHA for 86e841e - Browse repository at this point
Copy the full SHA 86e841eView commit details -
Merge pull request #382 from Zer0Legion/fix-ped-bugs
Fix ped bugs: Leng Khai
Configuration menu - View commit details
-
Copy full SHA for aadbea2 - Browse repository at this point
Copy the full SHA aadbea2View commit details -
Merge pull request #330 from jayllo-c/branch-PredicateRefactoring
Bug fix: Refactor Find Functionality
Configuration menu - View commit details
-
Copy full SHA for d2e570d - Browse repository at this point
Copy the full SHA d2e570dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 531ffe0 - Browse repository at this point
Copy the full SHA 531ffe0View commit details -
Bug fix for duplicate headers.
For the case of duplicate headers, there is a bug in which when there are 2 email coloumns with the same value, the person is not added to the addressBook. (As stated in the PE-D, issue #362). This is fixed by now correctly ignoring the duplicate column
Configuration menu - View commit details
-
Copy full SHA for dff7801 - Browse repository at this point
Copy the full SHA dff7801View commit details -
Configuration menu - View commit details
-
Copy full SHA for 077b1fe - Browse repository at this point
Copy the full SHA 077b1feView commit details -
Configuration menu - View commit details
-
Copy full SHA for fe8c829 - Browse repository at this point
Copy the full SHA fe8c829View commit details -
Add exams implementations to DG
The present developer guide is lacking in documentation for our newly implemented exam features. Lets update the developer guide with explainations and diagrams detailing our exam features so that potential developers may build upon our application easily.
Configuration menu - View commit details
-
Copy full SHA for aa608b0 - Browse repository at this point
Copy the full SHA aa608b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for d27057f - Browse repository at this point
Copy the full SHA d27057fView commit details
Commits on Apr 8, 2024
-
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp
* 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: (22 commits) Fix minor typos Fix Spelling Refactor find functionality further Update UI Diagram Fix: length constraints of fields Fix: Correct ImportExamScores command UG improvements Update Logic with specific details Clarify email and copy related docs and messages Fix NullPointerException when clicking UI Update error messages to match correct usage Update Storage Load Sequence Diagram Update Storage component in DG Update Ui Image Refactor Find Functionality Update UI and Model in DG fix: typo in user guide Update Ui DG description Update Model and Ui in DG fix: add page breaks to ensure good formatting of printed user guide ...
Configuration menu - View commit details
-
Copy full SHA for 74e15d5 - Browse repository at this point
Copy the full SHA 74e15d5View commit details -
Merge branch 'master' into branch-DeveloperGuide
* master: (211 commits) Fix minor typos Fix Spelling Refactor find functionality further Update UI Diagram Fix: length constraints of fields Fix: Correct ImportExamScores command UG improvements Update Logic with specific details Clarify email and copy related docs and messages Fix NullPointerException when clicking UI Update error messages to match correct usage Update Storage Load Sequence Diagram Update Storage component in DG Update Ui Image Refactor Find Functionality Update UI and Model in DG fix: typo in user guide Update Ui DG description Update Model and Ui in DG fix: add page breaks to ensure good formatting of printed user guide ...
Configuration menu - View commit details
-
Copy full SHA for 316e29c - Browse repository at this point
Copy the full SHA 316e29cView commit details -
Fix: label ArgumentTokenizer and ParserUtil as static classes
Now they are correctly labelled as static classes without multiple instances. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for 0c50006 - Browse repository at this point
Copy the full SHA 0c50006View commit details -
Docs: change font colour of sequence diagram box
Now the text is easier to read. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for 2111f1b - Browse repository at this point
Copy the full SHA 2111f1bView commit details -
Docs: Add documentation for deleteShown command
Now documentation covers the deleteShown command, so that developers are aware of the usage and implementation. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 3fa66b7 - Browse repository at this point
Copy the full SHA 3fa66b7View commit details -
Docs: Add implementation details for importExamScores command.
Now the command has details on how it is implemented for the consideration of developers. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 9642800 - Browse repository at this point
Copy the full SHA 9642800View commit details -
Dosc: Add diagram for importExamScores
Now the activity diagram clearly shows the flow of parsing a filepath as input. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for d079d03 - Browse repository at this point
Copy the full SHA d079d03View commit details -
Docs: Add activity diagram for deleteShown command
Now the activity diagram illustrates the implementation and process of the deleteShown command. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for 56d527e - Browse repository at this point
Copy the full SHA 56d527eView commit details -
Style: update feature headers to be more consistent
Now the headers are more in line with Johan's proposed additions. Lets enhance consistency.
Configuration menu - View commit details
-
Copy full SHA for 948eef2 - Browse repository at this point
Copy the full SHA 948eef2View commit details -
Docs: Give acknowledgements to opencsv library.
Now the opencsv library is properly acknowledged in our source code and documentation. Lets ensure proper code reuse.
Configuration menu - View commit details
-
Copy full SHA for 0353c7d - Browse repository at this point
Copy the full SHA 0353c7dView commit details -
Now the DG covers comprehensively the add feature. Lets enhance documentation.
Configuration menu - View commit details
-
Copy full SHA for 4ef60f8 - Browse repository at this point
Copy the full SHA 4ef60f8View commit details -
Docs: Cover implementation of edit command.
Now the DG covers the implementation of the edit command so that developers can easily refer to and understand it. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 1560aef - Browse repository at this point
Copy the full SHA 1560aefView commit details
Commits on Apr 9, 2024
-
Docs: Add manual testing for 7 commands
Now the manual testing steps are detailed for add, edit, delete, deleteshown, list, importExamScores, launch and shutdown are detailed so that manual testers are clear on how to test them. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 124e2d1 - Browse repository at this point
Copy the full SHA 124e2d1View commit details -
Now manual testing instructions are clearer. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 3fdfbfe - Browse repository at this point
Copy the full SHA 3fdfbfeView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1158d2 - Browse repository at this point
Copy the full SHA f1158d2View commit details -
docs: add effort section in appendix of developer guide
the effort section in the developer guide aims to showcase to viewers the effort we put into developing avengers assemble. add, * difficulty level by explaining the new entity added * challenges faced by explaining the different considerations we had to make * effort required by explaining the features we enhanced and the new features added into our application this section is incomplete as it required more inputs from other members for their though process behind the implementations.
Configuration menu - View commit details
-
Copy full SHA for 40ce1ca - Browse repository at this point
Copy the full SHA 40ce1caView commit details -
Docs: Add planned enhancements
Now the planned enhancements for features we did not have time to implement are shown in the DG. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for 6f01c9e - Browse repository at this point
Copy the full SHA 6f01c9eView commit details -
Docs: add planned implementation for validation for find command
Now the DG covers the planned implementation for a more enhanced input validation for the find command. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for ca02e1f - Browse repository at this point
Copy the full SHA ca02e1fView commit details -
docs: update instructions for manual testing section of developer guide
instructions for manual testing allows for consistency on how avengers assemble is tested across different developers. developers may have different interpretations on what needs to be tested and how different features should be tested. add, * instructions for manual testing for export command * instructions for manual testing for addScore command * instructions for manual testing for editScore command * instructions for manual testing for deleteScore command * instructions for manuals testing for mean and median calculation feature this needs further discussion and should be agreed upon by everyone in the team.
Configuration menu - View commit details
-
Copy full SHA for fc58f2e - Browse repository at this point
Copy the full SHA fc58f2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b4373e5 - Browse repository at this point
Copy the full SHA b4373e5View commit details -
Update changes to import implementation to the developer guide
Update sequence diagram to include `CsvUtil` Add manual testing for importing of persons
Configuration menu - View commit details
-
Copy full SHA for 80981a9 - Browse repository at this point
Copy the full SHA 80981a9View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch-FinaliseUG # Conflicts: # docs/DeveloperGuide.md
Configuration menu - View commit details
-
Copy full SHA for e87b083 - Browse repository at this point
Copy the full SHA e87b083View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24e5355 - Browse repository at this point
Copy the full SHA 24e5355View commit details -
Configuration menu - View commit details
-
Copy full SHA for eca3e3f - Browse repository at this point
Copy the full SHA eca3e3fView commit details -
Currently, the DG has the user stories relevant only to v1.2, meaning all exam and score related implementations have been excluded from the user stories and use cases. As such, the user stories and use cases are outdated and need to be refurbished. Let's update the user stories and use cases to correctly reflect the current functionality implemented into Avengers Assemble. By maintaining the user stories and use cases, future developers will be able to understand the motivation and logic behind the current suite of features. Note: this commit also contains minor changes to the UG from feedback given from the PE-D.
Configuration menu - View commit details
-
Copy full SHA for 0d3c4de - Browse repository at this point
Copy the full SHA 0d3c4deView commit details -
Update Manual Testing Section in DG
Currently, the manual testing section does not include instructions for functionalities currently implemented. We need to keep this updated to allow future developers to check each functionality manually to ensure the code behaves as intended. Let's update the Manual Testing instructions to include comprehensive instructions for the following commands: * `help` * `clear` * `find` * `copy` * `exit` In doing so, these commands can be tested with the assurance that all aspects of the behaviours of these functions are covered.
Configuration menu - View commit details
-
Copy full SHA for 1e643d0 - Browse repository at this point
Copy the full SHA 1e643d0View commit details
Commits on Apr 10, 2024
-
Currently, the find command does not check that there are duplicate prefixes present in the input provided by the user. This is problematic because it allows the find command to accept multiple duplicate prefixes despite the command being documented to only accept one single prefix. An example is `find n|alice n|bob` * Expected behaviour: throw an error indicating more than one prefix is used. * Actual behaviour: finds persons with names containing bob. Because this behaviour differs from the user guide, does not handle the error of duplicate prefixes, and behaves different from normal expectations, the following error can be classified as a functionality bug, and not a feature flaw. Let's rectify this problem by using the in-built duplicate verifier to properly handle the issue of duplicate prefixes. Doing so not only solves the bug, but also does so in a way that does not implement any new functionality into the code.
Configuration menu - View commit details
-
Copy full SHA for 323db7f - Browse repository at this point
Copy the full SHA 323db7fView commit details -
Style: update activity diagrams with ab3 styling
Now the activity diagrams look consistent and nicer. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for a7a97c6 - Browse repository at this point
Copy the full SHA a7a97c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6b162e - Browse repository at this point
Copy the full SHA c6b162eView commit details -
Docs: specify that activity diagram represents the workflow
Now the activity diagram is specified to represent the workflow to minimize confusion. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for 6536ea5 - Browse repository at this point
Copy the full SHA 6536ea5View commit details -
Merge pull request #390 from jayllo-c/branch-UpdateDG-UserStoriesAndU…
…seCases docs: update DG to reflect user stories and use cases to reflect all implemented functions
Configuration menu - View commit details
-
Copy full SHA for 2cad064 - Browse repository at this point
Copy the full SHA 2cad064View commit details -
Merge pull request #393 from jayllo-c/branch-FindBugFixDuplicatePredi…
…cate bug fix: prevent execution of find command with duplicated prefixes present
Configuration menu - View commit details
-
Copy full SHA for 2e3b123 - Browse repository at this point
Copy the full SHA 2e3b123View commit details -
docs: update implementation details of developer guide
add, * implementation details for addScore, editScore, deleteScore sequence and activity diagrams have not been added in.
Configuration menu - View commit details
-
Copy full SHA for fcbd5fc - Browse repository at this point
Copy the full SHA fcbd5fcView commit details -
fix: remove unnecessary section from implementation details in developer
guide remove implementation details section as it is a repeat of all the content below it.
Configuration menu - View commit details
-
Copy full SHA for 34a788f - Browse repository at this point
Copy the full SHA 34a788fView commit details -
Merge pull request #388 from Zer0Legion/add-lk-dg
Docs: Add assigned parts to DG
Configuration menu - View commit details
-
Copy full SHA for d850020 - Browse repository at this point
Copy the full SHA d850020View commit details -
Configuration menu - View commit details
-
Copy full SHA for f4c4485 - Browse repository at this point
Copy the full SHA f4c4485View commit details -
Configuration menu - View commit details
-
Copy full SHA for 441af46 - Browse repository at this point
Copy the full SHA 441af46View commit details -
fix: update implementation details of developer guide
include more details on the validation of index and score for addScore, editScore, and deleteScore.
Configuration menu - View commit details
-
Copy full SHA for a435e77 - Browse repository at this point
Copy the full SHA a435e77View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9a5406 - Browse repository at this point
Copy the full SHA b9a5406View commit details -
Currently, the DG manual testing section is not organized according to the order of the UG. However, we want to maintain a level of standardization that gives the impression that all documentation was written by one person. Let's reorder the manual testing section to maintain a standard order. By keeping the structure standardized, the DG will not only appear more organized, but it will help the future developers in navigating through the DG.
Configuration menu - View commit details
-
Copy full SHA for f008356 - Browse repository at this point
Copy the full SHA f008356View commit details -
Configuration menu - View commit details
-
Copy full SHA for dcdd7f6 - Browse repository at this point
Copy the full SHA dcdd7f6View commit details -
Merge pull request #392 from jayllo-c/branch-UpdateDGManualTesting
Docs: Update Manual Testing Section of DG
Configuration menu - View commit details
-
Copy full SHA for eabfbd0 - Browse repository at this point
Copy the full SHA eabfbd0View commit details -
Merge pull request #385 from Pughal77/branch-PEDBugFix
BugFix: Bug Fixes from PED
Configuration menu - View commit details
-
Copy full SHA for b9a627b - Browse repository at this point
Copy the full SHA b9a627bView commit details -
Configuration menu - View commit details
-
Copy full SHA for dfc6a3a - Browse repository at this point
Copy the full SHA dfc6a3aView commit details -
Merge pull request #387 from delishad21/branch_UpdateDeveloperGuide3.0
Add exams and statistics implementations to DG
Configuration menu - View commit details
-
Copy full SHA for 9dc8b50 - Browse repository at this point
Copy the full SHA 9dc8b50View commit details -
Configuration menu - View commit details
-
Copy full SHA for df0ec85 - Browse repository at this point
Copy the full SHA df0ec85View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7ce78b - Browse repository at this point
Copy the full SHA b7ce78bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5286d86 - Browse repository at this point
Copy the full SHA 5286d86View commit details -
Merge branches 'branch-DeveloperGuide' and 'branch-DeveloperGuide' of h…
…ttps://github.com/danielleloh/tp into branch-DeveloperGuide * 'branch-DeveloperGuide' of https://github.com/danielleloh/tp: fix: delete incomplete AddScoreSequenceDigram * 'branch-DeveloperGuide' of https://github.com/danielleloh/tp: fix: delete incomplete AddScoreSequenceDigram
Configuration menu - View commit details
-
Copy full SHA for f857cec - Browse repository at this point
Copy the full SHA f857cecView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58eff95 - Browse repository at this point
Copy the full SHA 58eff95View commit details -
Merge pull request #394 from danielleloh/branch-DeveloperGuide
docs: update developer guide
Configuration menu - View commit details
-
Copy full SHA for e7c78a1 - Browse repository at this point
Copy the full SHA e7c78a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 37c3e55 - Browse repository at this point
Copy the full SHA 37c3e55View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch-FinaliseUG # Conflicts: # docs/DeveloperGuide.md
Configuration menu - View commit details
-
Copy full SHA for df7e746 - Browse repository at this point
Copy the full SHA df7e746View commit details -
Configuration menu - View commit details
-
Copy full SHA for ca33166 - Browse repository at this point
Copy the full SHA ca33166View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp
* 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: (37 commits) fix: resolve merge conflicts and formatting of developer guide fix: delete incomplete AddScoreSequenceDigram fix: push merged changes to branch Reorganize DG manual testing reformat exams section fix: update implementation details of developer guide fix: remove unnecessary section from implementation details in developer guide docs: update implementation details of developer guide Docs: specify that activity diagram represents the workflow Style: update activity diagrams with ab3 styling Bug Fix: Find Command Parser Update Manual Testing Section in DG Update DG docs: update instructions for manual testing section of developer guide Docs: add planned implementation for validation for find command Docs: Add planned enhancements docs: add effort section in appendix of developer guide Test: refactor test Docs: Refine manual testing Docs: Add manual testing for 7 commands ...
Configuration menu - View commit details
-
Copy full SHA for e140788 - Browse repository at this point
Copy the full SHA e140788View commit details -
Configuration menu - View commit details
-
Copy full SHA for 38cffa6 - Browse repository at this point
Copy the full SHA 38cffa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 158a68b - Browse repository at this point
Copy the full SHA 158a68bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c57fde5 - Browse repository at this point
Copy the full SHA c57fde5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 96c6ab6 - Browse repository at this point
Copy the full SHA 96c6ab6View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc65ccc - Browse repository at this point
Copy the full SHA bc65cccView commit details -
Configuration menu - View commit details
-
Copy full SHA for dcbeef0 - Browse repository at this point
Copy the full SHA dcbeef0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89d2bf6 - Browse repository at this point
Copy the full SHA 89d2bf6View commit details -
docs: add sequence diagram for parsing of addScore command in developer
guide the sequence diagram captures the interactions between multiple entities when an addScore command is input. add sequence diagram to illustrate the parsing of an addScore command
Configuration menu - View commit details
-
Copy full SHA for 7d3d8f5 - Browse repository at this point
Copy the full SHA 7d3d8f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c0f5ae - Browse repository at this point
Copy the full SHA 6c0f5aeView commit details -
docs: add sequence diagram for execution of addScore command to
developer guide the sequence diagram captures the interactions between multiple entities when an addScore command is input and executed. add sequence diagram to illustrate the execution of an addScore command.
Configuration menu - View commit details
-
Copy full SHA for 207e9e6 - Browse repository at this point
Copy the full SHA 207e9e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f81e14 - Browse repository at this point
Copy the full SHA 2f81e14View commit details -
fix: add newline to end of puml file
this fix fixes issues arising from checkstyle issues within the code.
Configuration menu - View commit details
-
Copy full SHA for e9cc995 - Browse repository at this point
Copy the full SHA e9cc995View commit details -
Configuration menu - View commit details
-
Copy full SHA for f624081 - Browse repository at this point
Copy the full SHA f624081View commit details -
Configuration menu - View commit details
-
Copy full SHA for f07ea1f - Browse repository at this point
Copy the full SHA f07ea1fView commit details -
Merge pull request #399 from delishad21/branch_UpdateDeveloperGuide4.0
Format implementation section of DG
Configuration menu - View commit details
-
Copy full SHA for 2af39f1 - Browse repository at this point
Copy the full SHA 2af39f1View commit details -
docs: edit developer guide implementation details
add note to sequence diagrams in addScore to point out similarities in sequence diagram of addScore and editScore.
Configuration menu - View commit details
-
Copy full SHA for 659a3d0 - Browse repository at this point
Copy the full SHA 659a3d0View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch-DeveloperGuide * 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: Fix Typo in DG Reformat titles Fix typos Format implementation section of DG
Configuration menu - View commit details
-
Copy full SHA for c8d5b88 - Browse repository at this point
Copy the full SHA c8d5b88View commit details -
Configuration menu - View commit details
-
Copy full SHA for e07d267 - Browse repository at this point
Copy the full SHA e07d267View commit details -
docs: add sequence diagram to illustrate parsing of deleteScore command
the sequence diagram captures the interactions between multiple entities when an deleteScore command is input and parsed. add sequence diagram to illustrate the parsing of an deleteScore command, and fix wrong implementation details under deleteScore section of developer guide.
Configuration menu - View commit details
-
Copy full SHA for c2cca85 - Browse repository at this point
Copy the full SHA c2cca85View commit details -
docs: add sequence diagram to implementation details in developer guide
add sequence diagram to illustrate the interactions between multiple entities when an deleteScore command is input and executed.
Configuration menu - View commit details
-
Copy full SHA for cdc883e - Browse repository at this point
Copy the full SHA cdc883eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0786790 - Browse repository at this point
Copy the full SHA 0786790View commit details -
Configuration menu - View commit details
-
Copy full SHA for dec6949 - Browse repository at this point
Copy the full SHA dec6949View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch-FinaliseDG # Conflicts: # docs/DeveloperGuide.md
Configuration menu - View commit details
-
Copy full SHA for 2551435 - Browse repository at this point
Copy the full SHA 2551435View commit details -
Merge pull request #397 from Pughal77/branch-FinaliseDG
Docs: Update Developer Guide
Configuration menu - View commit details
-
Copy full SHA for e6db715 - Browse repository at this point
Copy the full SHA e6db715View commit details -
Configuration menu - View commit details
-
Copy full SHA for b4e4d9d - Browse repository at this point
Copy the full SHA b4e4d9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7c1cf9c - Browse repository at this point
Copy the full SHA 7c1cf9cView commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch_UpdateDeveloperGuide5.0
Configuration menu - View commit details
-
Copy full SHA for 8a93497 - Browse repository at this point
Copy the full SHA 8a93497View commit details -
edit export implementation details to include details on changes made when including the export of exams and exam scores edit, * sequence diagrams under export implementations edited to be more focused on the execution of certain tasks * details were added about retrieving exam details
Configuration menu - View commit details
-
Copy full SHA for b608bc7 - Browse repository at this point
Copy the full SHA b608bc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46d0d13 - Browse repository at this point
Copy the full SHA 46d0d13View commit details -
Edit DG and diagrams for find implementation
Currently, the find implementation documented in the DG is outdated, as it details the previous implementation before the restructuring. Furthermore, the diagrams are no longer accurate with the addition of the exam score compatible functionality not being represented. We need to update this promptly since we want the developer guide to accurately represent the most recent implementation to aid in the future development of the application. Let's update the find implementation details in the developer guide, as well as the supporting diagrams. By keeping the information up to date, developers will be able to accurately understand the implementation of the find functionality.
Configuration menu - View commit details
-
Copy full SHA for a21c960 - Browse repository at this point
Copy the full SHA a21c960View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp
* 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: Fix Typo in DG Reformat titles Fix typos Format implementation section of DG Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Satisfy github CI actions Seperate sequence diagram into parsing and execution Changes to manual testing Line break for CsvUtil box in puml diagram Add manual testing for relevant exam commands Satisfy github CI action Update changes to import implementation to the developer guide
Configuration menu - View commit details
-
Copy full SHA for 05162c9 - Browse repository at this point
Copy the full SHA 05162c9View commit details -
Merge branch 'master' into branch_UserGuide_2.0
* master: (72 commits) Fix Typo in DG Reformat titles Fix typos Format implementation section of DG Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Satisfy github CI actions Seperate sequence diagram into parsing and execution fix: resolve merge conflicts and formatting of developer guide fix: delete incomplete AddScoreSequenceDigram fix: push merged changes to branch Changes to manual testing Reorganize DG manual testing reformat exams section fix: update implementation details of developer guide fix: remove unnecessary section from implementation details in developer guide docs: update implementation details of developer guide Docs: specify that activity diagram represents the workflow ...
Configuration menu - View commit details
-
Copy full SHA for 84d55c0 - Browse repository at this point
Copy the full SHA 84d55c0View commit details -
Currently, minor grammatical errors were spotted in the DG after the previous commit. This needs to be corrected as it undermines the professionalism of the developer guide. Let's rectify all language issues in the edited portion of the DG. In maintaining the DG, we can avoid misinterpretation and uphold a high standard of professionalism.
Configuration menu - View commit details
-
Copy full SHA for 0b10aea - Browse repository at this point
Copy the full SHA 0b10aeaView commit details -
Currently the bar on the left of the site does not match the sections in the DG Lets modify it such that it matches the DG. Lets also default the side bars to be closed so the website looks cleaner at first glance
Configuration menu - View commit details
-
Copy full SHA for ff3eeb3 - Browse repository at this point
Copy the full SHA ff3eeb3View commit details -
docs: update user guide known issues section
add known issue that on first launch of the application the export feature may not work as intended as there is no data in the hard disk yet. add method to resolve this issue.
Configuration menu - View commit details
-
Copy full SHA for 43a7d96 - Browse repository at this point
Copy the full SHA 43a7d96View commit details
Commits on Apr 11, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 01f9ad0 - Browse repository at this point
Copy the full SHA 01f9ad0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 666c72d - Browse repository at this point
Copy the full SHA 666c72dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ea09ca - Browse repository at this point
Copy the full SHA 5ea09caView commit details -
Configuration menu - View commit details
-
Copy full SHA for efb1533 - Browse repository at this point
Copy the full SHA efb1533View commit details -
add more details to sequence diagrams in implementation of export section.
Configuration menu - View commit details
-
Copy full SHA for 8a8ea64 - Browse repository at this point
Copy the full SHA 8a8ea64View commit details -
Merge branch 'master' into branch-AddExportCommand
* master: (163 commits) Fix Typo in DG Reformat titles Fix typos Format implementation section of DG Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Changes to sequence diagram Satisfy github CI actions Seperate sequence diagram into parsing and execution fix: resolve merge conflicts and formatting of developer guide fix: delete incomplete AddScoreSequenceDigram fix: push merged changes to branch Changes to manual testing Reorganize DG manual testing reformat exams section fix: update implementation details of developer guide fix: remove unnecessary section from implementation details in developer guide docs: update implementation details of developer guide Docs: specify that activity diagram represents the workflow ...
Configuration menu - View commit details
-
Copy full SHA for 9c9107b - Browse repository at this point
Copy the full SHA 9c9107bView commit details -
fix: change all methods in CsvUtil class to be static
the methods in CsvUtil should be static but all methods in this class should be static.
Configuration menu - View commit details
-
Copy full SHA for c9d4541 - Browse repository at this point
Copy the full SHA c9d4541View commit details -
fix: update developer guide sequence diagram
edit sequence diagram in export implementation to be more concise and detailed.
Configuration menu - View commit details
-
Copy full SHA for 5ff5b92 - Browse repository at this point
Copy the full SHA 5ff5b92View commit details -
Merge pull request #398 from Pughal77/branch-FinaliseUG
Docs: Update Command Summary Table
Configuration menu - View commit details
-
Copy full SHA for d1e3844 - Browse repository at this point
Copy the full SHA d1e3844View commit details -
Merge pull request #407 from danielleloh/branch-AddExportCommand
fix: change all methods in CsvUtil class to be static
Configuration menu - View commit details
-
Copy full SHA for f7df82c - Browse repository at this point
Copy the full SHA f7df82cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3297d2d - Browse repository at this point
Copy the full SHA 3297d2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2039bd6 - Browse repository at this point
Copy the full SHA 2039bd6View commit details -
A typo was spotted in the edits made to the DG. We need to maintain professionalism and ensure that minimal errors are found so that developers reading the DG will not be confused. Let's fix these typos. This change will add to the collective clarity of the DG.
Configuration menu - View commit details
-
Copy full SHA for 0261a30 - Browse repository at this point
Copy the full SHA 0261a30View commit details -
Merge pull request #402 from jayllo-c/branch-UpdateDG-FindImplementation
docs: Update find implementation in the DG
Configuration menu - View commit details
-
Copy full SHA for b9b159d - Browse repository at this point
Copy the full SHA b9b159dView commit details -
Merge pull request #403 from danielleloh/branch_UserGuide_2.0
docs: update user guide known issues section
Configuration menu - View commit details
-
Copy full SHA for eadb061 - Browse repository at this point
Copy the full SHA eadb061View commit details -
Merge pull request #406 from delishad21/branch_AddUiOutlineToUG
Enhance UI Outline in UserGuide.md
Configuration menu - View commit details
-
Copy full SHA for e932dbb - Browse repository at this point
Copy the full SHA e932dbbView commit details -
edit export sequence diagrams to be more accurate.
Configuration menu - View commit details
-
Copy full SHA for c1a08ff - Browse repository at this point
Copy the full SHA c1a08ffView commit details -
Merge pull request #400 from danielleloh/branch-DeveloperGuide
docs: update implementation details in developer guide
Configuration menu - View commit details
-
Copy full SHA for 052e15e - Browse repository at this point
Copy the full SHA 052e15eView commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp
* 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp: docs: update developer guide Fix typo in DG fix: update developer guide sequence diagram fix: change all methods in CsvUtil class to be static fix: update developer guide Fix typo as statied in PR comments Add UI Outline to UG docs: update user guide known issues section Correct minor issues in DG Edit DG and diagrams for find implementation docs: update developer guide docs: add sequence diagram to implementation details in developer guide docs: add sequence diagram to illustrate parsing of deleteScore command docs: edit developer guide implementation details fix: add newline to end of puml file docs: add sequence diagram for execution of addScore command to developer guide docs: add sequence diagram for parsing of addScore command in developer guide Update Command Summary Table
Configuration menu - View commit details
-
Copy full SHA for 5924abe - Browse repository at this point
Copy the full SHA 5924abeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 74cc8cd - Browse repository at this point
Copy the full SHA 74cc8cdView commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch_UpdateDeveloperGuide5.0
Configuration menu - View commit details
-
Copy full SHA for e7051af - Browse repository at this point
Copy the full SHA e7051afView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31db068 - Browse repository at this point
Copy the full SHA 31db068View commit details -
Merge branch 'master' into branch_UserGuide_2.0
* master: docs: update developer guide Fix typo in DG fix: update developer guide sequence diagram fix: change all methods in CsvUtil class to be static fix: update developer guide Fix typo as statied in PR comments Add UI Outline to UG Correct minor issues in DG Edit DG and diagrams for find implementation docs: update developer guide docs: add sequence diagram to implementation details in developer guide docs: add sequence diagram to illustrate parsing of deleteScore command docs: edit developer guide implementation details fix: add newline to end of puml file docs: add sequence diagram for execution of addScore command to developer guide docs: add sequence diagram for parsing of addScore command in developer guide Update Command Summary Table
Configuration menu - View commit details
-
Copy full SHA for a6e2bf1 - Browse repository at this point
Copy the full SHA a6e2bf1View commit details -
docs: fix minor formatting issues in user guide
this ensures consistency in the formatting of the user guide.
Configuration menu - View commit details
-
Copy full SHA for 430c9b9 - Browse repository at this point
Copy the full SHA 430c9b9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 33780dc - Browse repository at this point
Copy the full SHA 33780dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for c691865 - Browse repository at this point
Copy the full SHA c691865View commit details -
Merge pull request #411 from danielleloh/branch_UserGuide_2.0
docs: fix minor formatting issues in user guide
Configuration menu - View commit details
-
Copy full SHA for f029668 - Browse repository at this point
Copy the full SHA f029668View commit details -
Merge pull request #410 from Pughal77/branch-ImproveDG
Docs:Update sequence diagram for Import
Configuration menu - View commit details
-
Copy full SHA for 47a7a54 - Browse repository at this point
Copy the full SHA 47a7a54View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch_UpdateDeveloperGuide5.0
Configuration menu - View commit details
-
Copy full SHA for c354c58 - Browse repository at this point
Copy the full SHA c354c58View commit details -
Configuration menu - View commit details
-
Copy full SHA for ccd0ceb - Browse repository at this point
Copy the full SHA ccd0cebView commit details -
Configuration menu - View commit details
-
Copy full SHA for 991deea - Browse repository at this point
Copy the full SHA 991deeaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45c4451 - Browse repository at this point
Copy the full SHA 45c4451View commit details -
Currently, the page break before the "Adding an Exam" section in the UG is causing an additional blank page to be generated when the UG is printed. This is an issue as it undermines the efforts made to format the UG properly. Let's amend the UG to ensure that the printed UG appears as intended. By doing so, we prevent unwanted issues from printing the user guide.
Configuration menu - View commit details
-
Copy full SHA for b5cdac2 - Browse repository at this point
Copy the full SHA b5cdac2View commit details -
Fix the colouring of the ref box.
Now the ref box is white in colour. Lets keep diagrams consistent.
Configuration menu - View commit details
-
Copy full SHA for f1150b7 - Browse repository at this point
Copy the full SHA f1150b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for ad07ce9 - Browse repository at this point
Copy the full SHA ad07ce9View commit details -
Merge pull request #404 from delishad21/branch_UpdateDeveloperGuide5.0
fix: Update DG formatting and site structure
Configuration menu - View commit details
-
Copy full SHA for 7f24f01 - Browse repository at this point
Copy the full SHA 7f24f01View commit details -
Merge pull request #412 from jayllo-c/branch-UG-PageBreaks
Edit page breaks in UG
Configuration menu - View commit details
-
Copy full SHA for 8deb6d0 - Browse repository at this point
Copy the full SHA 8deb6d0View commit details -
Merge pull request #413 from Zer0Legion/fix-ref-coloring
Fix the colouring of the ref box.
Configuration menu - View commit details
-
Copy full SHA for 23a69e4 - Browse repository at this point
Copy the full SHA 23a69e4View commit details
Commits on Apr 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 3fd4d83 - Browse repository at this point
Copy the full SHA 3fd4d83View commit details -
Docs: standardize start, shutdown, save manual testing sections
Now these sections are consistent with the overall manual testing format that we have chosen to follow. Lets standardize documentation.
Configuration menu - View commit details
-
Copy full SHA for 2e8c139 - Browse repository at this point
Copy the full SHA 2e8c139View commit details -
Configuration menu - View commit details
-
Copy full SHA for f37960b - Browse repository at this point
Copy the full SHA f37960bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9176d41 - Browse repository at this point
Copy the full SHA 9176d41View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2593be - Browse repository at this point
Copy the full SHA b2593beView commit details -
Docs: Format manual testing for add
Now the format for add for manual testing is consistent with the agreed format. Lets be consistent.
Configuration menu - View commit details
-
Copy full SHA for 911331a - Browse repository at this point
Copy the full SHA 911331aView commit details -
Docs: update all formatting assigned to myself to follow
agreed on standardized format Now the formats are standardized. Lets standardize documentation.
Configuration menu - View commit details
-
Copy full SHA for b221477 - Browse repository at this point
Copy the full SHA b221477View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7182c87 - Browse repository at this point
Copy the full SHA 7182c87View commit details -
Now all testing sections assigned to me are in the correct formatting. Lets standardize documentation.
Configuration menu - View commit details
-
Copy full SHA for 38160f8 - Browse repository at this point
Copy the full SHA 38160f8View commit details -
Update Manual Testing Section of DG
Currently, the manual testing section is formatted differently since it was written by multiple people. This needs to be rectified since the manual testing section looks to not follow any standard, and looks untidy and unstructured. Let's reformat the manual testing section to follow a similar structure. In unifying the format, we can ensure that the dev guide looks professionally made and well organized. Furthermore, the manual testing section will be easier to understand and follow if everything is standardized.
Configuration menu - View commit details
-
Copy full SHA for f32792d - Browse repository at this point
Copy the full SHA f32792dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 507d9bc - Browse repository at this point
Copy the full SHA 507d9bcView commit details
Commits on Apr 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ae2acf0 - Browse repository at this point
Copy the full SHA ae2acf0View commit details -
Merge pull request #417 from jayllo-c/branch-UpdateManualTesting2
Reformat Manual Testing Section in DG to follow standard formatting
Configuration menu - View commit details
-
Copy full SHA for 3e80aeb - Browse repository at this point
Copy the full SHA 3e80aebView commit details -
Merge pull request #416 from Zer0Legion/standardize-manual-testing
Reformat Manual Testing Section in DG to follow standard formatting
Configuration menu - View commit details
-
Copy full SHA for fdea99f - Browse repository at this point
Copy the full SHA fdea99fView commit details -
Merge pull request #414 from delishad21/branch_ModifyManualTestingDG
Reformat Manual Testing Section in DG to follow standard formatting
Configuration menu - View commit details
-
Copy full SHA for 3ffc36a - Browse repository at this point
Copy the full SHA 3ffc36aView commit details -
Merge pull request #418 from delishad21/branch_UpdateReadMe
Update Readme
Configuration menu - View commit details
-
Copy full SHA for da0cb4e - Browse repository at this point
Copy the full SHA da0cb4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f588fa - Browse repository at this point
Copy the full SHA 9f588faView commit details -
Fix all typos related to the usage of importExamScore
Now the prefix i| is added to the front. Lets remove typos
Configuration menu - View commit details
-
Copy full SHA for 0858c88 - Browse repository at this point
Copy the full SHA 0858c88View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cb22bf - Browse repository at this point
Copy the full SHA 4cb22bfView commit details -
Merge pull request #420 from Pughal77/branch-UpdateManualTesting
Reformatting manual testing section
Configuration menu - View commit details
-
Copy full SHA for 0234054 - Browse repository at this point
Copy the full SHA 0234054View commit details -
Merge pull request #419 from Zer0Legion/correct-importExamScores-typo
Fix all typos related to the usage of importExamScore
Configuration menu - View commit details
-
Copy full SHA for 1375ade - Browse repository at this point
Copy the full SHA 1375adeView commit details -
Minor Change to Manual Testing in DG
Currently, some parts are phrased in a way that can be ambiguously interpreted. This needs to change because it makes the manual testing section unclear. Let's alter the manual testing section to remove any source of ambiguity. In doing so, we can ensure that the DG remains clear.
Configuration menu - View commit details
-
Copy full SHA for 3f22d84 - Browse repository at this point
Copy the full SHA 3f22d84View commit details -
Configuration menu - View commit details
-
Copy full SHA for c736bdc - Browse repository at this point
Copy the full SHA c736bdcView commit details -
fix small grammatical error in manual testing section for export
Configuration menu - View commit details
-
Copy full SHA for 5a480f4 - Browse repository at this point
Copy the full SHA 5a480f4View commit details -
Merge pull request #423 from danielleloh/branch-DeveloperGuide
fix: typo in developer guide
Configuration menu - View commit details
-
Copy full SHA for 6db6d6b - Browse repository at this point
Copy the full SHA 6db6d6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for fe28f7f - Browse repository at this point
Copy the full SHA fe28f7fView commit details -
Merge pull request #421 from jayllo-c/branch-ManTestMinorChanges
Minor Change to Manual Testing in DG
Configuration menu - View commit details
-
Copy full SHA for d536645 - Browse repository at this point
Copy the full SHA d536645View commit details -
Configuration menu - View commit details
-
Copy full SHA for 965bf96 - Browse repository at this point
Copy the full SHA 965bf96View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9423ba0 - Browse repository at this point
Copy the full SHA 9423ba0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 21a95a3 - Browse repository at this point
Copy the full SHA 21a95a3View commit details -
Merge pull request #424 from delishad21/branch_UpdateDeveloperGuide6.0
Update logic in Logic in DG
Configuration menu - View commit details
-
Copy full SHA for 1ce37fc - Browse repository at this point
Copy the full SHA 1ce37fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7de12ca - Browse repository at this point
Copy the full SHA 7de12caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9c1a5a3 - Browse repository at this point
Copy the full SHA 9c1a5a3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d04c9a - Browse repository at this point
Copy the full SHA 5d04c9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5c1561 - Browse repository at this point
Copy the full SHA d5c1561View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55515b8 - Browse repository at this point
Copy the full SHA 55515b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aa4736 - Browse repository at this point
Copy the full SHA 2aa4736View commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch-FinaliseDG # Conflicts: # docs/DeveloperGuide.md
Configuration menu - View commit details
-
Copy full SHA for 9de416d - Browse repository at this point
Copy the full SHA 9de416dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 378f4d7 - Browse repository at this point
Copy the full SHA 378f4d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 246bad8 - Browse repository at this point
Copy the full SHA 246bad8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3860ac2 - Browse repository at this point
Copy the full SHA 3860ac2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 145a7c6 - Browse repository at this point
Copy the full SHA 145a7c6View commit details -
Merge pull request #425 from delishad21/branch_UpdateDeveloperGuide6.0
Update colour scheme
Configuration menu - View commit details
-
Copy full SHA for b918bfb - Browse repository at this point
Copy the full SHA b918bfbView commit details -
Configuration menu - View commit details
-
Copy full SHA for cc8c29a - Browse repository at this point
Copy the full SHA cc8c29aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 791e99a - Browse repository at this point
Copy the full SHA 791e99aView commit details -
Configuration menu - View commit details
-
Copy full SHA for afc32c9 - Browse repository at this point
Copy the full SHA afc32c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cf8d2b - Browse repository at this point
Copy the full SHA 2cf8d2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8321015 - Browse repository at this point
Copy the full SHA 8321015View commit details -
Merge pull request #422 from Pughal77/branch-FinaliseDG
Small changes to manual testing
Configuration menu - View commit details
-
Copy full SHA for cfbf0b3 - Browse repository at this point
Copy the full SHA cfbf0b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for faba016 - Browse repository at this point
Copy the full SHA faba016View commit details -
Currently, a mix of British english and US english is used in the DG. Furthermore, some spelling errors have been spotted in both the DG and UG. We should standardize our language use to US english since the standard convention uses US english. Furthermore, we should minimize errors to uphold a high standard of professionalism. Let's fix these language issues. By doing so, we can be assured that our documentation is top notch.
Configuration menu - View commit details
-
Copy full SHA for 6113feb - Browse repository at this point
Copy the full SHA 6113febView commit details -
Configuration menu - View commit details
-
Copy full SHA for c99430c - Browse repository at this point
Copy the full SHA c99430cView commit details -
Merge branch 'master' of https://github.com/AY2324S2-CS2103T-T10-1/tp …
…into branch_UpdateDeveloperGuide6.0
Configuration menu - View commit details
-
Copy full SHA for 48fdd0f - Browse repository at this point
Copy the full SHA 48fdd0fView commit details -
Merge pull request #426 from delishad21/branch_UpdateDeveloperGuide6.0
Add line breaks for DG export
Configuration menu - View commit details
-
Copy full SHA for 23369c5 - Browse repository at this point
Copy the full SHA 23369c5View commit details -
Merge pull request #427 from jayllo-c/branch-SpellChecks
docs: minor changes to UG and DG
Configuration menu - View commit details
-
Copy full SHA for a4a9ec6 - Browse repository at this point
Copy the full SHA a4a9ec6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8734be0 - Browse repository at this point
Copy the full SHA 8734be0View commit details -
Docs: tweak formatting of DG in preparation of final release
Now the page breaks are nicely broken. Broken links are removed. List now has command and link to UG. Lets release a single and good final release.
Configuration menu - View commit details
-
Copy full SHA for af1006b - Browse repository at this point
Copy the full SHA af1006bView commit details -
Now the page breaks are in their original form to prevent further mistakes in formatting. Lets improve documentation
Configuration menu - View commit details
-
Copy full SHA for 315cb4c - Browse repository at this point
Copy the full SHA 315cb4cView commit details -
Now changes are reverted correctly. Only content errors are fixed. Lets improve documentation.
Configuration menu - View commit details
-
Copy full SHA for e6d7322 - Browse repository at this point
Copy the full SHA e6d7322View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4081838 - Browse repository at this point
Copy the full SHA 4081838View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e3a5d3 - Browse repository at this point
Copy the full SHA 3e3a5d3View commit details -
Merge pull request #429 from delishad21/branch_UpdateDeveloperGuide6.0
Update user stories to html tables
Configuration menu - View commit details
-
Copy full SHA for 9af48eb - Browse repository at this point
Copy the full SHA 9af48ebView commit details -
Merge pull request #428 from Zer0Legion/final-formatting
Final dg content changes
Configuration menu - View commit details
-
Copy full SHA for d69f6f6 - Browse repository at this point
Copy the full SHA d69f6f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ce737d - Browse repository at this point
Copy the full SHA 0ce737dView commit details -
Merge pull request #430 from delishad21/branch_FormatHtmlTables
Format Html Tables for UG and DG
Configuration menu - View commit details
-
Copy full SHA for c1f5d45 - Browse repository at this point
Copy the full SHA c1f5d45View commit details -
Configuration menu - View commit details
-
Copy full SHA for 812388a - Browse repository at this point
Copy the full SHA 812388aView commit details -
Merge pull request #431 from delishad21/branch_FixDGErrors
Fix: Score Statistics in DG
Configuration menu - View commit details
-
Copy full SHA for 8e9e5ff - Browse repository at this point
Copy the full SHA 8e9e5ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 48c4226 - Browse repository at this point
Copy the full SHA 48c4226View commit details -
A minor formatting error was spotted. This was because markdown notation was used when HTML notation should have been used instead. Let's fix this. By doing so, we can eliminate this minor issue.
Configuration menu - View commit details
-
Copy full SHA for 98c0385 - Browse repository at this point
Copy the full SHA 98c0385View commit details -
Merge pull request #432 from jayllo-c/branch-ManTestEdit2
Minor Change to DG
Configuration menu - View commit details
-
Copy full SHA for 1b6b8bf - Browse repository at this point
Copy the full SHA 1b6b8bfView commit details