File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- #pragma once
2- #define BREEZE_VERSION "${VERSION}"
3- #define BREEZE_VERSION_MAJOR ${VERSION_MAJOR}
4- #define BREEZE_VERSION_MINOR ${VERSION_MINOR}
5- #define BREEZE_GIT_COMMIT_HASH "${GIT_COMMIT_HASH}"
6- #define BREEZE_GIT_BRANCH_NAME "${GIT_BRANCH_NAME}"
7- #define BREEZE_BUILD_DATE_TIME "${BUILD_DATE_TIME}"
1+ #pragma once
2+ #define BREEZE_VERSION "${VERSION}"
3+ #define BREEZE_VERSION_MAJOR ${VERSION_MAJOR}
4+ #define BREEZE_VERSION_MINOR ${VERSION_MINOR}
5+ #define BREEZE_GIT_COMMIT_HASH "${GIT_COMMIT_HASH}"
6+ #define BREEZE_GIT_BRANCH_NAME "${GIT_BRANCH_NAME}"
Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ void mb_shell::install_error_handlers() {
104104 sentry_init (options);
105105 sentry_set_tag (" git_commit" , BREEZE_GIT_COMMIT_HASH );
106106 sentry_set_tag (" git_branch" , BREEZE_GIT_BRANCH_NAME );
107- sentry_set_tag (" build_date" , BREEZE_BUILD_DATE_TIME );
108107 sentry_set_tag (" windows_version" ,
109108 mb_shell::is_win11_or_later () ? " 11+" : " 10-" );
110109
Original file line number Diff line number Diff line change @@ -1135,7 +1135,6 @@ template<> struct js_bind<mb_shell::js::breeze> {
11351135 .static_fun <&mb_shell::js::breeze::version>(" version" )
11361136 .static_fun <&mb_shell::js::breeze::hash>(" hash" )
11371137 .static_fun <&mb_shell::js::breeze::branch>(" branch" )
1138- .static_fun <&mb_shell::js::breeze::build_date>(" build_date" )
11391138 .static_fun <&mb_shell::js::breeze::data_directory>(" data_directory" )
11401139 .static_fun <&mb_shell::js::breeze::is_light_theme>(" is_light_theme" )
11411140 .static_fun <&mb_shell::js::breeze::user_language>(" user_language" )
Original file line number Diff line number Diff line change @@ -688,7 +688,6 @@ std::optional<std::string> win32::env(std::string name) {
688688
689689std::string breeze::hash () { return BREEZE_GIT_COMMIT_HASH ; }
690690std::string breeze::branch () { return BREEZE_GIT_BRANCH_NAME ; }
691- std::string breeze::build_date () { return BREEZE_BUILD_DATE_TIME ; }
692691std::vector<std::shared_ptr<mb_shell::js::menu_item_controller>>
693692menu_item_parent_item_controller::children () {
694693 if (!valid ())
Original file line number Diff line number Diff line change @@ -1065,7 +1065,6 @@ export class breeze {
10651065 static version ( ) : string
10661066 static hash ( ) : string
10671067 static branch ( ) : string
1068- static build_date ( ) : string
10691068 static data_directory ( ) : string
10701069 static is_light_theme ( ) : boolean
10711070 static user_language ( ) : string
Original file line number Diff line number Diff line change @@ -627,7 +627,6 @@ struct breeze {
627627 static std::string version ();
628628 static std::string hash ();
629629 static std::string branch ();
630- static std::string build_date ();
631630 static std::string data_directory ();
632631 static bool is_light_theme ();
633632 static std::string user_language ();
You can’t perform that action at this time.
0 commit comments