Skip to content
This repository was archived by the owner on Feb 7, 2026. It is now read-only.

Commit 90e0b95

Browse files
committed
preparation before to bump to v0.0.3
1 parent fc279fc commit 90e0b95

File tree

11 files changed

+109
-193
lines changed

11 files changed

+109
-193
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Production-ready C++ starter focused on fast iteration, keyboard‑driven workfl
99
> Quick start: `Shift+F7` → "🦸 Zero to Hero" (configure, build, test, package). Then use `F7` (rebuild) and `F5` (debug).
1010
1111
[YouTube Video DotNameCpp QuickStart](https://www.youtube.com/watch?v=0WoN8i8f7-o)
12-
[YouTube Video DotNameCpp C++ Structure](https://www.youtube.com/watch?v=24snI1QVlIA)
1312
[Discord](https://discord.gg/4vkSjvvqSW)
1413

1514
Born from DotNameCpp [DotNameIndex](https://digitalspace.name/dotnameindex/DotNameIndexStandalone.html)

include/DotNameLib/DotNameLib.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#pragma once
22

3-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
4-
53
#include <DotNameLib/version.h> // first configuration will create this file
64
#include <filesystem>
75
#include <string>
@@ -39,4 +37,6 @@ namespace dotname {
3937
};
4038

4139
} // namespace v1
42-
} // namespace dotname
40+
} // namespace dotname
41+
42+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

src/Assets/AssetContext.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
2-
31
#include "AssetContext.hpp"
42
#include <vector>
53

@@ -50,4 +48,6 @@ namespace AssetContext {
5048
// Fallback to first candidate if none found
5149
return candidatePaths[0];
5250
}
53-
}
51+
}
52+
53+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

src/Assets/AssetContext.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#pragma once
22

3-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
4-
53
#include <filesystem>
64

75
namespace AssetContext {
@@ -11,3 +9,5 @@ namespace AssetContext {
119
std::filesystem::path findAssetsPath (const std::filesystem::path& executablePath,
1210
const std::string& appName);
1311
}
12+
13+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

src/DotNameLib.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
2-
31
#include <DotNameLib/DotNameLib.hpp>
42
#include <Assets/AssetContext.hpp>
53
#include <Logger/Logger.hpp>
@@ -27,7 +25,7 @@ namespace dotname {
2725
assetsPath_ = assetsPath;
2826
AssetContext::setAssetsPath (assetsPath);
2927
LOG_D_STREAM << "Assets: " << AssetContext::getAssetsPath () << "\n";
30-
LOG_I_STREAM << DotNameUtils::JsonUtils::getCustomStringSign () << "\n";
28+
LOG_I_STREAM << DotNameUtils::json::getCustomStringSign () << "\n";
3129

3230
// Check if logo file exists before trying to open it
3331
const auto logoPath = AssetContext::getAssetsPath () / "DotNameCppLogo.svg";
@@ -78,4 +76,6 @@ namespace dotname {
7876
}
7977

8078
} // namespace v1
81-
} // namespace dotname
79+
} // namespace dotname
80+
81+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

src/Logger/Logger.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
2-
31
#include "Logger.hpp"
2+
3+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

src/Logger/Logger.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#pragma once
22

3-
// MIT License Copyright (c) 2024-2025 Tomáš Mark
4-
53
#include <chrono>
64
#include <fstream>
75
#include <iomanip>
@@ -404,3 +402,5 @@ class Logger {
404402
#define LOG_E_FMT(format, ...) Logger::getInstance().logFmtMessage(Logger::Level::LOG_ERROR, format, FUNCTION_NAME, __VA_ARGS__)
405403
#define LOG_C_FMT(format, ...) Logger::getInstance().logFmtMessage(Logger::Level::LOG_CRITICAL, format, FUNCTION_NAME, __VA_ARGS__)
406404
// clang-format on
405+
406+
// MIT License Copyright (c) 2024-2025 Tomáš Mark

0 commit comments

Comments
 (0)