Skip to content

Commit f40989d

Browse files
akinokonomiakinokonomi
andauthored
Use newer name for Mac OS X/OS X -> macOS (#536)
Co-authored-by: akinokonomi <[email protected]>
1 parent fe04e6a commit f40989d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RSS Guard
99

1010
### [Discord server](https://discord.gg/7xbVMPPNqH) | [Downloads](https://github.com/martinrotter/rssguard/releases) | [Development builds](https://github.com/martinrotter/rssguard/releases/tag/devbuild) | [Documentation](https://github.com/martinrotter/rssguard/blob/master/resources/docs/Documentation.md)
1111

12-
RSS Guard is simple RSS/ATOM feed reader for Windows, Linux or Mac OS X which can work with RSS/ATOM/JSON and also supports many online RSS services:
12+
RSS Guard is simple RSS/ATOM feed reader for Windows, Linux or macOS which can work with RSS/ATOM/JSON and also supports many online RSS services:
1313
* [Tiny Tiny RSS](https://tt-rss.org),
1414
* [Inoreader](https://www.inoreader.com) (via Google Reader API plugin),
1515
* [Nextcloud News](https://apps.nextcloud.com/apps/news),

build.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# {FEEDLY,GMAIL,INOREADER}_CLIENT_SECRET - preconfigured OAuth cliend SECRET.
3333
#
3434
# Other information:
35-
# - supports Windows, Linux, Mac OS X, OS/2, Android,
35+
# - supports Windows, Linux, macOS, OS/2, Android,
3636
# - Qt 5.9.0 or higher is required,
3737
# - if you wish to make packages for Windows, then you must initialize all submodules within repository before compilation,
3838
# - C++ 11/17 is required.

resources/docs/Documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ Binary name (interpreter) must be always be specified, while arguments not. Be v
320320

321321
<img alt="alt-img" src="images/scrape-source.png" width="350px">
322322

323-
Note that the above examples are cross-platform and you can use the exact same command on Windows, Linux or Mac OS X, if your operating system is properly configured.
323+
Note that the above examples are cross-platform and you can use the exact same command on Windows, Linux or macOS, if your operating system is properly configured.
324324

325325
RSS Guard offers [placeholder](#userd-plac) `%data%` which is automatically replaced with full path to RSS Guard's [user data folder](#userd), allowing you to make your configuration fully portable. You can, therefore, use something like this as source script line: `bash#%data%/scripts/download-feed.sh`.
326326

resources/scripts/github-actions/build-linux-mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [[ "$os" == *"ubuntu"* ]]; then
88
echo "We are building for GNU/Linux on Ubuntu."
99
is_linux=true
1010
else
11-
echo "We are building for Mac OS X."
11+
echo "We are building for macOS."
1212
is_linux=false
1313
fi
1414

src/librssguard/definitions/definitions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
#elif defined(Q_OS_OS2)
257257
#define OS_ID "OS/2"
258258
#elif defined(Q_OS_OSX)
259-
#define OS_ID "Mac OS X"
259+
#define OS_ID "macOS"
260260
#elif defined(Q_OS_WIN)
261261
#define OS_ID "Windows"
262262
#elif defined(Q_OS_ANDROID)

src/rssguard/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ int main(int argc, char* argv[]) {
3030
QApplication::setDesktopFileName(APP_DESKTOP_ENTRY_FILE);
3131
#endif
3232

33-
// Ensure that ini format is used as application settings storage on Mac OS.
33+
// Ensure that ini format is used as application settings storage on macOS.
3434
QSettings::setDefaultFormat(QSettings::IniFormat);
3535

3636
#if defined(Q_OS_MACOS)

0 commit comments

Comments
 (0)