Skip to content

Commit 1f9961a

Browse files
committed
Database Bubble sort order fix.
* Bubble sordt created a reversed order. It has been fixed. * Docs folder removed from code branch.
1 parent 82a59a4 commit 1f9961a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+413
-29553
lines changed

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"xstring": "cpp",
1212
"xlocale": "cpp",
1313
"ios": "cpp",
14-
"xmemory": "cpp"
14+
"xmemory": "cpp",
15+
"system_error": "cpp"
1516
}
1617
}

CMakeLists.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,12 @@ if(RUN_TESTS)
134134
#add_executable( test_commander_commands_memory_commands ${SOURCES} ${UNIT_TESTING} extras/tests/testCases/Commander-Commands/Memory-Commands/test_memory_commands.cpp )
135135

136136
# -- Commander-Commands / Neofetch-Command --
137-
add_executable( test_commander_commands_neofetch_command ${SOURCES} ${UNIT_TESTING} extras/tests/testCases/Commander-Commands/Neofetch-Command/test_neofetch_command.cpp )
137+
#add_executable( test_commander_commands_neofetch_command ${SOURCES} ${UNIT_TESTING} extras/tests/testCases/Commander-Commands/Neofetch-Command/test_neofetch_command.cpp )
138+
139+
140+
141+
# -- Commander Object --
142+
add_executable( test_commander_init ${SOURCES} ${UNIT_TESTING} extras/tests/testCases/Commander/test_init.cpp )
138143

139144
endif()
140145

build.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,12 @@
441441
cssFile.writelines(styleLines)
442442
cssFile.close()
443443

444-
# Copy report data to Doxygen source folder
444+
# Check if the html directory exists.
445+
# If not, create it.
446+
if os.path.isdir( rootDirectory + "/docs/html/" ) == False:
447+
os.mkdir( rootDirectory + "/docs/html/" )
448+
449+
# Copy report data to Doxygen html folder
445450
reportFiles = os.listdir( rootDirectory + "/" + buildDirectoryName + "/report" )
446451
for reportFile in reportFiles:
447452
shutil.copyfile( rootDirectory + "/" + buildDirectoryName + "/report/" + reportFile, rootDirectory + "/docs/html/" + reportFile )

docs/Style/doxygen-awesome-css

Submodule doxygen-awesome-css deleted from df83fbf

docs/Style/doxygen-custom/custom-alternative.css

Lines changed: 0 additions & 54 deletions
This file was deleted.

docs/Style/doxygen-custom/custom.css

Lines changed: 0 additions & 78 deletions
This file was deleted.

docs/Style/doxygen-custom/footer.html

Lines changed: 0 additions & 59 deletions
This file was deleted.

docs/Style/doxygen-custom/header.html

Lines changed: 0 additions & 92 deletions
This file was deleted.

docs/Style/doxygen-custom/toggle-alternative-theme.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)