fix wrong escape in raw string

Tue, 25 Feb 2025 17:51:50 +0100

author
Mike Becker <universe@uap-core.de>
date
Tue, 25 Feb 2025 17:51:50 +0100
changeset 41
19cc90878968
parent 40
845b5ebc91bd
child 42
e0f3d41ae44b

fix wrong escape in raw string

fixes #606

src/html.cpp file | annotate | diff | comparison | revisions
src/main.cpp file | annotate | diff | comparison | revisions
--- a/src/html.cpp	Wed Feb 19 19:13:55 2025 +0100
+++ b/src/html.cpp	Tue Feb 25 17:51:50 2025 +0100
@@ -120,7 +120,7 @@
         </style>
     </head>
     <body>
-        <div class=\"heatmap-content\">)");
+        <div class="heatmap-content">)");
         indentation = 3;
     }
 }
--- a/src/main.cpp	Wed Feb 19 19:13:55 2025 +0100
+++ b/src/main.cpp	Tue Feb 25 17:51:50 2025 +0100
@@ -36,7 +36,7 @@
 
 using namespace std::chrono;
 
-static constexpr auto program_version = "1.0.1";
+static constexpr auto program_version = "1.1.0 (dev)";
 
 static void print_help() {
     fputs(

mercurial