Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
7f676314 by wurstsalat at 2026-01-08T20:47:03+01:00
cq: Fix macOS name (lowercase)
- - - - -
6 changed files:
- .github/workflows/gajim-macos-nightly-build.yml
- .github/workflows/gajim-macos-release-build.yml
- gajim/common/util/app.py
- gajim/gtk/application.py
- mac/README.md
- mac/gajim-macos-helper.sh
Changes:
=====================================
.github/workflows/gajim-macos-nightly-build.yml
=====================================
@@ -1,4 +1,4 @@
-name: Gajim MacOS Nightly Build
+name: Gajim macOS Nightly Build
on:
workflow_dispatch:
=====================================
.github/workflows/gajim-macos-release-build.yml
=====================================
@@ -1,4 +1,4 @@
-name: Gajim MacOS Release Build
+name: Gajim macOS Release Build
on:
workflow_dispatch:
=====================================
gajim/common/util/app.py
=====================================
@@ -21,7 +21,7 @@ def get_extended_app_version() -> str:
elif sys.platform == "win32":
package = "Windows"
elif sys.platform == "darwin":
- package = "MacOS"
+ package = "macOS"
else:
package = "Unix/Linux"
=====================================
gajim/gtk/application.py
=====================================
@@ -220,7 +220,7 @@ def _get_remaining_entry():
def _startup(self) -> None:
if sys.platform in ("win32", "darwin"):
- # Changing the PANGOCAIRO_BACKEND is necessary on Windows/MacOS
+ # Changing the PANGOCAIRO_BACKEND is necessary on Windows/macOS
# to render colored emoji glyphs
os.environ["PANGOCAIRO_BACKEND"] = "fontconfig"
=====================================
mac/README.md
=====================================
@@ -1,12 +1,12 @@
-# Build Gajim on MacOS
+# Build Gajim on macOS
-To build omemo-dr, nbxmpp and Gajim on MacOS, you can follow [the wiki
page](https://dev.gajim.org/gajim/gajim/-/wikis/help/Gajim-on-macOS).
+To build omemo-dr, nbxmpp and Gajim on macOS, you can follow [the wiki
page](https://dev.gajim.org/gajim/gajim/-/wikis/help/Gajim-on-macOS).
But in this directory we also provide a Bash script (`gajim-macos-helper.sh`)
to help creating virtual environments for omemo-dr, nbxmpp and Gajim in Mac OS,
build it, start it from the virtual environment, and also create a `.dmg`
bundle.
## Requirements for this script
-You just need [Brew](https://brew.sh) (follow instructions on the website) and
Bash (installed by default on MacOS), the script will install and do the rest.
+You just need [Brew](https://brew.sh) (follow instructions on the website) and
Bash (installed by default on macOS), the script will install and do the rest.
## Usage
=====================================
mac/gajim-macos-helper.sh
=====================================
@@ -19,7 +19,7 @@
# - To build (or rebuild) a new version of Gajim: ./gajim-macos-helper.sh
build ci 2.4.1
# - To create a dmg file: ./gajim-macos-helper.sh create-dmg ci 2.4.1
#
-# Note: Bash on MacOS is stuck in version 3.2, so we avoid using recent things
in this script
+# Note: Bash on macOS is stuck in version 3.2, so we avoid using recent things
in this script
set -e
@@ -238,7 +238,7 @@ function main()
function usage()
{
cat <<- EOS
- $1: MacOS Helper to build virtual environments and start Gajim
+ $1: macOS Helper to build virtual environments and start Gajim
build Build omemo-dr, nbxmpp and Gajim
virtual environments
create-dmg Create Gajim dmg bundle
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7f676314bf44a9c6c79e9bb0305301fb1ff7798d
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7f676314bf44a9c6c79e9bb0305301fb1ff7798d
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]