Questions tagged [macos-monterey]

Released in 2021, macOS Monterey (version 12.4) is the eighteenth major release of Apple's operating system for Macintosh computers. Use this tag for questions relating to macOS APIs that are specific to this version, and also tag your question with [macos]. DO NOT use this tag simply because you are running code on this operating system.

This is a tag for a specific version of macOS. See for details.

475 questions
2
votes
2 answers

Error log about wrong font while I create JLabel on Mac

When I create a new JLabel, I get the following error log in the console: Warning: the fonts "Times" and "Times" are not available for the Java logical font "Serif", which may have unexpected appearance or behavior. Re-enable the "Times" font to…
Christoph S.
  • 585
  • 3
  • 16
2
votes
2 answers

Access forbidden to folders in /Users/user/ on Monterey

I am trying to setup nginx on an Apple silicon mac with MacOs Monterey. Nginx has been installed with brew If I edit the config file (/opt/homebrew/etc/nginx/nginx.conf) to set a new root directory, it works if I point it at a folder that is not…
colmjude
  • 194
  • 1
  • 8
2
votes
1 answer

UIMenuController crashes on macOS Monterey

My iOS app uses UIMenuController to show the Copy/Paste context menu. When I launch the app on macOS 12.0 and control-click (right click) with the mouse or the trackpad, the app crashes upon showing the menu with this crash log: Application Specific…
Vladimir Grigorov
  • 10,903
  • 8
  • 60
  • 70
2
votes
1 answer

Setting environment variables osx 12.0.1

I need some help to set environment variables on osX 12.0.1. I tried to edit .bash_profile (it doesnt exist), .zprofile and also a pllist approach. What irritates me, is that % env is not working in Terminal. Any hints for a newbee? Any help…
knickedom
  • 61
  • 1
  • 5
2
votes
0 answers

Cannot browse white icons in Mac OS Monterey

When I try to browser my white icons with transparent backgrounds, I get this: Finder adds it's own white backgrounds behind my icons. It makes my design work impossible. Similair threads have been made in the past, where the chosen solution was to…
Ben Viatte
  • 485
  • 1
  • 5
  • 16
2
votes
0 answers

Typing the 'e' key brings the emoji menu

I have an Air app that is basically a wrapper for my swf RIA. On the Mac, since updating to MacOS 12 (Monterey) today, typing the letter 'e' in any textbox /rich text box field brings the Emoji menu instead. In a similar way, 'd' brings the…
2
votes
1 answer

Updating to Ruby 3.0.x with Rails: symbol not found in flat namespace '_RHASH_EMPTY_P'

Having issues upgrading my rails project on my M1 Mac related to Debase not compiling due to symbol not found in flat namespace '_RHASH_EMPTY_P' OS: Monterey 12.0.1 Machine: Mac mini (m1, 2020) Ruby version: 3.0.2 Rails: 6.1.4.1 I've tried removing…
Josh Mathews
  • 198
  • 1
  • 15
2
votes
0 answers

clang-10: error: linker command failed with exit code 1 (use -v to see invocation) compiling cython

Since I upgraded macOS to Monterey, I couldn’t compile the Cython file with this command: python setup.py build_ext --inplace. I’m getting this error: ld: unsupported tapi file type '!tapi-tbd' in YAML file…
shiva
  • 31
  • 3
2
votes
0 answers

Debian Docker on Mac M1Pro Monterey: cannot open shared object file: No such file or directory

I have a Docker container, that runs the redis:6 image, which builds FROM debian:bullseye-slim. When starting the redis server, I load a shared object file as a module, called redisearch.so. On my new Mac M1Pro Monterey this fails, telling me the…
Deef
  • 51
  • 4
2
votes
1 answer

Unable to install TensorFlow with miniconda on macOS Monterey

I tried to install tensorflow following this issue: https://github.com/apple/tensorflow_macos/issues/153 Although for M1 Monterey the wheel is not working and showing the following error. pip install --upgrade --force --no-dependencies…
Red
  • 299
  • 1
  • 4
  • 16
2
votes
0 answers

After upgrading to macOS Monterey my Vagrant environment will not launch due to VirtualBox

I am relatively new to coding having completed a bootcamp. After upgrading my MacBook Air to macOS Monterey my Vagrant environment gives me the following error related to VirtualBox after typing vagrant up. There was an error while executing…
joe
  • 21
  • 3
2
votes
0 answers

MacOS quick action or service automator in context menu NOT quick actions context sub-menu

I've created an automator "quick action" job, that's the only way that I know I can add a custom menu line when I right click on files or folders. This script work only with pdf files and launch a bash script. Everything works but I'm going nuts…
SimoneM
  • 303
  • 1
  • 9
2
votes
1 answer

macOS: Intents Extension for Shortcuts opens main app and does not run for itself

I am trying to create an Intents Extension for macOS 12 Monterey. What I've done: I've created an Intents Definition file and configured a Custom Intent I've created a Handler class that confirms to my Handling protocol that has been created by…
Daniel
  • 1,473
  • 3
  • 33
  • 63
2
votes
1 answer

macOS version returned as 10.16 instead of 12.0

I am running an application built using C++ on new macOS 12 Monterey beta. The application is built using macOS SDK 10.9 which is quite old. The Problem: There is a code to fetch the platform version, where i parse the content of…
santosh
  • 61
  • 7
2
votes
2 answers

On macOS Monterey, cannot create shortcut actions with Catalyst

We are trying to create shortcut actions with Catalyst. Our app is already available on Mac, and we previously integrated the intents framework on iOS. So according to the WWDC21 "Meet Shortcuts on macOS" presentation, "it's likely that [we] have…