Projects
Multimedia
obs-studio
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 101
View file
obs-studio.changes
Changed
@@ -1,4 +1,18 @@ ------------------------------------------------------------------- +Mon Nov 14 19:02:30 UTC 2022 - Hans-Peter Jansen <hpj@urpla.net> + +- Exclude any requires from %{_libs}/{obs-plugins,obs-scripting} + libraries as well + +------------------------------------------------------------------- +Fri Nov 11 12:40:22 UTC 2022 - hpj@urpla.net + +- Update to version 28.1.2: + * UI: Fix always on top not being saved on exit + * libobs: Update to 28.1.2 + * obs-browser: Update version to 2.18.7 + +------------------------------------------------------------------- Wed Nov 9 08:20:06 UTC 2022 - Hans-Peter Jansen <hpj@urpla.net> - Exclude any auto provides from %{_libs}/{obs-plugins,obs-scripting}
View file
obs-studio.spec
Changed
@@ -8,7 +8,7 @@ %endif Name: obs-studio -Version: 28.1.1 +Version: 28.1.2 Release: 0 Summary: A recording/broadcasting program Group: Productivity/Multimedia/Video/Editors and Convertors @@ -75,6 +75,8 @@ # these are plugins, built as libs and as such should not be mixed up with their originals %global __provides_exclude_from ^(%{_libdir}/obs-plugins/.*\\.so.*|%{_libdir}/obs-scripting/.*\\.so.*)$ +%global __requires_exclude_from ^(%{_libdir}/obs-plugins/.*|%{_libdir}/obs-scripting/.*)$ +%global __requires_exclude ^libcef\\.so$ %description Open Broadcaster Software is free and open source software for video recording and live streaming.
View file
_service
Changed
@@ -1,7 +1,7 @@ <services> <service name="tar_scm" mode="disabled"> <param name="versionformat">@PARENT_TAG@</param> - <param name="revision">refs/tags/28.1.1</param> + <param name="revision">refs/tags/28.1.2</param> <param name="url">https://github.com/obsproject/obs-studio.git</param> <param name="scm">git</param> <param name="changesgenerate">enable</param>
View file
_servicedata
Changed
@@ -1,6 +1,6 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/obsproject/obs-studio.git</param> - <param name="changesrevision">a1235f498ea7edf85f4f4fefcec00a7f7fdfd1aa</param> + <param name="changesrevision">c1841e43b04e662ae3be146ce10596eb7be866fa</param> </service> </servicedata> \ No newline at end of file
View file
obs-studio-28.1.1.tar.xz/UI/window-basic-main.cpp -> obs-studio-28.1.2.tar.xz/UI/window-basic-main.cpp
Changed
@@ -2701,12 +2701,10 @@ OBS_BETA_VER); #endif - bool alwaysOnTop = IsAlwaysOnTop(this); - config_set_bool(App()->GlobalConfig(), "BasicWindow", "PreviewEnabled", previewEnabled); config_set_bool(App()->GlobalConfig(), "BasicWindow", "AlwaysOnTop", - alwaysOnTop); + ui->actionAlwaysOnTop->isChecked()); config_set_bool(App()->GlobalConfig(), "BasicWindow", "SceneDuplicationMode", sceneDuplicationMode); config_set_bool(App()->GlobalConfig(), "BasicWindow", "SwapScenesMode",
View file
obs-studio-28.1.1.tar.xz/libobs/obs-config.h -> obs-studio-28.1.2.tar.xz/libobs/obs-config.h
Changed
@@ -41,7 +41,7 @@ * * Reset to zero each major or minor version */ -#define LIBOBS_API_PATCH_VER 1 +#define LIBOBS_API_PATCH_VER 2 #define MAKE_SEMANTIC_VERSION(major, minor, patch) \ ((major << 24) | (minor << 16) | patch)
View file
obs-studio-28.1.1.tar.xz/plugins/obs-browser/browser-client.cpp -> obs-studio-28.1.2.tar.xz/plugins/obs-browser/browser-client.cpp
Changed
@@ -695,8 +695,12 @@ return false; } - blog(errorLevel, "obs-browser: '%s' %s: %s (%s:%d)", - obs_source_get_name(bs->source), code, message.ToString().c_str(), - source.ToString().c_str(), line); + const char *sourceName = "<unknown>"; + + if (bs && bs->source) + sourceName = obs_source_get_name(bs->source); + + blog(errorLevel, "obs-browser: '%s' %s: %s (%s:%d)", sourceName, code, + message.ToString().c_str(), source.ToString().c_str(), line); return false; }
View file
obs-studio-28.1.1.tar.xz/plugins/obs-browser/browser-version.h -> obs-studio-28.1.2.tar.xz/plugins/obs-browser/browser-version.h
Changed
@@ -2,7 +2,7 @@ #define OBS_BROWSER_VERSION_MAJOR 2 #define OBS_BROWSER_VERSION_MINOR 18 -#define OBS_BROWSER_VERSION_PATCH 6 +#define OBS_BROWSER_VERSION_PATCH 7 #ifndef MAKE_SEMANTIC_VERSION #define MAKE_SEMANTIC_VERSION(major, minor, patch) \
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.