Skip to content

Commit 2c7ff7f

Browse files
committed
And rename the app
1 parent 3fbbd7b commit 2c7ff7f

File tree

10 files changed

+28
-30
lines changed

10 files changed

+28
-30
lines changed

cmake/common/bootstrap.cmake

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ if("${CMAKE_CURRENT_BINARY_DIR}" STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
4141
endif()
4242

4343
# Set default global project variables
44-
set(OBS_COMPANY_NAME "OBS Project")
45-
set(OBS_PRODUCT_NAME "OBS Studio")
46-
set(OBS_WEBSITE "https://www.obsproject.com")
47-
set(OBS_COMMENTS "Free and open source software for video recording and live streaming")
44+
set(OBS_COMPANY_NAME "MOQBS")
45+
set(OBS_PRODUCT_NAME "MOQBS")
46+
set(OBS_WEBSITE "https://moq.dev")
47+
set(OBS_COMMENTS "Media over QUIC broadcasting software")
4848
set(OBS_LEGAL_COPYRIGHT "(C) Lain Bailey")
4949
set(OBS_CMAKE_VERSION 3.0.0)
5050

cmake/macos/helpers.cmake

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function(set_target_properties_obs target)
4343
set_target_properties(
4444
${target}
4545
PROPERTIES
46-
OUTPUT_NAME OBS
46+
OUTPUT_NAME MOQBS
4747
MACOSX_BUNDLE TRUE
4848
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/cmake/macos/Info.plist.in"
4949
XCODE_EMBED_FRAMEWORKS_REMOVE_HEADERS_ON_COPY YES
@@ -54,8 +54,8 @@ function(set_target_properties_obs target)
5454

5555
set_target_xcode_properties(
5656
${target}
57-
PROPERTIES PRODUCT_BUNDLE_IDENTIFIER com.obsproject.obs-studio
58-
PRODUCT_NAME OBS
57+
PROPERTIES PRODUCT_BUNDLE_IDENTIFIER dev.moq.moqbs
58+
PRODUCT_NAME MOQBS
5959
ASSETCATALOG_COMPILER_APPICON_NAME AppIcon
6060
CURRENT_PROJECT_VERSION ${OBS_BUILD_NUMBER}
6161
MARKETING_VERSION ${OBS_VERSION_CANONICAL}
@@ -64,11 +64,11 @@ function(set_target_properties_obs target)
6464
CLANG_ENABLE_OBJC_ARC YES
6565
SKIP_INSTALL NO
6666
INSTALL_PATH "$(LOCAL_APPS_DIR)"
67-
INFOPLIST_KEY_CFBundleDisplayName "OBS Studio"
67+
INFOPLIST_KEY_CFBundleDisplayName "MOQBS"
6868
INFOPLIST_KEY_NSHumanReadableCopyright "(c) 2012-${CURRENT_YEAR} Lain Bailey"
69-
INFOPLIST_KEY_NSCameraUsageDescription "OBS needs to access the camera to enable camera sources to work."
70-
INFOPLIST_KEY_NSMicrophoneUsageDescription "OBS needs to access the microphone to enable audio input."
71-
INFOPLIST_KEY_NSAppleEventsUsageDescription "OBS needs to access background events to enable hotkeys while not in focus."
69+
INFOPLIST_KEY_NSCameraUsageDescription "MOQBS needs to access the camera to enable camera sources to work."
70+
INFOPLIST_KEY_NSMicrophoneUsageDescription "MOQBS needs to access the microphone to enable audio input."
71+
INFOPLIST_KEY_NSAppleEventsUsageDescription "MOQBS needs to access background events to enable hotkeys while not in focus."
7272
)
7373

7474
get_property(obs_dependencies GLOBAL PROPERTY _OBS_DEPENDENCIES)
@@ -224,15 +224,15 @@ function(set_target_properties_obs target)
224224
PROPERTIES DYLIB_COMPATIBILITY_VERSION 1.0
225225
DYLIB_CURRENT_VERSION ${OBS_VERSION_MAJOR}
226226
PRODUCT_NAME ${target}
227-
PRODUCT_BUNDLE_IDENTIFIER com.obsproject.${target}
227+
PRODUCT_BUNDLE_IDENTIFIER dev.moq.${target}
228228
SKIP_INSTALL YES
229229
)
230230

231231
get_target_property(is_framework ${target} FRAMEWORK)
232232
if(is_framework)
233233
set_target_properties(
234234
${target}
235-
PROPERTIES FRAMEWORK_VERSION A MACOSX_FRAMEWORK_IDENTIFIER com.obsproject.${target}
235+
PROPERTIES FRAMEWORK_VERSION A MACOSX_FRAMEWORK_IDENTIFIER dev.moq.${target}
236236
)
237237

238238
set_target_xcode_properties(
@@ -241,7 +241,7 @@ function(set_target_properties_obs target)
241241
DEVELOPMENT_TEAM ""
242242
SKIP_INSTALL YES
243243
PRODUCT_NAME ${target}
244-
PRODUCT_BUNDLE_IDENTIFIER com.obsproject.${target}
244+
PRODUCT_BUNDLE_IDENTIFIER dev.moq.${target}
245245
CURRENT_PROJECT_VERSION ${OBS_BUILD_NUMBER}
246246
MARKETING_VERSION ${OBS_VERSION_CANONICAL}
247247
GENERATE_INFOPLIST_FILE YES
@@ -258,13 +258,13 @@ function(set_target_properties_obs target)
258258
set_target_xcode_properties(
259259
${target}
260260
PROPERTIES PRODUCT_NAME ${target}
261-
PRODUCT_BUNDLE_IDENTIFIER com.obsproject.${target}
261+
PRODUCT_BUNDLE_IDENTIFIER dev.moq.${target}
262262
)
263263
elseif(target STREQUAL obslua)
264264
set_target_xcode_properties(
265265
${target}
266266
PROPERTIES PRODUCT_NAME ${target}
267-
PRODUCT_BUNDLE_IDENTIFIER com.obsproject.${target}
267+
PRODUCT_BUNDLE_IDENTIFIER dev.moq.${target}
268268
)
269269
elseif(target STREQUAL obs-dal-plugin)
270270
set_target_properties(${target} PROPERTIES BUILD_WITH_INSTALL_RPATH TRUE)
@@ -276,7 +276,7 @@ function(set_target_properties_obs target)
276276
set_target_xcode_properties(
277277
${target}
278278
PROPERTIES PRODUCT_NAME ${target}
279-
PRODUCT_BUNDLE_IDENTIFIER com.obsproject.${target}
279+
PRODUCT_BUNDLE_IDENTIFIER dev.moq.${target}
280280
CURRENT_PROJECT_VERSION ${OBS_BUILD_NUMBER}
281281
MARKETING_VERSION ${OBS_VERSION_CANONICAL}
282282
GENERATE_INFOPLIST_FILE YES

frontend/OBSApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ OBSApp::OBSApp(int &argc, char **argv, profiler_name_store_t *store)
915915
setWindowIcon(QIcon::fromTheme("obs", QIcon(":/res/images/obs.png")));
916916
#endif
917917

918-
setDesktopFileName("com.obsproject.Studio");
918+
setDesktopFileName("dev.moq.moqbs");
919919
pluginManager_ = std::make_unique<OBS::PluginManager>();
920920
}
921921

frontend/cmake/linux/com.obsproject.Studio.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Desktop Entry]
22
Version=1.0
3-
Name=OBS Studio
3+
Name=MOQBS
44
GenericName=Streaming/Recording Software
55
Comment=Free and Open Source Streaming/Recording Software
66
Exec=obs

frontend/cmake/linux/com.obsproject.Studio.metainfo.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<launchable type="desktop-id">com.obsproject.Studio.desktop</launchable>
55
<metadata_license>CC0-1.0</metadata_license>
66
<project_license>GPL-2.0-or-later</project_license>
7-
<name>OBS Studio</name>
7+
<name>MOQBS</name>
88
<developer id="com.obsproject">
99
<name>OBS Project</name>
1010
</developer>

frontend/cmake/windows/obs.rc.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ BEGIN
77
BEGIN
88
BLOCK "040904B0"
99
BEGIN
10-
VALUE "CompanyName", "OBS"
11-
VALUE "FileDescription", "OBS Studio"
10+
VALUE "CompanyName", "MOQBS"
11+
VALUE "FileDescription", "MOQBS"
1212
VALUE "FileVersion", "${OBS_VERSION_CANONICAL}"
1313
VALUE "InternalName", "obs"
1414
VALUE "OriginalFilename", "obs"
15-
VALUE "ProductName", "OBS Studio"
15+
VALUE "ProductName", "MOQBS"
1616
VALUE "ProductVersion", "${OBS_VERSION_CANONICAL}"
1717
VALUE "Comments", "Free and open source software for video recording and live streaming"
1818
VALUE "LegalCopyright", "${OBS_LEGAL_COPYRIGHT}"

frontend/obs-main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ int main(int argc, char *argv[])
10231023
exit(0);
10241024

10251025
} else if (arg_is(argv[i], "--version", "-V")) {
1026-
std::cout << "OBS Studio - " << App()->GetVersionString(false) << "\n";
1026+
std::cout << "MOQBS - " << App()->GetVersionString(false) << "\n";
10271027
exit(0);
10281028
}
10291029
}

