diff --git a/CMakeLists.txt b/CMakeLists.txt index d7920f4c..b4b91a46 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,30 +24,30 @@ add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/Thirdparty/pugixml" EXCLUDE_FROM_ALL ############################### file(GLOB_RECURSE HEADER_FILES CONFIGURE_DEPENDS - ${CMAKE_CURRENT_LIST_DIR}/Src/**/*.h + ${CMAKE_CURRENT_LIST_DIR}/src/**/*.h ) file(GLOB_RECURSE SOURCE_FILES CONFIGURE_DEPENDS - ${CMAKE_CURRENT_LIST_DIR}/Src/**/*.cpp + ${CMAKE_CURRENT_LIST_DIR}/src/**/*.cpp ) # Still in the library but not actively used anymore. Also not supported on all platforms -list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/CannaConversionHelper.h") -list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/SocketInputBase.h") -list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/SocketInput.h") -list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/CannaConversionHelper.cpp") -list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/SocketInputBase.cpp") -list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/Src/DasherCore/SocketInput.cpp") +list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/CannaConversionHelper.h") +list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/SocketInputBase.h") +list(REMOVE_ITEM HEADER_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/SocketInput.h") +list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/CannaConversionHelper.cpp") +list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/SocketInputBase.cpp") +list(REMOVE_ITEM SOURCE_FILES "${CMAKE_CURRENT_LIST_DIR}/src/DasherCore/SocketInput.cpp") ADD_library(DasherCore STATIC ${HEADER_FILES} ${SOURCE_FILES} ) -target_include_directories(DasherCore PUBLIC ${CMAKE_CURRENT_LIST_DIR}/Src/) +target_include_directories(DasherCore PUBLIC ${CMAKE_CURRENT_LIST_DIR}/src/) add_dependencies(DasherCore pugixml) target_link_libraries(DasherCore pugixml) -source_group(TREE ${CMAKE_CURRENT_LIST_DIR}/Src/ FILES ${HEADER_FILES} ${SOURCE_FILES}) +source_group(TREE ${CMAKE_CURRENT_LIST_DIR}/src/ FILES ${HEADER_FILES} ${SOURCE_FILES}) set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT DasherCore) diff --git a/Src/DasherCore/AbstractXMLParser.cpp b/src/DasherCore/AbstractXMLParser.cpp similarity index 100% rename from Src/DasherCore/AbstractXMLParser.cpp rename to src/DasherCore/AbstractXMLParser.cpp diff --git a/Src/DasherCore/AbstractXMLParser.h b/src/DasherCore/AbstractXMLParser.h similarity index 100% rename from Src/DasherCore/AbstractXMLParser.h rename to src/DasherCore/AbstractXMLParser.h diff --git a/Src/DasherCore/ActionManager.h b/src/DasherCore/ActionManager.h similarity index 100% rename from Src/DasherCore/ActionManager.h rename to src/DasherCore/ActionManager.h diff --git a/Src/DasherCore/Actions.cpp b/src/DasherCore/Actions.cpp similarity index 100% rename from Src/DasherCore/Actions.cpp rename to src/DasherCore/Actions.cpp diff --git a/Src/DasherCore/Actions.h b/src/DasherCore/Actions.h similarity index 100% rename from Src/DasherCore/Actions.h rename to src/DasherCore/Actions.h diff --git a/Src/DasherCore/Alphabet/AlphIO.cpp b/src/DasherCore/Alphabet/AlphIO.cpp similarity index 100% rename from Src/DasherCore/Alphabet/AlphIO.cpp rename to src/DasherCore/Alphabet/AlphIO.cpp diff --git a/Src/DasherCore/Alphabet/AlphIO.h b/src/DasherCore/Alphabet/AlphIO.h similarity index 100% rename from Src/DasherCore/Alphabet/AlphIO.h rename to src/DasherCore/Alphabet/AlphIO.h diff --git a/Src/DasherCore/Alphabet/AlphInfo.cpp b/src/DasherCore/Alphabet/AlphInfo.cpp similarity index 100% rename from Src/DasherCore/Alphabet/AlphInfo.cpp rename to src/DasherCore/Alphabet/AlphInfo.cpp diff --git a/Src/DasherCore/Alphabet/AlphInfo.h b/src/DasherCore/Alphabet/AlphInfo.h similarity index 100% rename from Src/DasherCore/Alphabet/AlphInfo.h rename to src/DasherCore/Alphabet/AlphInfo.h diff --git a/Src/DasherCore/Alphabet/AlphabetMap.cpp b/src/DasherCore/Alphabet/AlphabetMap.cpp similarity index 100% rename from Src/DasherCore/Alphabet/AlphabetMap.cpp rename to src/DasherCore/Alphabet/AlphabetMap.cpp diff --git a/Src/DasherCore/Alphabet/AlphabetMap.h b/src/DasherCore/Alphabet/AlphabetMap.h similarity index 100% rename from Src/DasherCore/Alphabet/AlphabetMap.h rename to src/DasherCore/Alphabet/AlphabetMap.h diff --git a/Src/DasherCore/Alphabet/GroupInfo.h b/src/DasherCore/Alphabet/GroupInfo.h similarity index 100% rename from Src/DasherCore/Alphabet/GroupInfo.h rename to src/DasherCore/Alphabet/GroupInfo.h diff --git a/Src/DasherCore/AlphabetManager.cpp b/src/DasherCore/AlphabetManager.cpp similarity index 100% rename from Src/DasherCore/AlphabetManager.cpp rename to src/DasherCore/AlphabetManager.cpp diff --git a/Src/DasherCore/AlphabetManager.h b/src/DasherCore/AlphabetManager.h similarity index 100% rename from Src/DasherCore/AlphabetManager.h rename to src/DasherCore/AlphabetManager.h diff --git a/Src/DasherCore/AlternatingDirectMode.cpp b/src/DasherCore/AlternatingDirectMode.cpp similarity index 100% rename from Src/DasherCore/AlternatingDirectMode.cpp rename to src/DasherCore/AlternatingDirectMode.cpp diff --git a/Src/DasherCore/AlternatingDirectMode.h b/src/DasherCore/AlternatingDirectMode.h similarity index 100% rename from Src/DasherCore/AlternatingDirectMode.h rename to src/DasherCore/AlternatingDirectMode.h diff --git a/Src/DasherCore/AutoSpeedControl.cpp b/src/DasherCore/AutoSpeedControl.cpp similarity index 100% rename from Src/DasherCore/AutoSpeedControl.cpp rename to src/DasherCore/AutoSpeedControl.cpp diff --git a/Src/DasherCore/AutoSpeedControl.h b/src/DasherCore/AutoSpeedControl.h similarity index 100% rename from Src/DasherCore/AutoSpeedControl.h rename to src/DasherCore/AutoSpeedControl.h diff --git a/Src/DasherCore/BasicLog.cpp b/src/DasherCore/BasicLog.cpp similarity index 100% rename from Src/DasherCore/BasicLog.cpp rename to src/DasherCore/BasicLog.cpp diff --git a/Src/DasherCore/BasicLog.h b/src/DasherCore/BasicLog.h similarity index 100% rename from Src/DasherCore/BasicLog.h rename to src/DasherCore/BasicLog.h diff --git a/Src/DasherCore/ButtonMode.cpp b/src/DasherCore/ButtonMode.cpp similarity index 100% rename from Src/DasherCore/ButtonMode.cpp rename to src/DasherCore/ButtonMode.cpp diff --git a/Src/DasherCore/ButtonMode.h b/src/DasherCore/ButtonMode.h similarity index 100% rename from Src/DasherCore/ButtonMode.h rename to src/DasherCore/ButtonMode.h diff --git a/Src/DasherCore/ButtonMultiPress.cpp b/src/DasherCore/ButtonMultiPress.cpp similarity index 100% rename from Src/DasherCore/ButtonMultiPress.cpp rename to src/DasherCore/ButtonMultiPress.cpp diff --git a/Src/DasherCore/ButtonMultiPress.h b/src/DasherCore/ButtonMultiPress.h similarity index 100% rename from Src/DasherCore/ButtonMultiPress.h rename to src/DasherCore/ButtonMultiPress.h diff --git a/Src/DasherCore/CannaConversionHelper.cpp b/src/DasherCore/CannaConversionHelper.cpp similarity index 100% rename from Src/DasherCore/CannaConversionHelper.cpp rename to src/DasherCore/CannaConversionHelper.cpp diff --git a/Src/DasherCore/CannaConversionHelper.h b/src/DasherCore/CannaConversionHelper.h similarity index 100% rename from Src/DasherCore/CannaConversionHelper.h rename to src/DasherCore/CannaConversionHelper.h diff --git a/Src/DasherCore/CircleStartHandler.cpp b/src/DasherCore/CircleStartHandler.cpp similarity index 100% rename from Src/DasherCore/CircleStartHandler.cpp rename to src/DasherCore/CircleStartHandler.cpp diff --git a/Src/DasherCore/CircleStartHandler.h b/src/DasherCore/CircleStartHandler.h similarity index 100% rename from Src/DasherCore/CircleStartHandler.h rename to src/DasherCore/CircleStartHandler.h diff --git a/Src/DasherCore/ClickFilter.cpp b/src/DasherCore/ClickFilter.cpp similarity index 100% rename from Src/DasherCore/ClickFilter.cpp rename to src/DasherCore/ClickFilter.cpp diff --git a/Src/DasherCore/ClickFilter.h b/src/DasherCore/ClickFilter.h similarity index 100% rename from Src/DasherCore/ClickFilter.h rename to src/DasherCore/ClickFilter.h diff --git a/Src/DasherCore/ColorIO.cpp b/src/DasherCore/ColorIO.cpp similarity index 100% rename from Src/DasherCore/ColorIO.cpp rename to src/DasherCore/ColorIO.cpp diff --git a/Src/DasherCore/ColorIO.h b/src/DasherCore/ColorIO.h similarity index 100% rename from Src/DasherCore/ColorIO.h rename to src/DasherCore/ColorIO.h diff --git a/Src/DasherCore/ColorPalette.cpp b/src/DasherCore/ColorPalette.cpp similarity index 100% rename from Src/DasherCore/ColorPalette.cpp rename to src/DasherCore/ColorPalette.cpp diff --git a/Src/DasherCore/ColorPalette.h b/src/DasherCore/ColorPalette.h similarity index 100% rename from Src/DasherCore/ColorPalette.h rename to src/DasherCore/ColorPalette.h diff --git a/Src/DasherCore/Common/Allocators/PooledAlloc.h b/src/DasherCore/Common/Allocators/PooledAlloc.h similarity index 100% rename from Src/DasherCore/Common/Allocators/PooledAlloc.h rename to src/DasherCore/Common/Allocators/PooledAlloc.h diff --git a/Src/DasherCore/Common/Allocators/SimplePooledAlloc.h b/src/DasherCore/Common/Allocators/SimplePooledAlloc.h similarity index 100% rename from Src/DasherCore/Common/Allocators/SimplePooledAlloc.h rename to src/DasherCore/Common/Allocators/SimplePooledAlloc.h diff --git a/Src/DasherCore/Common/AppSettingsData.h b/src/DasherCore/Common/AppSettingsData.h similarity index 100% rename from Src/DasherCore/Common/AppSettingsData.h rename to src/DasherCore/Common/AppSettingsData.h diff --git a/Src/DasherCore/Common/AppSettingsHeader.h b/src/DasherCore/Common/AppSettingsHeader.h similarity index 100% rename from Src/DasherCore/Common/AppSettingsHeader.h rename to src/DasherCore/Common/AppSettingsHeader.h diff --git a/Src/DasherCore/Common/I18n.h b/src/DasherCore/Common/I18n.h similarity index 100% rename from Src/DasherCore/Common/I18n.h rename to src/DasherCore/Common/I18n.h diff --git a/Src/DasherCore/Common/MSVC_Unannoy.h b/src/DasherCore/Common/MSVC_Unannoy.h similarity index 100% rename from Src/DasherCore/Common/MSVC_Unannoy.h rename to src/DasherCore/Common/MSVC_Unannoy.h diff --git a/Src/DasherCore/Common/ModuleSettings.h b/src/DasherCore/Common/ModuleSettings.h similarity index 100% rename from Src/DasherCore/Common/ModuleSettings.h rename to src/DasherCore/Common/ModuleSettings.h diff --git a/Src/DasherCore/Common/NoClones.h b/src/DasherCore/Common/NoClones.h similarity index 100% rename from Src/DasherCore/Common/NoClones.h rename to src/DasherCore/Common/NoClones.h diff --git a/Src/DasherCore/Common/OpenGLScreen.h b/src/DasherCore/Common/OpenGLScreen.h similarity index 100% rename from Src/DasherCore/Common/OpenGLScreen.h rename to src/DasherCore/Common/OpenGLScreen.h diff --git a/Src/DasherCore/Common/Platform/stdminmax.h b/src/DasherCore/Common/Platform/stdminmax.h similarity index 100% rename from Src/DasherCore/Common/Platform/stdminmax.h rename to src/DasherCore/Common/Platform/stdminmax.h diff --git a/Src/DasherCore/Common/SBTree.cpp b/src/DasherCore/Common/SBTree.cpp similarity index 100% rename from Src/DasherCore/Common/SBTree.cpp rename to src/DasherCore/Common/SBTree.cpp diff --git a/Src/DasherCore/Common/SBTree.h b/src/DasherCore/Common/SBTree.h similarity index 100% rename from Src/DasherCore/Common/SBTree.h rename to src/DasherCore/Common/SBTree.h diff --git a/Src/DasherCore/Common/Trace.cpp b/src/DasherCore/Common/Trace.cpp similarity index 100% rename from Src/DasherCore/Common/Trace.cpp rename to src/DasherCore/Common/Trace.cpp diff --git a/Src/DasherCore/Common/Trace.h b/src/DasherCore/Common/Trace.h similarity index 100% rename from Src/DasherCore/Common/Trace.h rename to src/DasherCore/Common/Trace.h diff --git a/Src/DasherCore/Common/Unicode/ConvertUTF.c b/src/DasherCore/Common/Unicode/ConvertUTF.c similarity index 100% rename from Src/DasherCore/Common/Unicode/ConvertUTF.c rename to src/DasherCore/Common/Unicode/ConvertUTF.c diff --git a/Src/DasherCore/Common/Unicode/ConvertUTF.h b/src/DasherCore/Common/Unicode/ConvertUTF.h similarity index 100% rename from Src/DasherCore/Common/Unicode/ConvertUTF.h rename to src/DasherCore/Common/Unicode/ConvertUTF.h diff --git a/Src/DasherCore/Common/Unicode/harness.c b/src/DasherCore/Common/Unicode/harness.c similarity index 100% rename from Src/DasherCore/Common/Unicode/harness.c rename to src/DasherCore/Common/Unicode/harness.c diff --git a/Src/DasherCore/Common/Unicode/original_harness.c b/src/DasherCore/Common/Unicode/original_harness.c similarity index 100% rename from Src/DasherCore/Common/Unicode/original_harness.c rename to src/DasherCore/Common/Unicode/original_harness.c diff --git a/Src/DasherCore/Common/myassert.h b/src/DasherCore/Common/myassert.h similarity index 100% rename from Src/DasherCore/Common/myassert.h rename to src/DasherCore/Common/myassert.h diff --git a/Src/DasherCore/Common/mydebug.h b/src/DasherCore/Common/mydebug.h similarity index 100% rename from Src/DasherCore/Common/mydebug.h rename to src/DasherCore/Common/mydebug.h diff --git a/Src/DasherCore/Common/round.c b/src/DasherCore/Common/round.c similarity index 100% rename from Src/DasherCore/Common/round.c rename to src/DasherCore/Common/round.c diff --git a/Src/DasherCore/Common/round.h b/src/DasherCore/Common/round.h similarity index 100% rename from Src/DasherCore/Common/round.h rename to src/DasherCore/Common/round.h diff --git a/Src/DasherCore/CompassMode.cpp b/src/DasherCore/CompassMode.cpp similarity index 100% rename from Src/DasherCore/CompassMode.cpp rename to src/DasherCore/CompassMode.cpp diff --git a/Src/DasherCore/CompassMode.h b/src/DasherCore/CompassMode.h similarity index 100% rename from Src/DasherCore/CompassMode.h rename to src/DasherCore/CompassMode.h diff --git a/Src/DasherCore/ConversionManager.cpp b/src/DasherCore/ConversionManager.cpp similarity index 100% rename from Src/DasherCore/ConversionManager.cpp rename to src/DasherCore/ConversionManager.cpp diff --git a/Src/DasherCore/ConversionManager.h b/src/DasherCore/ConversionManager.h similarity index 100% rename from Src/DasherCore/ConversionManager.h rename to src/DasherCore/ConversionManager.h diff --git a/Src/DasherCore/ConvertingAlphMgr.cpp b/src/DasherCore/ConvertingAlphMgr.cpp similarity index 100% rename from Src/DasherCore/ConvertingAlphMgr.cpp rename to src/DasherCore/ConvertingAlphMgr.cpp diff --git a/Src/DasherCore/ConvertingAlphMgr.h b/src/DasherCore/ConvertingAlphMgr.h similarity index 100% rename from Src/DasherCore/ConvertingAlphMgr.h rename to src/DasherCore/ConvertingAlphMgr.h diff --git a/Src/DasherCore/DashIntfScreenMsgs.cpp b/src/DasherCore/DashIntfScreenMsgs.cpp similarity index 100% rename from Src/DasherCore/DashIntfScreenMsgs.cpp rename to src/DasherCore/DashIntfScreenMsgs.cpp diff --git a/Src/DasherCore/DashIntfScreenMsgs.h b/src/DasherCore/DashIntfScreenMsgs.h similarity index 100% rename from Src/DasherCore/DashIntfScreenMsgs.h rename to src/DasherCore/DashIntfScreenMsgs.h diff --git a/Src/DasherCore/DashIntfSettings.cpp b/src/DasherCore/DashIntfSettings.cpp similarity index 100% rename from Src/DasherCore/DashIntfSettings.cpp rename to src/DasherCore/DashIntfSettings.cpp diff --git a/Src/DasherCore/DashIntfSettings.h b/src/DasherCore/DashIntfSettings.h similarity index 100% rename from Src/DasherCore/DashIntfSettings.h rename to src/DasherCore/DashIntfSettings.h diff --git a/Src/DasherCore/DasherButtons.cpp b/src/DasherCore/DasherButtons.cpp similarity index 100% rename from Src/DasherCore/DasherButtons.cpp rename to src/DasherCore/DasherButtons.cpp diff --git a/Src/DasherCore/DasherButtons.h b/src/DasherCore/DasherButtons.h similarity index 100% rename from Src/DasherCore/DasherButtons.h rename to src/DasherCore/DasherButtons.h diff --git a/Src/DasherCore/DasherInput.h b/src/DasherCore/DasherInput.h similarity index 100% rename from Src/DasherCore/DasherInput.h rename to src/DasherCore/DasherInput.h diff --git a/Src/DasherCore/DasherInterfaceBase.cpp b/src/DasherCore/DasherInterfaceBase.cpp similarity index 100% rename from Src/DasherCore/DasherInterfaceBase.cpp rename to src/DasherCore/DasherInterfaceBase.cpp diff --git a/Src/DasherCore/DasherInterfaceBase.h b/src/DasherCore/DasherInterfaceBase.h similarity index 100% rename from Src/DasherCore/DasherInterfaceBase.h rename to src/DasherCore/DasherInterfaceBase.h diff --git a/Src/DasherCore/DasherModel.cpp b/src/DasherCore/DasherModel.cpp similarity index 100% rename from Src/DasherCore/DasherModel.cpp rename to src/DasherCore/DasherModel.cpp diff --git a/Src/DasherCore/DasherModel.h b/src/DasherCore/DasherModel.h similarity index 100% rename from Src/DasherCore/DasherModel.h rename to src/DasherCore/DasherModel.h diff --git a/Src/DasherCore/DasherModule.cpp b/src/DasherCore/DasherModule.cpp similarity index 100% rename from Src/DasherCore/DasherModule.cpp rename to src/DasherCore/DasherModule.cpp diff --git a/Src/DasherCore/DasherModule.h b/src/DasherCore/DasherModule.h similarity index 100% rename from Src/DasherCore/DasherModule.h rename to src/DasherCore/DasherModule.h diff --git a/Src/DasherCore/DasherNode.cpp b/src/DasherCore/DasherNode.cpp similarity index 100% rename from Src/DasherCore/DasherNode.cpp rename to src/DasherCore/DasherNode.cpp diff --git a/Src/DasherCore/DasherNode.h b/src/DasherCore/DasherNode.h similarity index 100% rename from Src/DasherCore/DasherNode.h rename to src/DasherCore/DasherNode.h diff --git a/Src/DasherCore/DasherScreen.h b/src/DasherCore/DasherScreen.h similarity index 100% rename from Src/DasherCore/DasherScreen.h rename to src/DasherCore/DasherScreen.h diff --git a/Src/DasherCore/DasherTypes.cpp b/src/DasherCore/DasherTypes.cpp similarity index 100% rename from Src/DasherCore/DasherTypes.cpp rename to src/DasherCore/DasherTypes.cpp diff --git a/Src/DasherCore/DasherTypes.h b/src/DasherCore/DasherTypes.h similarity index 100% rename from Src/DasherCore/DasherTypes.h rename to src/DasherCore/DasherTypes.h diff --git a/Src/DasherCore/DasherView.cpp b/src/DasherCore/DasherView.cpp similarity index 100% rename from Src/DasherCore/DasherView.cpp rename to src/DasherCore/DasherView.cpp diff --git a/Src/DasherCore/DasherView.h b/src/DasherCore/DasherView.h similarity index 100% rename from Src/DasherCore/DasherView.h rename to src/DasherCore/DasherView.h diff --git a/Src/DasherCore/DasherViewSquare.cpp b/src/DasherCore/DasherViewSquare.cpp similarity index 100% rename from Src/DasherCore/DasherViewSquare.cpp rename to src/DasherCore/DasherViewSquare.cpp diff --git a/Src/DasherCore/DasherViewSquare.h b/src/DasherCore/DasherViewSquare.h similarity index 100% rename from Src/DasherCore/DasherViewSquare.h rename to src/DasherCore/DasherViewSquare.h diff --git a/Src/DasherCore/DefaultFilter.cpp b/src/DasherCore/DefaultFilter.cpp similarity index 100% rename from Src/DasherCore/DefaultFilter.cpp rename to src/DasherCore/DefaultFilter.cpp diff --git a/Src/DasherCore/DefaultFilter.h b/src/DasherCore/DefaultFilter.h similarity index 100% rename from Src/DasherCore/DefaultFilter.h rename to src/DasherCore/DefaultFilter.h diff --git a/Src/DasherCore/DemoFilter.cpp b/src/DasherCore/DemoFilter.cpp similarity index 100% rename from Src/DasherCore/DemoFilter.cpp rename to src/DasherCore/DemoFilter.cpp diff --git a/Src/DasherCore/DemoFilter.h b/src/DasherCore/DemoFilter.h similarity index 100% rename from Src/DasherCore/DemoFilter.h rename to src/DasherCore/DemoFilter.h diff --git a/Src/DasherCore/DynamicButtons.cpp b/src/DasherCore/DynamicButtons.cpp similarity index 100% rename from Src/DasherCore/DynamicButtons.cpp rename to src/DasherCore/DynamicButtons.cpp diff --git a/Src/DasherCore/DynamicButtons.h b/src/DasherCore/DynamicButtons.h similarity index 100% rename from Src/DasherCore/DynamicButtons.h rename to src/DasherCore/DynamicButtons.h diff --git a/Src/DasherCore/DynamicFilter.cpp b/src/DasherCore/DynamicFilter.cpp similarity index 100% rename from Src/DasherCore/DynamicFilter.cpp rename to src/DasherCore/DynamicFilter.cpp diff --git a/Src/DasherCore/DynamicFilter.h b/src/DasherCore/DynamicFilter.h similarity index 100% rename from Src/DasherCore/DynamicFilter.h rename to src/DasherCore/DynamicFilter.h diff --git a/Src/DasherCore/Event.h b/src/DasherCore/Event.h similarity index 100% rename from Src/DasherCore/Event.h rename to src/DasherCore/Event.h diff --git a/Src/DasherCore/ExpansionPolicy.cpp b/src/DasherCore/ExpansionPolicy.cpp similarity index 100% rename from Src/DasherCore/ExpansionPolicy.cpp rename to src/DasherCore/ExpansionPolicy.cpp diff --git a/Src/DasherCore/ExpansionPolicy.h b/src/DasherCore/ExpansionPolicy.h similarity index 100% rename from Src/DasherCore/ExpansionPolicy.h rename to src/DasherCore/ExpansionPolicy.h diff --git a/Src/DasherCore/FileLogger.cpp b/src/DasherCore/FileLogger.cpp similarity index 100% rename from Src/DasherCore/FileLogger.cpp rename to src/DasherCore/FileLogger.cpp diff --git a/Src/DasherCore/FileLogger.h b/src/DasherCore/FileLogger.h similarity index 100% rename from Src/DasherCore/FileLogger.h rename to src/DasherCore/FileLogger.h diff --git a/Src/DasherCore/FileUtils.cpp b/src/DasherCore/FileUtils.cpp similarity index 100% rename from Src/DasherCore/FileUtils.cpp rename to src/DasherCore/FileUtils.cpp diff --git a/Src/DasherCore/FileUtils.h b/src/DasherCore/FileUtils.h similarity index 100% rename from Src/DasherCore/FileUtils.h rename to src/DasherCore/FileUtils.h diff --git a/Src/DasherCore/FileWordGenerator.cpp b/src/DasherCore/FileWordGenerator.cpp similarity index 100% rename from Src/DasherCore/FileWordGenerator.cpp rename to src/DasherCore/FileWordGenerator.cpp diff --git a/Src/DasherCore/FileWordGenerator.h b/src/DasherCore/FileWordGenerator.h similarity index 100% rename from Src/DasherCore/FileWordGenerator.h rename to src/DasherCore/FileWordGenerator.h diff --git a/Src/DasherCore/FrameRate.cpp b/src/DasherCore/FrameRate.cpp similarity index 100% rename from Src/DasherCore/FrameRate.cpp rename to src/DasherCore/FrameRate.cpp diff --git a/Src/DasherCore/FrameRate.h b/src/DasherCore/FrameRate.h similarity index 100% rename from Src/DasherCore/FrameRate.h rename to src/DasherCore/FrameRate.h diff --git a/Src/DasherCore/GameModule.cpp b/src/DasherCore/GameModule.cpp similarity index 100% rename from Src/DasherCore/GameModule.cpp rename to src/DasherCore/GameModule.cpp diff --git a/Src/DasherCore/GameModule.h b/src/DasherCore/GameModule.h similarity index 100% rename from Src/DasherCore/GameModule.h rename to src/DasherCore/GameModule.h diff --git a/Src/DasherCore/GameStatistics.h b/src/DasherCore/GameStatistics.h similarity index 100% rename from Src/DasherCore/GameStatistics.h rename to src/DasherCore/GameStatistics.h diff --git a/Src/DasherCore/InputFilter.h b/src/DasherCore/InputFilter.h similarity index 100% rename from Src/DasherCore/InputFilter.h rename to src/DasherCore/InputFilter.h diff --git a/Src/DasherCore/LanguageModelling/CTWLanguageModel.cpp b/src/DasherCore/LanguageModelling/CTWLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/CTWLanguageModel.cpp rename to src/DasherCore/LanguageModelling/CTWLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/CTWLanguageModel.h b/src/DasherCore/LanguageModelling/CTWLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/CTWLanguageModel.h rename to src/DasherCore/LanguageModelling/CTWLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/DictLanguageModel.cpp b/src/DasherCore/LanguageModelling/DictLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/DictLanguageModel.cpp rename to src/DasherCore/LanguageModelling/DictLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/DictLanguageModel.h b/src/DasherCore/LanguageModelling/DictLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/DictLanguageModel.h rename to src/DasherCore/LanguageModelling/DictLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/HashTable.cpp b/src/DasherCore/LanguageModelling/HashTable.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/HashTable.cpp rename to src/DasherCore/LanguageModelling/HashTable.cpp diff --git a/Src/DasherCore/LanguageModelling/HashTable.h b/src/DasherCore/LanguageModelling/HashTable.h similarity index 100% rename from Src/DasherCore/LanguageModelling/HashTable.h rename to src/DasherCore/LanguageModelling/HashTable.h diff --git a/Src/DasherCore/LanguageModelling/LanguageModel.h b/src/DasherCore/LanguageModelling/LanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/LanguageModel.h rename to src/DasherCore/LanguageModelling/LanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/Makefile.am b/src/DasherCore/LanguageModelling/Makefile.am similarity index 100% rename from Src/DasherCore/LanguageModelling/Makefile.am rename to src/DasherCore/LanguageModelling/Makefile.am diff --git a/Src/DasherCore/LanguageModelling/MixtureLanguageModel.h b/src/DasherCore/LanguageModelling/MixtureLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/MixtureLanguageModel.h rename to src/DasherCore/LanguageModelling/MixtureLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/PPMLanguageModel.cpp b/src/DasherCore/LanguageModelling/PPMLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/PPMLanguageModel.cpp rename to src/DasherCore/LanguageModelling/PPMLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/PPMLanguageModel.h b/src/DasherCore/LanguageModelling/PPMLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/PPMLanguageModel.h rename to src/DasherCore/LanguageModelling/PPMLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/PPMPYLanguageModel.cpp b/src/DasherCore/LanguageModelling/PPMPYLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/PPMPYLanguageModel.cpp rename to src/DasherCore/LanguageModelling/PPMPYLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/PPMPYLanguageModel.h b/src/DasherCore/LanguageModelling/PPMPYLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/PPMPYLanguageModel.h rename to src/DasherCore/LanguageModelling/PPMPYLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.cpp b/src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.cpp rename to src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.h b/src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.h rename to src/DasherCore/LanguageModelling/RoutingPPMLanguageModel.h diff --git a/Src/DasherCore/LanguageModelling/WordLanguageModel.cpp b/src/DasherCore/LanguageModelling/WordLanguageModel.cpp similarity index 100% rename from Src/DasherCore/LanguageModelling/WordLanguageModel.cpp rename to src/DasherCore/LanguageModelling/WordLanguageModel.cpp diff --git a/Src/DasherCore/LanguageModelling/WordLanguageModel.h b/src/DasherCore/LanguageModelling/WordLanguageModel.h similarity index 100% rename from Src/DasherCore/LanguageModelling/WordLanguageModel.h rename to src/DasherCore/LanguageModelling/WordLanguageModel.h diff --git a/Src/DasherCore/MandarinAlphMgr.cpp b/src/DasherCore/MandarinAlphMgr.cpp similarity index 100% rename from Src/DasherCore/MandarinAlphMgr.cpp rename to src/DasherCore/MandarinAlphMgr.cpp diff --git a/Src/DasherCore/MandarinAlphMgr.h b/src/DasherCore/MandarinAlphMgr.h similarity index 100% rename from Src/DasherCore/MandarinAlphMgr.h rename to src/DasherCore/MandarinAlphMgr.h diff --git a/Src/DasherCore/Messages.cpp b/src/DasherCore/Messages.cpp similarity index 100% rename from Src/DasherCore/Messages.cpp rename to src/DasherCore/Messages.cpp diff --git a/Src/DasherCore/Messages.h b/src/DasherCore/Messages.h similarity index 100% rename from Src/DasherCore/Messages.h rename to src/DasherCore/Messages.h diff --git a/Src/DasherCore/ModuleManager.cpp b/src/DasherCore/ModuleManager.cpp similarity index 100% rename from Src/DasherCore/ModuleManager.cpp rename to src/DasherCore/ModuleManager.cpp diff --git a/Src/DasherCore/ModuleManager.h b/src/DasherCore/ModuleManager.h similarity index 100% rename from Src/DasherCore/ModuleManager.h rename to src/DasherCore/ModuleManager.h diff --git a/Src/DasherCore/NodeCreationManager.cpp b/src/DasherCore/NodeCreationManager.cpp similarity index 100% rename from Src/DasherCore/NodeCreationManager.cpp rename to src/DasherCore/NodeCreationManager.cpp diff --git a/Src/DasherCore/NodeCreationManager.h b/src/DasherCore/NodeCreationManager.h similarity index 100% rename from Src/DasherCore/NodeCreationManager.h rename to src/DasherCore/NodeCreationManager.h diff --git a/Src/DasherCore/NodeManager.h b/src/DasherCore/NodeManager.h similarity index 100% rename from Src/DasherCore/NodeManager.h rename to src/DasherCore/NodeManager.h diff --git a/Src/DasherCore/OneButtonDynamicFilter.cpp b/src/DasherCore/OneButtonDynamicFilter.cpp similarity index 100% rename from Src/DasherCore/OneButtonDynamicFilter.cpp rename to src/DasherCore/OneButtonDynamicFilter.cpp diff --git a/Src/DasherCore/OneButtonDynamicFilter.h b/src/DasherCore/OneButtonDynamicFilter.h similarity index 100% rename from Src/DasherCore/OneButtonDynamicFilter.h rename to src/DasherCore/OneButtonDynamicFilter.h diff --git a/Src/DasherCore/OneButtonFilter.cpp b/src/DasherCore/OneButtonFilter.cpp similarity index 100% rename from Src/DasherCore/OneButtonFilter.cpp rename to src/DasherCore/OneButtonFilter.cpp diff --git a/Src/DasherCore/OneButtonFilter.h b/src/DasherCore/OneButtonFilter.h similarity index 100% rename from Src/DasherCore/OneButtonFilter.h rename to src/DasherCore/OneButtonFilter.h diff --git a/Src/DasherCore/OneDimensionalFilter.cpp b/src/DasherCore/OneDimensionalFilter.cpp similarity index 100% rename from Src/DasherCore/OneDimensionalFilter.cpp rename to src/DasherCore/OneDimensionalFilter.cpp diff --git a/Src/DasherCore/OneDimensionalFilter.h b/src/DasherCore/OneDimensionalFilter.h similarity index 100% rename from Src/DasherCore/OneDimensionalFilter.h rename to src/DasherCore/OneDimensionalFilter.h diff --git a/Src/DasherCore/Parameters.cpp b/src/DasherCore/Parameters.cpp similarity index 100% rename from Src/DasherCore/Parameters.cpp rename to src/DasherCore/Parameters.cpp diff --git a/Src/DasherCore/Parameters.h b/src/DasherCore/Parameters.h similarity index 100% rename from Src/DasherCore/Parameters.h rename to src/DasherCore/Parameters.h diff --git a/Src/DasherCore/PressFilter.cpp b/src/DasherCore/PressFilter.cpp similarity index 100% rename from Src/DasherCore/PressFilter.cpp rename to src/DasherCore/PressFilter.cpp diff --git a/Src/DasherCore/PressFilter.h b/src/DasherCore/PressFilter.h similarity index 100% rename from Src/DasherCore/PressFilter.h rename to src/DasherCore/PressFilter.h diff --git a/Src/DasherCore/RoutingAlphMgr.cpp b/src/DasherCore/RoutingAlphMgr.cpp similarity index 100% rename from Src/DasherCore/RoutingAlphMgr.cpp rename to src/DasherCore/RoutingAlphMgr.cpp diff --git a/Src/DasherCore/RoutingAlphMgr.h b/src/DasherCore/RoutingAlphMgr.h similarity index 100% rename from Src/DasherCore/RoutingAlphMgr.h rename to src/DasherCore/RoutingAlphMgr.h diff --git a/Src/DasherCore/SCENode.cpp b/src/DasherCore/SCENode.cpp similarity index 100% rename from Src/DasherCore/SCENode.cpp rename to src/DasherCore/SCENode.cpp diff --git a/Src/DasherCore/SCENode.h b/src/DasherCore/SCENode.h similarity index 100% rename from Src/DasherCore/SCENode.h rename to src/DasherCore/SCENode.h diff --git a/Src/DasherCore/ScreenGameModule.cpp b/src/DasherCore/ScreenGameModule.cpp similarity index 100% rename from Src/DasherCore/ScreenGameModule.cpp rename to src/DasherCore/ScreenGameModule.cpp diff --git a/Src/DasherCore/ScreenGameModule.h b/src/DasherCore/ScreenGameModule.h similarity index 100% rename from Src/DasherCore/ScreenGameModule.h rename to src/DasherCore/ScreenGameModule.h diff --git a/Src/DasherCore/SettingsStore.cpp b/src/DasherCore/SettingsStore.cpp similarity index 100% rename from Src/DasherCore/SettingsStore.cpp rename to src/DasherCore/SettingsStore.cpp diff --git a/Src/DasherCore/SettingsStore.h b/src/DasherCore/SettingsStore.h similarity index 100% rename from Src/DasherCore/SettingsStore.h rename to src/DasherCore/SettingsStore.h diff --git a/Src/DasherCore/SimpleTimer.cpp b/src/DasherCore/SimpleTimer.cpp similarity index 100% rename from Src/DasherCore/SimpleTimer.cpp rename to src/DasherCore/SimpleTimer.cpp diff --git a/Src/DasherCore/SimpleTimer.h b/src/DasherCore/SimpleTimer.h similarity index 100% rename from Src/DasherCore/SimpleTimer.h rename to src/DasherCore/SimpleTimer.h diff --git a/Src/DasherCore/SmoothingFilter.cpp b/src/DasherCore/SmoothingFilter.cpp similarity index 100% rename from Src/DasherCore/SmoothingFilter.cpp rename to src/DasherCore/SmoothingFilter.cpp diff --git a/Src/DasherCore/SmoothingFilter.h b/src/DasherCore/SmoothingFilter.h similarity index 100% rename from Src/DasherCore/SmoothingFilter.h rename to src/DasherCore/SmoothingFilter.h diff --git a/Src/DasherCore/SocketInput.cpp b/src/DasherCore/SocketInput.cpp similarity index 100% rename from Src/DasherCore/SocketInput.cpp rename to src/DasherCore/SocketInput.cpp diff --git a/Src/DasherCore/SocketInput.h b/src/DasherCore/SocketInput.h similarity index 100% rename from Src/DasherCore/SocketInput.h rename to src/DasherCore/SocketInput.h diff --git a/Src/DasherCore/SocketInputBase.cpp b/src/DasherCore/SocketInputBase.cpp similarity index 100% rename from Src/DasherCore/SocketInputBase.cpp rename to src/DasherCore/SocketInputBase.cpp diff --git a/Src/DasherCore/SocketInputBase.h b/src/DasherCore/SocketInputBase.h similarity index 100% rename from Src/DasherCore/SocketInputBase.h rename to src/DasherCore/SocketInputBase.h diff --git a/Src/DasherCore/StartHandler.h b/src/DasherCore/StartHandler.h similarity index 100% rename from Src/DasherCore/StartHandler.h rename to src/DasherCore/StartHandler.h diff --git a/Src/DasherCore/StaticFilter.cpp b/src/DasherCore/StaticFilter.cpp similarity index 100% rename from Src/DasherCore/StaticFilter.cpp rename to src/DasherCore/StaticFilter.cpp diff --git a/Src/DasherCore/StaticFilter.h b/src/DasherCore/StaticFilter.h similarity index 100% rename from Src/DasherCore/StaticFilter.h rename to src/DasherCore/StaticFilter.h diff --git a/Src/DasherCore/StylusFilter.cpp b/src/DasherCore/StylusFilter.cpp similarity index 100% rename from Src/DasherCore/StylusFilter.cpp rename to src/DasherCore/StylusFilter.cpp diff --git a/Src/DasherCore/StylusFilter.h b/src/DasherCore/StylusFilter.h similarity index 100% rename from Src/DasherCore/StylusFilter.h rename to src/DasherCore/StylusFilter.h diff --git a/Src/DasherCore/TimeSpan.cpp b/src/DasherCore/TimeSpan.cpp similarity index 100% rename from Src/DasherCore/TimeSpan.cpp rename to src/DasherCore/TimeSpan.cpp diff --git a/Src/DasherCore/TimeSpan.h b/src/DasherCore/TimeSpan.h similarity index 100% rename from Src/DasherCore/TimeSpan.h rename to src/DasherCore/TimeSpan.h diff --git a/Src/DasherCore/Trainer.cpp b/src/DasherCore/Trainer.cpp similarity index 100% rename from Src/DasherCore/Trainer.cpp rename to src/DasherCore/Trainer.cpp diff --git a/Src/DasherCore/Trainer.h b/src/DasherCore/Trainer.h similarity index 100% rename from Src/DasherCore/Trainer.h rename to src/DasherCore/Trainer.h diff --git a/Src/DasherCore/TwoBoxStartHandler.cpp b/src/DasherCore/TwoBoxStartHandler.cpp similarity index 100% rename from Src/DasherCore/TwoBoxStartHandler.cpp rename to src/DasherCore/TwoBoxStartHandler.cpp diff --git a/Src/DasherCore/TwoBoxStartHandler.h b/src/DasherCore/TwoBoxStartHandler.h similarity index 100% rename from Src/DasherCore/TwoBoxStartHandler.h rename to src/DasherCore/TwoBoxStartHandler.h diff --git a/Src/DasherCore/TwoButtonDynamicFilter.cpp b/src/DasherCore/TwoButtonDynamicFilter.cpp similarity index 100% rename from Src/DasherCore/TwoButtonDynamicFilter.cpp rename to src/DasherCore/TwoButtonDynamicFilter.cpp diff --git a/Src/DasherCore/TwoButtonDynamicFilter.h b/src/DasherCore/TwoButtonDynamicFilter.h similarity index 100% rename from Src/DasherCore/TwoButtonDynamicFilter.h rename to src/DasherCore/TwoButtonDynamicFilter.h diff --git a/Src/DasherCore/TwoPushDynamicFilter.cpp b/src/DasherCore/TwoPushDynamicFilter.cpp similarity index 100% rename from Src/DasherCore/TwoPushDynamicFilter.cpp rename to src/DasherCore/TwoPushDynamicFilter.cpp diff --git a/Src/DasherCore/TwoPushDynamicFilter.h b/src/DasherCore/TwoPushDynamicFilter.h similarity index 100% rename from Src/DasherCore/TwoPushDynamicFilter.h rename to src/DasherCore/TwoPushDynamicFilter.h diff --git a/Src/DasherCore/UserButton.cpp b/src/DasherCore/UserButton.cpp similarity index 100% rename from Src/DasherCore/UserButton.cpp rename to src/DasherCore/UserButton.cpp diff --git a/Src/DasherCore/UserButton.h b/src/DasherCore/UserButton.h similarity index 100% rename from Src/DasherCore/UserButton.h rename to src/DasherCore/UserButton.h diff --git a/Src/DasherCore/UserLocation.cpp b/src/DasherCore/UserLocation.cpp similarity index 100% rename from Src/DasherCore/UserLocation.cpp rename to src/DasherCore/UserLocation.cpp diff --git a/Src/DasherCore/UserLocation.h b/src/DasherCore/UserLocation.h similarity index 100% rename from Src/DasherCore/UserLocation.h rename to src/DasherCore/UserLocation.h diff --git a/Src/DasherCore/UserLog.cpp b/src/DasherCore/UserLog.cpp similarity index 100% rename from Src/DasherCore/UserLog.cpp rename to src/DasherCore/UserLog.cpp diff --git a/Src/DasherCore/UserLog.h b/src/DasherCore/UserLog.h similarity index 100% rename from Src/DasherCore/UserLog.h rename to src/DasherCore/UserLog.h diff --git a/Src/DasherCore/UserLogBase.cpp b/src/DasherCore/UserLogBase.cpp similarity index 100% rename from Src/DasherCore/UserLogBase.cpp rename to src/DasherCore/UserLogBase.cpp diff --git a/Src/DasherCore/UserLogBase.h b/src/DasherCore/UserLogBase.h similarity index 100% rename from Src/DasherCore/UserLogBase.h rename to src/DasherCore/UserLogBase.h diff --git a/Src/DasherCore/UserLogParam.cpp b/src/DasherCore/UserLogParam.cpp similarity index 100% rename from Src/DasherCore/UserLogParam.cpp rename to src/DasherCore/UserLogParam.cpp diff --git a/Src/DasherCore/UserLogParam.h b/src/DasherCore/UserLogParam.h similarity index 100% rename from Src/DasherCore/UserLogParam.h rename to src/DasherCore/UserLogParam.h diff --git a/Src/DasherCore/UserLogTrial.cpp b/src/DasherCore/UserLogTrial.cpp similarity index 100% rename from Src/DasherCore/UserLogTrial.cpp rename to src/DasherCore/UserLogTrial.cpp diff --git a/Src/DasherCore/UserLogTrial.h b/src/DasherCore/UserLogTrial.h similarity index 100% rename from Src/DasherCore/UserLogTrial.h rename to src/DasherCore/UserLogTrial.h diff --git a/Src/DasherCore/WordGeneratorBase.cpp b/src/DasherCore/WordGeneratorBase.cpp similarity index 100% rename from Src/DasherCore/WordGeneratorBase.cpp rename to src/DasherCore/WordGeneratorBase.cpp diff --git a/Src/DasherCore/WordGeneratorBase.h b/src/DasherCore/WordGeneratorBase.h similarity index 100% rename from Src/DasherCore/WordGeneratorBase.h rename to src/DasherCore/WordGeneratorBase.h diff --git a/Src/DasherCore/XMLUtil.cpp b/src/DasherCore/XMLUtil.cpp similarity index 100% rename from Src/DasherCore/XMLUtil.cpp rename to src/DasherCore/XMLUtil.cpp diff --git a/Src/DasherCore/XMLUtil.h b/src/DasherCore/XMLUtil.h similarity index 100% rename from Src/DasherCore/XMLUtil.h rename to src/DasherCore/XMLUtil.h diff --git a/Src/DasherCore/XmlSettingsStore.cpp b/src/DasherCore/XmlSettingsStore.cpp similarity index 100% rename from Src/DasherCore/XmlSettingsStore.cpp rename to src/DasherCore/XmlSettingsStore.cpp diff --git a/Src/DasherCore/XmlSettingsStore.h b/src/DasherCore/XmlSettingsStore.h similarity index 100% rename from Src/DasherCore/XmlSettingsStore.h rename to src/DasherCore/XmlSettingsStore.h