Changes of Revision 101
obs-studio.changes
Changed
x
1
2
-------------------------------------------------------------------
3
+Mon Nov 14 19:02:30 UTC 2022 - Hans-Peter Jansen <hpj@urpla.net>
4
+
5
+- Exclude any requires from %{_libs}/{obs-plugins,obs-scripting}
6
+ libraries as well
7
+
8
+-------------------------------------------------------------------
9
+Fri Nov 11 12:40:22 UTC 2022 - hpj@urpla.net
10
+
11
+- Update to version 28.1.2:
12
+ * UI: Fix always on top not being saved on exit
13
+ * libobs: Update to 28.1.2
14
+ * obs-browser: Update version to 2.18.7
15
+
16
+-------------------------------------------------------------------
17
Wed Nov 9 08:20:06 UTC 2022 - Hans-Peter Jansen <hpj@urpla.net>
18
19
- Exclude any auto provides from %{_libs}/{obs-plugins,obs-scripting}
20
obs-studio.spec
Changed
19
1
2
%endif
3
4
Name: obs-studio
5
-Version: 28.1.1
6
+Version: 28.1.2
7
Release: 0
8
Summary: A recording/broadcasting program
9
Group: Productivity/Multimedia/Video/Editors and Convertors
10
11
12
# these are plugins, built as libs and as such should not be mixed up with their originals
13
%global __provides_exclude_from ^(%{_libdir}/obs-plugins/.*\\.so.*|%{_libdir}/obs-scripting/.*\\.so.*)$
14
+%global __requires_exclude_from ^(%{_libdir}/obs-plugins/.*|%{_libdir}/obs-scripting/.*)$
15
+%global __requires_exclude ^libcef\\.so$
16
17
%description
18
Open Broadcaster Software is free and open source software for video recording and live streaming.
19
_service
Changed
10
1
2
<services>
3
<service name="tar_scm" mode="disabled">
4
<param name="versionformat">@PARENT_TAG@</param>
5
- <param name="revision">refs/tags/28.1.1</param>
6
+ <param name="revision">refs/tags/28.1.2</param>
7
<param name="url">https://github.com/obsproject/obs-studio.git</param>
8
<param name="scm">git</param>
9
<param name="changesgenerate">enable</param>
10
_servicedata
Changed
10
1
2
<servicedata>
3
<service name="tar_scm">
4
<param name="url">https://github.com/obsproject/obs-studio.git</param>
5
- <param name="changesrevision">a1235f498ea7edf85f4f4fefcec00a7f7fdfd1aa</param>
6
+ <param name="changesrevision">c1841e43b04e662ae3be146ce10596eb7be866fa</param>
7
</service>
8
</servicedata>
9
\ No newline at end of file
10
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
15
1
2
OBS_BETA_VER);
3
#endif
4
5
- bool alwaysOnTop = IsAlwaysOnTop(this);
6
-
7
config_set_bool(App()->GlobalConfig(), "BasicWindow", "PreviewEnabled",
8
previewEnabled);
9
config_set_bool(App()->GlobalConfig(), "BasicWindow", "AlwaysOnTop",
10
- alwaysOnTop);
11
+ ui->actionAlwaysOnTop->isChecked());
12
config_set_bool(App()->GlobalConfig(), "BasicWindow",
13
"SceneDuplicationMode", sceneDuplicationMode);
14
config_set_bool(App()->GlobalConfig(), "BasicWindow", "SwapScenesMode",
15
obs-studio-28.1.1.tar.xz/libobs/obs-config.h -> obs-studio-28.1.2.tar.xz/libobs/obs-config.h
Changed
10
1
2
*
3
* Reset to zero each major or minor version
4
*/
5
-#define LIBOBS_API_PATCH_VER 1
6
+#define LIBOBS_API_PATCH_VER 2
7
8
#define MAKE_SEMANTIC_VERSION(major, minor, patch) \
9
((major << 24) | (minor << 16) | patch)
10
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
17
1
2
return false;
3
}
4
5
- blog(errorLevel, "obs-browser: '%s' %s: %s (%s:%d)",
6
- obs_source_get_name(bs->source), code, message.ToString().c_str(),
7
- source.ToString().c_str(), line);
8
+ const char *sourceName = "<unknown>";
9
+
10
+ if (bs && bs->source)
11
+ sourceName = obs_source_get_name(bs->source);
12
+
13
+ blog(errorLevel, "obs-browser: '%s' %s: %s (%s:%d)", sourceName, code,
14
+ message.ToString().c_str(), source.ToString().c_str(), line);
15
return false;
16
}
17
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
10
1
2
3
#define OBS_BROWSER_VERSION_MAJOR 2
4
#define OBS_BROWSER_VERSION_MINOR 18
5
-#define OBS_BROWSER_VERSION_PATCH 6
6
+#define OBS_BROWSER_VERSION_PATCH 7
7
8
#ifndef MAKE_SEMANTIC_VERSION
9
#define MAKE_SEMANTIC_VERSION(major, minor, patch) \
10