frontend/widgets/OBSBasic.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2075,9 +2075,7 @@ void OBSBasic::UpdateTitleBar()
20752075
const char *profile = config_get_string(App()->GetUserConfig(), "Basic", "Profile");
20762076
const char *sceneCollection = config_get_string(App()->GetUserConfig(), "Basic", "SceneCollection");
20772077

2078-
name << "OBS ";
2079-
if (previewProgramMode)
2080-
name << "Studio ";
2078+
name << "MOQBS ";
20812079

20822080
name << App()->GetVersionString(false);
20832081
if (safe_mode)

frontend/widgets/OBSBasic_SysTray.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void OBSBasic::SystemTrayInit()
3030
QIcon trayIconFile = QIcon(":/res/images/obs.png");
3131
#endif
3232
trayIcon = new QSystemTrayIcon(QIcon::fromTheme("obs-tray", trayIconFile), this);
33-
trayIcon->setToolTip("OBS Studio");
33+
trayIcon->setToolTip("MOQBS");
3434

3535
showHide = new QAction(QTStr("Basic.SystemTray.Show"), trayIcon.data());
3636
sysTrayStream =
@@ -102,7 +102,7 @@ void OBSBasic::SysTrayNotify(const QString &text, QSystemTrayIcon::MessageIcon n
102102
{
103103
if (trayIcon && trayIcon->isVisible() && QSystemTrayIcon::supportsMessages()) {
104104
QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::MessageIcon(n);
105-
trayIcon->showMessage("OBS Studio", text, icon, 10000);
105+
trayIcon->showMessage("MOQBS", text, icon, 10000);
106106
}
107107
}
108108

libobs/obs-cocoa.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void add_default_module_paths(void)
4646

4747
char *find_libobs_data_file(const char *file)
4848
{
49-
NSBundle *frameworkBundle = [NSBundle bundleWithIdentifier:@"com.obsproject.libobs"];
49+
NSBundle *frameworkBundle = [NSBundle bundleWithIdentifier:@"dev.moq.libobs"];
5050
NSString *libobsDataPath =
5151
[[[frameworkBundle bundleURL] path] stringByAppendingFormat:@"/%@/%s", @"Resources", file];
5252
size_t path_length = strlen(libobsDataPath.UTF8String);

0 commit comments

Comments
 (0)