Rename Mac OS X to macOS in code and documents

This commit is contained in:
SeongTae Jeong
2020-08-13 04:24:15 +09:00
committed by Manuel
parent 69eec2b602
commit 7f7c9e40ec
6 changed files with 10 additions and 10 deletions

View File

@@ -236,7 +236,7 @@ databases.
Before compiling make sure you have the necessary SQLCipher development files
installed. On Linux this can usually be accomplished by just installing the
correct package (e.g. 'libsqlcipher-dev' on Debian-based distributions). On
MacOS X the easiest way is to install it via Homebrew ('brew install
macOS the easiest way is to install it via Homebrew ('brew install
sqlcipher'). On Windows unfortunately it's a bit more difficult: You'll have
to download and compile the code as described on the
[SQLCipher website](https://www.zetetic.net/sqlcipher/) before you can proceed.

View File

@@ -358,7 +358,7 @@ else()
set(LPTHREAD pthread)
endif(WIN32)
#enable version check for MacOS
#enable version check for macOS
if(APPLE)
add_definitions(-DCHECKNEWVERSION)
endif(APPLE)

View File

@@ -61,17 +61,17 @@ Download Windows releases here:
(e.g. gives an error), try a nightly build. Nightly builds often fix bugs
reported after the last release. :D
## MacOS X / macOS
## macOS
DB Browser for SQLite works well on MacOS X / macOS.
DB Browser for SQLite works well on macOS.
* OSX 10.12 (Sierra) - 10.15 (Catalina) are tested and known to work
* macOS 10.12 (Sierra) - 10.15 (Catalina) are tested and known to work
Download OSX releases here:
Download macOS releases here:
* https://sqlitebrowser.org/dl/#macos
The latest OSX binary can be installed via [Homebrew Cask](https://caskroom.github.io/ "Homebrew Cask"):
The latest macOS binary can be installed via [Homebrew Cask](https://caskroom.github.io/ "Homebrew Cask"):
```
brew cask install db-browser-for-sqlite

View File

@@ -386,7 +386,7 @@ void EditDialog::importData(bool asLink)
OpenDataFile,
this,
tr("Choose a file to import")
#ifndef Q_OS_MAC // Filters on OS X are buggy
#ifndef Q_OS_MAC // Filters on macOS are buggy
, filters.join(";;")
, &selectedFilter
#endif

View File

@@ -268,7 +268,7 @@ QVariant Settings::getDefaultValue(const std::string& group, const std::string&
// editor/fontsize or log/fontsize?
if((group == "editor" || group == "log") && name == "fontsize")
#ifdef Q_OS_MAC
// Use 12 pt size as the default on OSX
// Use 12 pt size as the default on macOS
return 12;
#else
return 9;

View File

@@ -20,7 +20,7 @@ Compilation instructions:
Compile this C source file into a dynamic library as follows:
* Linux:
gcc -fPIC -lm -shared extension-functions.c -o libsqlitefunctions.so
* Mac OS X:
* macOS:
gcc -fno-common -dynamiclib extension-functions.c -o libsqlitefunctions.dylib
(You may need to add flags
-I /opt/local/include/ -L/opt/local/lib -lsqlite3