File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ set(obs-browser_HEADERS
5353 shared/browser-settings.hpp
5454 shared/browser-types.h
5555 shared/base64.hpp
56- shared/browser-types.h)
56+ shared/browser-types.h
57+ shared/browser-version .h)
5758
5859if (APPLE )
5960 list (APPEND obs-browser_SOURCES
Original file line number Diff line number Diff line change 1717
1818#include < obs-module.h>
1919
20+ #include " browser-version.h"
2021#include " browser-manager.hpp"
2122
2223OBS_DECLARE_MODULE ()
@@ -27,13 +28,16 @@ struct obs_source_info browser_source_info;
2728
2829bool obs_module_load (void )
2930{
31+ blog (LOG_INFO, " [browser_source: 'Version: %s']" , OBS_BROWSER_VERSION);
32+
3033 browser_source_info = create_browser_source_info ();
3134
3235 BrowserManager::Instance ()->SetModulePath (
3336 obs_get_module_binary_path (obs_current_module ()));
3437
3538 BrowserManager::Instance ()->Startup ();
3639 obs_register_source (&browser_source_info);
40+
3741 return true ;
3842}
3943
Original file line number Diff line number Diff line change 1+ #pragma once
2+
3+ #define OBS_BROWSER_VERSION "1.24.0"
You can’t perform that action at this time.
0 commit comments