Skip to content

Commit

Permalink
index file alt text change
Browse files Browse the repository at this point in the history
  • Loading branch information
William C Bonner committed Oct 9, 2023
1 parent 4294ed3 commit 7126dd3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ if (POLICY CMP0141)
endif()

project (GoveeBTTempLogger
VERSION 2.20231009.1
VERSION 2.20231009.2
DESCRIPTION "Listen and log Govee Thermometer Bluetooth Low Energy Advertisments"
HOMEPAGE_URL https://github.com/wcbonner/GoveeBTTempLogger
)
Expand Down
8 changes: 4 additions & 4 deletions goveebttemplogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1921,10 +1921,10 @@ void WriteSVGIndex(const std::filesystem::path LogDirectory, const std::filesyst
std::cout << "[" << getTimeISO8601() << "] Writing:";
for (auto ssBTAddress = files.begin(); ssBTAddress != files.end(); ssBTAddress++)
{
SVGIndexFile << "\t<div class=\"image\"><img alt=\"Graph\" src=\"gvh-" << *ssBTAddress << "-day.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"Graph\" src=\"gvh-" << *ssBTAddress << "-week.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"Graph\" src=\"gvh-" << *ssBTAddress << "-month.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"Graph\" src=\"gvh-" << *ssBTAddress << "-year.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"" << *ssBTAddress << "\" src=\"gvh-" << *ssBTAddress << "-day.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"" << *ssBTAddress << "\" src=\"gvh-" << *ssBTAddress << "-week.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"" << *ssBTAddress << "\" src=\"gvh-" << *ssBTAddress << "-month.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << "\t<div class=\"image\"><img alt=\"" << *ssBTAddress << "\" src=\"gvh-" << *ssBTAddress << "-year.svg\" width=\"500\" height=\"135\"></div>" << std::endl;
SVGIndexFile << std::endl;
if (ConsoleVerbosity > 0)
std::cout << " " << *ssBTAddress;
Expand Down

0 comments on commit 7126dd3

Please sign in to comment.