Skip to content

Commit b26734a

Browse files
authored
Merge pull request #3 from moq-dev/add-logo
Add logo and rename the app
2 parents c54c9f9 + 2c7ff7f commit b26734a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+76
-393
lines changed
22.7 KB
Binary file not shown.

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

cmake/macos/resources/AppIcon.icns

-3.32 MB
Binary file not shown.

docs/sphinx/favicon.ico

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)