modules, fixes, ignoring
This commit is contained in:
+34
-13
@@ -1,10 +1,11 @@
|
||||
cmake_minimum_required(VERSION 3.30)
|
||||
project(Toolbox)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 23)
|
||||
set(saucer_no_version_check ON)
|
||||
set(BUILD_SHARED_LIBS OFF)
|
||||
option(BUILD_SHARED_LIBS "Build as shared library" ON)
|
||||
option(BUILD_SHARED_LIBS "Build as shared library" OFF)
|
||||
|
||||
project(Toolbox)
|
||||
|
||||
add_subdirectory(lib/c_tray)
|
||||
add_subdirectory(lib/json)
|
||||
@@ -17,35 +18,55 @@ include_directories(inc)
|
||||
include_directories(lib/json/include/nlohmann)
|
||||
#include_directories(out_embed)
|
||||
|
||||
if(WIN32)
|
||||
if (WIN32)
|
||||
set(RESOURCE_FILES toolbox.rc)
|
||||
endif()
|
||||
endif ()
|
||||
|
||||
# Header-Datei einbinden
|
||||
include_directories(lib/c_tray)
|
||||
|
||||
# Plattformabhängige Einstellungen
|
||||
if(WIN32)
|
||||
if (WIN32)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_windows.c)
|
||||
set(LIBS shell32)
|
||||
elseif(APPLE)
|
||||
elseif (APPLE)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_darwin.m)
|
||||
find_library(COCOA_LIBRARY Cocoa)
|
||||
set(LIBS ${COCOA_LIBRARY})
|
||||
elseif(UNIX)
|
||||
elseif (UNIX)
|
||||
set(PLATFORM_SOURCES lib/c_tray/tray_linux.c)
|
||||
find_package(PkgConfig REQUIRED)
|
||||
pkg_check_modules(APPINDICATOR REQUIRED appindicator3-0.1)
|
||||
include_directories(${APPINDICATOR_INCLUDE_DIRS})
|
||||
set(LIBS ${APPINDICATOR_LIBRARIES})
|
||||
endif()
|
||||
endif ()
|
||||
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp" "inc/*.h")
|
||||
add_executable(Toolbox main.cpp ${SOURCES} ${RESOURCE_FILES} ${PLATFORM_SOURCES})
|
||||
file(GLOB_RECURSE SOURCES "src/*.cpp" "inc/*.h") # Nur für .cpp und .h
|
||||
file(GLOB_RECURSE MODULE_SOURCES "module/*.ixx") # Separates GLOB für Module
|
||||
|
||||
add_executable(Toolbox main.cpp
|
||||
${SOURCES}
|
||||
${RESOURCE_FILES}
|
||||
${PLATFORM_SOURCES}
|
||||
)
|
||||
|
||||
target_sources(Toolbox
|
||||
PUBLIC
|
||||
FILE_SET cxx_modules TYPE CXX_MODULES
|
||||
FILES ${MODULE_SOURCES}
|
||||
)
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PRIVATE "out_embed")
|
||||
target_link_libraries(Toolbox PRIVATE saucer::saucer sol2::sol2 lua tray nlohmann_json cppcodec)
|
||||
target_link_libraries(Toolbox
|
||||
PRIVATE
|
||||
saucer::saucer
|
||||
sol2::sol2
|
||||
lua
|
||||
tray
|
||||
nlohmann_json
|
||||
cppcodec
|
||||
)
|
||||
|
||||
if(WIN32 AND (CMAKE_BUILD_TYPE STREQUAL "Release" OR CMAKE_BUILD_TYPE STREQUAL "MinSizeRel"))
|
||||
if (WIN32 AND (CMAKE_BUILD_TYPE STREQUAL "Release" OR CMAKE_BUILD_TYPE STREQUAL "MinSizeRel"))
|
||||
set_target_properties(Toolbox PROPERTIES WIN32_EXECUTABLE TRUE)
|
||||
endif()
|
||||
endif ()
|
||||
+8
-2
@@ -20,14 +20,16 @@ public:
|
||||
// Für die Fensterinitialisierung
|
||||
void initialize();
|
||||
|
||||
void OptionWindow();
|
||||
void setupToolboxWindow();
|
||||
|
||||
std::atomic_bool isIndex = true;
|
||||
|
||||
struct ToolboxItem{
|
||||
std::string id;
|
||||
std::string name;
|
||||
std::string path;
|
||||
std::string icon;
|
||||
std::string lua_script;
|
||||
std::string lua_script_path_string;
|
||||
std::string description;
|
||||
std::string category;
|
||||
std::string version;
|
||||
@@ -53,6 +55,10 @@ private:
|
||||
std::filesystem::path userPath = std::getenv("HOME"); // Unix/Linux/MacOS
|
||||
#endif
|
||||
|
||||
void startThreadMonitor();
|
||||
|
||||
bool serveHtmlFile(const std::string &htmlPath, bool setDecorations);
|
||||
|
||||
void configureWindow();
|
||||
void loadResources();
|
||||
void runLuaScript();
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
#include <saucer/app.hpp>
|
||||
#include "toolboxWindow.h"
|
||||
#include "toolboxTray.h"
|
||||
#include "resource.h"
|
||||
#include "tray.h"
|
||||
|
||||
import toolboxTray;
|
||||
|
||||
ToolboxWindow* g_toolboxWindow = nullptr;
|
||||
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
export module toolboxTray;
|
||||
|
||||
#include <functional>
|
||||
#include "tray.h"
|
||||
|
||||
|
||||
export
|
||||
class toolboxTray : public tray {
|
||||
public:
|
||||
// Konstruktor mit optionalen Parametern für Icon und Tooltip
|
||||
toolboxTray(const char* icon = nullptr, const char* tooltip = nullptr) {
|
||||
this->icon = icon;
|
||||
this->tooltip = const_cast<char*>(tooltip);
|
||||
this->menu = nullptr; // Initialisiere ohne Menü (kann später gesetzt werden)
|
||||
}
|
||||
|
||||
// Funktion, um die gewünschte Aktion für den Linksklick zu setzen
|
||||
void setLeftClickAction(const std::function<void()>& action) {
|
||||
leftClickAction = action;
|
||||
}
|
||||
|
||||
// Funktion zum Setzen des Tray-Menüs
|
||||
void setTrayMenu(tray_menu* menu) {
|
||||
this->menu = menu;
|
||||
}
|
||||
|
||||
// Ereignis-Handler für Mausklicks
|
||||
void handleMouseClick(int button) {
|
||||
if (button == LEFT_CLICK && leftClickAction) {
|
||||
// Führt die Linksklick-Aktion aus
|
||||
leftClickAction();
|
||||
} else if (button == RIGHT_CLICK) {
|
||||
// Zeigt das Menü
|
||||
showMenu();
|
||||
}
|
||||
}
|
||||
|
||||
enum MouseButton {
|
||||
LEFT_CLICK = 0,
|
||||
RIGHT_CLICK = 1
|
||||
};
|
||||
|
||||
private:
|
||||
std::function<void()> leftClickAction; // Aktion für Linksklick
|
||||
|
||||
// Zeigt das Menü an (Rechtsklick)
|
||||
void showMenu() {
|
||||
if (this->menu) {
|
||||
tray_update(this); // Update des Trays mit dem Menü
|
||||
}
|
||||
}
|
||||
};
|
||||
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 285> fIMvMxLtCtgaCyOWT9Sq2cpZQFAUlr60fpjd781IKV2QwoDk = {
|
||||
0x3c, 0x61, 0x20, 0x68, 0x72, 0x65, 0x66, 0x3d, 0x22, 0x23, 0x22, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x63, 0x61, 0x72, 0x64, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x69, 0x6d, 0x67, 0x20, 0x73, 0x72, 0x63, 0x3d, 0x22, 0x7b, 0x7b, 0x69, 0x6d, 0x67, 0x53, 0x72, 0x63, 0x7d, 0x7d, 0x22, 0x20, 0x61, 0x6c, 0x74, 0x3d, 0x22, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x69, 0x6e, 0x66, 0x6f, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x68, 0x33, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x7d, 0x7d, 0x3c, 0x2f, 0x68, 0x33, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x70, 0x3e, 0x7b, 0x7b, 0x74, 0x6f, 0x6f, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x7d, 0x3c, 0x2f, 0x70, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x64, 0x69, 0x76, 0x20, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x3d, 0x22, 0x74, 0x6f, 0x6f, 0x6c, 0x2d, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x20, 0x20, 0x3c, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x20, 0x6f, 0x6e, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x3d, 0x22, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x28, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x29, 0x22, 0x3e, 0x7b, 0x7b, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x7d, 0x7d, 0x3c, 0x2f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x3e, 0xd, 0xa, 0x20, 0x20, 0x3c, 0x2f, 0x64, 0x69, 0x76, 0x3e, 0xd, 0xa, 0x3c, 0x2f, 0x61, 0x3e, 0xd, 0xa };
|
||||
} // namespace saucer::embedded
|
||||
-1112
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 518> fAozejtuXFOLAx7y6v7duQ2EGLLXpuz7ViX1sshROYvwnILiPV0eCBDX5JrQg1axoC83pRnnmcN = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0xd, 0xa, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x72, 0x3d, 0x7b, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0xd, 0xa, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0xd, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0xd, 0xa, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xd, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x72, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xd, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 328> figYaDWrRHYVRE8uCZrYmxVCtU8xiNIN0xsNmbrN7QFGlXlfNI2fyIJsby0cD86kRNNGXzrk6JQB = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x76, 0x61, 0x72, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xd, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xd, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x20, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x20, 0x68, 0x6c, 0x6a, 0x73, 0x47, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 20> f7OPm7vIuBp2CQunSckZbTM7TWMkL8Kp7Ww7R3u1jcdq48HfhWZvP04VK21lq7K = {
|
||||
0x7b, 0x20, 0x22, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x22, 0x20, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 523> f9WyAbPBHunlngqbuiIzAC3zsDdFbI2XIThko3QkMxWuidWEKkrjwnkFVEknHSgMe7VfI1b = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x6a, 0x73, 0x6f, 0x6e, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x65, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x65, 0x3d, 0x3e, 0x7b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x20, 0x61, 0x3d, 0x5b, 0x22, 0x74, 0x72, 0x75, 0x65, 0x22, 0x2c, 0x22, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x22, 0x2c, 0x22, 0x6e, 0x75, 0x6c, 0x6c, 0x22, 0x5d, 0x2c, 0x73, 0x3d, 0x7b, 0xd, 0xa, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x3a, 0x22, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x22, 0x2c, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x61, 0x2e, 0x6a, 0x6f, 0x69, 0x6e, 0x28, 0x22, 0x20, 0x22, 0x29, 0x7d, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x4a, 0x53, 0x4f, 0x4e, 0x22, 0x2c, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x22, 0x5d, 0x2c, 0xd, 0xa, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x3a, 0x7b, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x3a, 0x61, 0x7d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x61, 0x74, 0x74, 0x72, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x22, 0x28, 0x5c, 0x5c, 0x2e, 0x7c, 0x5b, 0x5e, 0x5c, 0x5c, 0x22, 0x5c, 0x72, 0x5c, 0x6e, 0x5d, 0x29, 0x2a, 0x22, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x3a, 0x29, 0x2f, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x31, 0x2e, 0x30, 0x31, 0x7d, 0x2c, 0x7b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x3a, 0x2f, 0x5b, 0x7b, 0x7d, 0x5b, 0x5c, 0x5d, 0x2c, 0x3a, 0x5d, 0x2f, 0x2c, 0xd, 0xa, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x70, 0x75, 0x6e, 0x63, 0x74, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0x72, 0x65, 0x6c, 0x65, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x30, 0xd, 0xa, 0x7d, 0x2c, 0x65, 0x2e, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x73, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x2c, 0x65, 0x2e, 0x43, 0x5f, 0x42, 0x4c, 0x4f, 0x43, 0x4b, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5d, 0x2c, 0xd, 0xa, 0x69, 0x6c, 0x6c, 0x65, 0x67, 0x61, 0x6c, 0x3a, 0x22, 0x5c, 0x5c, 0x53, 0x22, 0x7d, 0x7d, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x6a, 0x73, 0x6f, 0x6e, 0x22, 0x2c, 0x65, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 334> fdM8RmRybyXVNAvEYAwOY5oVTsI4PyUTUIefGgARSnnuCJB5BhVtinOy4aRKyDiuFE4r1zZz = {
|
||||
0x2f, 0x2a, 0x21, 0x20, 0x60, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x60, 0x20, 0x67, 0x72, 0x61, 0x6d, 0x6d, 0x61, 0x72, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x48, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x6a, 0x73, 0x20, 0x31, 0x31, 0x2e, 0x31, 0x30, 0x2e, 0x30, 0x20, 0x2a, 0x2f, 0xd, 0xa, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x76, 0x61, 0x72, 0x20, 0x73, 0x3d, 0x28, 0x28, 0x29, 0x3d, 0x3e, 0x7b, 0x22, 0x75, 0x73, 0x65, 0x20, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x22, 0x3b, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x20, 0x73, 0x3d, 0x3e, 0x28, 0x7b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x53, 0x68, 0x65, 0x6c, 0x6c, 0x20, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x2c, 0xd, 0xa, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x65, 0x73, 0x3a, 0x5b, 0x22, 0x63, 0x6f, 0x6e, 0x73, 0x6f, 0x6c, 0x65, 0x22, 0x2c, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x5d, 0x2c, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x5b, 0x7b, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0x22, 0x6d, 0x65, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x2c, 0xd, 0xa, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x3a, 0x2f, 0x5e, 0x5c, 0x73, 0x7b, 0x30, 0x2c, 0x33, 0x7d, 0x5b, 0x2f, 0x7e, 0x5c, 0x77, 0x5c, 0x64, 0x5b, 0x5c, 0x5d, 0x28, 0x29, 0x40, 0x2d, 0x5d, 0x2a, 0x5b, 0x3e, 0x25, 0x24, 0x23, 0x5d, 0x5b, 0x20, 0x5d, 0x3f, 0x2f, 0x2c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x73, 0x3a, 0x7b, 0x65, 0x6e, 0x64, 0x3a, 0x2f, 0x5b, 0x5e, 0x5c, 0x5c, 0x5d, 0x28, 0x3f, 0x3d, 0x5c, 0x73, 0x2a, 0x24, 0x29, 0x2f, 0x2c, 0xd, 0xa, 0x73, 0x75, 0x62, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x3a, 0x22, 0x62, 0x61, 0x73, 0x68, 0x22, 0x7d, 0x7d, 0x5d, 0x7d, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b, 0x68, 0x6c, 0x6a, 0x73, 0x2e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x28, 0x22, 0x73, 0x68, 0x65, 0x6c, 0x6c, 0x22, 0x2c, 0x73, 0x29, 0x7d, 0x29, 0x28, 0x29, 0x3b };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 611> fojilm7xNwRcxFdhECfLlduVz6Dklcc4ZUb13bs8qeDuDjNERR8McKkkdN1nJY9Orql2zqoFt3pmUjNz = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x39, 0x62, 0x37, 0x63, 0x36, 0x3b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x32, 0x38, 0x32, 0x62, 0x32, 0x65, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x38, 0x39, 0x37, 0x62, 0x62, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x63, 0x63, 0x37, 0x38, 0x33, 0x32, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x32, 0x39, 0x37, 0x35, 0x35, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x67, 0x72, 0x65, 0x79, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x62, 0x62, 0x62, 0x35, 0x32, 0x39, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x61, 0x38, 0x37, 0x35, 0x39, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x63, 0x36, 0x36, 0x64, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x69, 0x64, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x65, 0x38, 0x62, 0x66, 0x36, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 673> fYf7WVKUDpdTzsIByLsdRRDqFTtopAfSz2ygwQKNpbRNB5LbB937IIsDC8p0X5SPgC7H = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x32, 0x32, 0x32, 0x3b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x61, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x75, 0x62, 0x73, 0x74, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x61, 0x61, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x66, 0x66, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x34, 0x34, 0x34, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x72, 0x65, 0x67, 0x65, 0x78, 0x70, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x66, 0x63, 0x33, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x63, 0x36, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x69, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x74, 0x65, 0x72, 0x61, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x33, 0x32, 0x61, 0x61, 0x65, 0x65, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x69, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x36, 0x34, 0x61, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x62, 0x31, 0x36, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x6f, 0x63, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 672> f8OUOpBG2Ne4qHVWvj17c82rpDXNRtNbXBrRpviee6e3Bt3mEo8zLNy1hrmkv9DPYup = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x20, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x20, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x31, 0x65, 0x6d, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x20, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2f, 0x2a, 0xd, 0xa, 0xd, 0xa, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x20, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x6d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x20, 0x28, 0x63, 0x29, 0x20, 0x49, 0x76, 0x61, 0x6e, 0x20, 0x53, 0x61, 0x67, 0x61, 0x6c, 0x61, 0x65, 0x76, 0x20, 0x3c, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x40, 0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65, 0x4d, 0x61, 0x6e, 0x69, 0x61, 0x63, 0x73, 0x2e, 0x4f, 0x72, 0x67, 0x3e, 0xd, 0xa, 0xd, 0xa, 0x2a, 0x2f, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x20, 0x77, 0x68, 0x69, 0x74, 0x65, 0x3b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x38, 0x38, 0x38, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x20, 0x23, 0x63, 0x63, 0x63, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x2c, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x20, 0x62, 0x6f, 0x6c, 0x64, 0xd, 0xa, 0x7d, 0xd, 0xa, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x20, 0x7b, 0xd, 0xa, 0x20, 0x20, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x20, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0xd, 0xa, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
@@ -1,10 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace saucer::embedded
|
||||
{
|
||||
static constexpr std::array<std::uint8_t, 454> fdM8RmRybyXVNAvEYAwOY5oVTsI4PyUTUIefGgARSnoBPHM9xVIMzR4FZrARKNA5b5YVwDhr = {
|
||||
0x70, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x3a, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x3b, 0x6f, 0x76, 0x65, 0x72, 0x66, 0x6c, 0x6f, 0x77, 0x2d, 0x78, 0x3a, 0x61, 0x75, 0x74, 0x6f, 0x3b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x31, 0x65, 0x6d, 0x7d, 0x63, 0x6f, 0x64, 0x65, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x3a, 0x33, 0x70, 0x78, 0x20, 0x35, 0x70, 0x78, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x7b, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x3a, 0x23, 0x66, 0x66, 0x66, 0x3b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x30, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x62, 0x75, 0x6c, 0x6c, 0x65, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6c, 0x69, 0x6e, 0x6b, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x38, 0x38, 0x38, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6d, 0x65, 0x74, 0x61, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x71, 0x75, 0x6f, 0x74, 0x65, 0x7b, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x3a, 0x23, 0x63, 0x63, 0x63, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x6e, 0x61, 0x6d, 0x65, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2d, 0x74, 0x61, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x73, 0x74, 0x72, 0x6f, 0x6e, 0x67, 0x2c, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x3a, 0x37, 0x30, 0x30, 0x7d, 0x2e, 0x68, 0x6c, 0x6a, 0x73, 0x2d, 0x65, 0x6d, 0x70, 0x68, 0x61, 0x73, 0x69, 0x73, 0x7b, 0x66, 0x6f, 0x6e, 0x74, 0x2d, 0x73, 0x74, 0x79, 0x6c, 0x65, 0x3a, 0x69, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x7d };
|
||||
} // namespace saucer::embedded
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user