| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2025-10-29 | test(generate_test_data.sh): Fix so both coordinates are in the range 0 - 32767 | mithe24 | 1 | -1/+1 | |
| This was a some code I had written for numbers in other ranges. This is of course wrong, the range should be 0 - 32767 | |||||
| 2025-10-29 | update to-do | mithe24 | 2 | -8/+7 | |
| 2025-10-29 | test(all): Added test script for testing against sort | mithe24 | 4 | -25/+65 | |
| Added test.sh that tests our program against sort Added generate_test_data.sh for generating a large test data set | |||||
| 2025-10-29 | Test data is basically binary files and shouldn't be in version control | mithe24 | 1 | -10000/+0 | |
| 2025-10-29 | fix(test): the test used an unstable sorting algorithm, which caused ↵ | Navid Samanghoon | 2 | -2/+2 | |
| insertion sort to fail on duplicates. This has been fixed now. | |||||
| 2025-10-29 | typo | Navid Samanghoon | 2 | -2/+2 | |
| 2025-10-29 | fix(insertion_sort): uses 2 loops now | Navid Samanghoon | 1 | -45/+43 | |
| 2025-10-29 | updated to-do | mithe24 | 1 | -1/+1 | |
| 2025-10-29 | feat(man page): Added man page for program | mithe24 | 3 | -2/+25 | |
| 2025-10-29 | Make .gitignore catch any version tarball | mithe24 | 1 | -1/+1 | |
| 2025-10-29 | build(fix): Removed old variable, fixed wrong command | mithe24 | 1 | -3/+1 | |
| 2025-10-29 | build(version numbering): Added support for automatic version numbering | mithe24 | 1 | -1/+2 | |
| Added support for automatic version numbering using git version tags | |||||
| 2025-10-29 | build: Move Makefile to src/ and putting object files in src/ too | mithe24 | 4 | -34/+35 | |
| Changed output directory for objects files and put Makefile in src/. This is because that is how it's expected in desc.pdf | |||||
| 2025-10-29 | test(numbers.txt): Test script that compares output with 'sort' | mithe24 | 1 | -0/+25 | |
| Test case that matches output of the program and 'sort' using the command 'sort -n -k 2' | |||||
| 2025-10-29 | update to-do | mithe24 | 1 | -1/+1 | |
| 2025-10-29 | build(Deploy): Added `deploy` target for archiving program in a `.tar.gz` | mithe24 | 3 | -1/+33 | |
| `make deploy` compresses and adds executable to a `.tar.gz` archive. It also adds `README.md` to `usr/bin/sorter/doc/' | |||||
| 2025-10-29 | **JANITOR** removed orphans | mithe24 | 3 | -325/+0 | |
| 2025-10-29 | fix(main): used make_array_from_file | Andreas Kapp Lindquist | 1 | -6/+5 | |
| 2025-10-29 | fix(outputGenerator) | Andreas Kapp Lindquist | 1 | -7/+7 | |
| 2025-10-29 | feat(array_maker): new file for creating the array structure | Andreas Kapp Lindquist | 1 | -0/+154 | |
| 2025-10-29 | spell(project_spec): Fixed spelling in project_spec file | mithe24 | 1 | -5/+5 | |
| 2025-10-29 | fix(outputGenerator): fixing pointer problem | Navid Samanghoon | 1 | -3/+5 | |
| 2025-10-29 | chore(Makrfile): Generalized maekfile | mithe24 | 1 | -23/+19 | |
| 2025-10-29 | chore(snippets): move snippetss to src/ | mithe24 | 4 | -0/+1 | |
| 2025-10-29 | chore(gitignore): gitignore for build/ and sorter exe | mithe24 | 1 | -0/+2 | |
| 2025-10-29 | fix(outputGenerator.s): renamed printNum to print_num | Andreas Kapp Lindquist | 1 | -11/+11 | |
| 2025-10-29 | feat(main.s): basic file sorter rutine | Andreas Kapp Lindquist | 1 | -1/+13 | |
| 2025-10-29 | docs(file_parser): return type | Andreas Kapp Lindquist | 1 | -2/+2 | |
| 2025-10-29 | feat(file_parser): return length of array in rdx | Andreas Kapp Lindquist | 1 | -1/+3 | |
| 2025-10-29 | feat(outputGenerator.s): suggestion to how we print the sorted buffer | Navid Samanghoon | 1 | -0/+142 | |
| 2025-10-29 | spell(project_spec): small typo | mithe24 | 1 | -1/+1 | |
| 2025-10-29 | chore(todo): Added todos for argument parsing | mithe24 | 1 | -1/+11 | |
| 2025-10-29 | refactor(Makefile): Attempt at making Makefile | Andreas Kapp Lindquist | 2 | -10/+29 | |
| 2025-10-29 | feat(utils.s): Added utils from lab sessions | Andreas Kapp Lindquist | 1 | -0/+214 | |
| 2025-10-29 | chore(numbers.txt): Test file to be sorted | Andreas Kapp Lindquist | 1 | -0/+10000 | |
| 2025-10-29 | feat(makefile): Basic makefile | Andreas Kapp Lindquist | 1 | -0/+10 | |
| 2025-10-29 | feat(main.s): Created basic main file | Andreas Kapp Lindquist | 1 | -0/+17 | |
| 2025-10-29 | feat(file_parser.s): Function for parsing file into array format | Andreas Kapp Lindquist | 1 | -0/+58 | |
| 2025-10-29 | feat(coordinateManager): file with functions regarding making a pointer buffer | Navid Samanghoon | 1 | -0/+51 | |
| 2025-10-29 | refactor(run.sh,test.s,utils.s): Removed test files | Andreas Kapp Lindquist | 3 | -272/+0 | |
| 2025-10-29 | docs(insertion_sort.s) | Andreas Kapp Lindquist | 1 | -2/+2 | |
| 2025-10-29 | refactor(insertionsort.s): Renamed to insertion_sort.s | Andreas Kapp Lindquist | 2 | -2/+2 | |
| 2025-10-29 | fix(insertionsort.s): Save array size across recursive call | Andreas Kapp Lindquist | 1 | -2/+2 | |
| 2025-10-29 | docs(insertionsort.s): Added reference for algorithm | Andreas Kapp Lindquist | 1 | -1/+2 | |
| 2025-10-29 | feat(utils.s): Added printNum function for testing | Andreas Kapp Lindquist | 2 | -1/+216 | |
| 2025-10-29 | feat(test.s): More numbers and printing using printNum | Andreas Kapp Lindquist | 1 | -8/+31 | |
| 2025-10-29 | fix(insertionsort.s): Address reference and jump to end_while | Andreas Kapp Lindquist | 1 | -5/+5 | |
| 2025-10-29 | fix(insertionsort.s): Wrong syntax for accessing elements | Andreas Kapp Lindquist | 1 | -7/+11 | |
| 2025-10-29 | test(run.sh) simple script for faster testing | Andreas Kapp Lindquist | 1 | -0/+5 | |
| 2025-10-29 | test(test.s): Created simple test file | Andreas Kapp Lindquist | 1 | -0/+29 | |