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

Merge develop branch into Master branch - Release v1.4.0 #9

Merged
merged 42 commits into from
Oct 20, 2024
Merged
Changes from 2 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
abb78ac
feature: rename `initial-state` file
hozlucas28 Oct 13, 2024
ba06238
feature: add new main argument
hozlucas28 Oct 13, 2024
02a8063
feature: create `validateInitialStateFile` function validator
hozlucas28 Oct 13, 2024
c8751b2
feature: remove unnecessary include
hozlucas28 Oct 13, 2024
65839d5
fix: add missing includes
hozlucas28 Oct 13, 2024
ad1a074
feature: create `drawDashboardFromFile` function
hozlucas28 Oct 13, 2024
2da6b96
feature: add new main argument
hozlucas28 Oct 13, 2024
ebfdd66
feature: improve performance and implement `initialStateFile` main ar…
hozlucas28 Oct 13, 2024
71dae16
fix: remove unnecessary code
hozlucas28 Oct 13, 2024
d31e8ac
todos: add new todo
hozlucas28 Oct 13, 2024
9979bec
ci: format code
github-actions[bot] Oct 13, 2024
ae114e4
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-W…
hozlucas28 Oct 13, 2024
3502e6e
todos: add new todo
hozlucas28 Oct 13, 2024
320bde2
fix: remove unnecessary macros
hozlucas28 Oct 13, 2024
09b7ed6
fix: restore variable
hozlucas28 Oct 13, 2024
83cf176
ci: format code
github-actions[bot] Oct 13, 2024
4393512
todo: remove todo
hozlucas28 Oct 13, 2024
5e8f96a
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-W…
hozlucas28 Oct 13, 2024
e598459
feature: implement `MAX` macro
hozlucas28 Oct 14, 2024
6605d83
doc: complete remaining documentation
hozlucas28 Oct 14, 2024
147ceee
fix: rename `drawDashboardFromFile` function
hozlucas28 Oct 14, 2024
1db0071
ci: format code
github-actions[bot] Oct 14, 2024
6a641b3
todos: add new todo
hozlucas28 Oct 16, 2024
3764642
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-W…
hozlucas28 Oct 16, 2024
b029bff
todos: complete todos
hozlucas28 Oct 18, 2024
37cda36
feature: update variables and parameters data types
hozlucas28 Oct 18, 2024
c9e3c9b
ci: format code
github-actions[bot] Oct 18, 2024
017eeb7
doc: update documentation guidelines
hozlucas28 Oct 18, 2024
fa0e05e
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-W…
hozlucas28 Oct 18, 2024
b75b060
doc: update `Application Structure` section
hozlucas28 Oct 18, 2024
f296cd1
todos: complete todo
hozlucas28 Oct 18, 2024
f6c488f
doc: update `Features` section
hozlucas28 Oct 18, 2024
5da368f
todos: complete todo
hozlucas28 Oct 18, 2024
1fe86cd
doc: create `Program arguments` section
hozlucas28 Oct 18, 2024
4a5f48e
todos: complete todo
hozlucas28 Oct 18, 2024
b6f1163
fix: remove auto set program arguments
hozlucas28 Oct 18, 2024
76dee53
fix: data types
hozlucas28 Oct 20, 2024
3f540fe
feature: implement `setDashboardFromFile` function
hozlucas28 Oct 20, 2024
d7e08e1
ci: format code
github-actions[bot] Oct 20, 2024
6c7fe06
todos: complete all todos
hozlucas28 Oct 20, 2024
e6a4087
Merge branch 'develop' of https://github.com/hozlucas28/C-Practical-W…
hozlucas28 Oct 20, 2024
a9b055a
doc: add new alert
hozlucas28 Oct 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion libs/utilities.c
Original file line number Diff line number Diff line change
@@ -129,7 +129,8 @@ char** new2DArray(const int rows, const int cols) {

void sleep(int miliseconds) {
const clock_t startTime = clock();
while (clock() < (startTime + miliseconds));
while (clock() < (startTime + miliseconds))
;
}

int strcmpi(const char* str01, const char* str02) {