diff --git a/resources/docs/Documentation.md b/resources/docs/Documentation.md index 85e39b60e..ce9cfd698 100644 --- a/resources/docs/Documentation.md +++ b/resources/docs/Documentation.md @@ -48,7 +48,7 @@ RSS Guard is a cross-platform application, and at this point it is known to work * Windows 7+ * GNU/Linux (including PinePhone and other Linux-based phone operating systems) * BSD (FreeBSD, OpenBSD, NetBSD, etc.) -* macOS 10.10+ +* macOS 10.13+ * OS/2 (ArcaOS, eComStation) ## Major Features diff --git a/src/librssguard/CMakeLists.txt b/src/librssguard/CMakeLists.txt index b95c3bbc0..d6f57f79b 100644 --- a/src/librssguard/CMakeLists.txt +++ b/src/librssguard/CMakeLists.txt @@ -645,8 +645,8 @@ if(UNIX AND NOT APPLE AND NOT ANDROID) endif() if(APPLE) - target_compile_options(rssguard PUBLIC -mmacosx-version-min=10.8) - target_link_options(rssguard PUBLIC -mmacosx-version-min=10.8) + target_compile_options(rssguard PUBLIC -mmacosx-version-min=10.13) + target_link_options(rssguard PUBLIC -mmacosx-version-min=10.13) target_link_libraries(rssguard PUBLIC "-framework AppKit" )