diff --git a/direct/src/dist/commands.py b/direct/src/dist/commands.py
index b67ece1755..b1d8422836 100644
--- a/direct/src/dist/commands.py
+++ b/direct/src/dist/commands.py
@@ -41,9 +41,8 @@ if sys.version_info < (3, 0):
# Warn the user. They might be using Python 2 by accident.
print("=================================================================")
- print("WARNING: You are using Python 2, which will soon be discontinued.")
- print("WARNING: Please use Python 3 for best results and continued")
- print("WARNING: support after the EOL date of December 31st, 2019.")
+ print("WARNING: You are using Python 2, which has reached the end of its")
+ print("WARNING: life as of January 1, 2020. Please upgrade to Python 3.")
print("=================================================================")
sys.stdout.flush()
time.sleep(4.0)
diff --git a/doc/ReleaseNotes b/doc/ReleaseNotes
index 56b4b0d49d..a89062a341 100644
--- a/doc/ReleaseNotes
+++ b/doc/ReleaseNotes
@@ -1,3 +1,64 @@
+------------------------ RELEASE 1.10.5 -----------------------
+
+This is a recommended bugfix release, especially for macOS users.
+
+* Fix DPI scaling issue in macOS 10.15 "Catalina" (#794)
+* Fix crash on macOS Catalina without "Input Monitoring" permission (#795)
+* macOS installer now installs to /Library/Developer/Panda3D (#760)
+* macOS thirdparty packages are now linked with libc++ (#584)
+* Homebrew Python should now locate Panda libraries correctly (#755)
+* Work around Tk bug cancelling Load Params in Particle Panel on macOS (#811)
+* Fix NaN assertions when particles get very large positions (#822)
+* Add support for Autodesk Maya 2020
+* Fix maya2egg erroring when running from a pip installation (#709)
+* Support .pz and .gz compressed models in deployment system
+* Support implicit namespace packages in deployment system (#778)
+* Fix error with distutils package when deploying in a "virtualenv" env (#747)
+* Fix "NameError: name 'mdef' is not defined" error when deploying (#721)
+* Deployment system now strips weird -psn_* argument passed to macOS GUI apps
+* Fix custom loader hooks sometimes not working with Actor (#750)
+* Fix defaults for package_data_dirs in deployment system (#779)
+* Fix issues with adding icons to deployed executable (#718)
+* Add PNMImage.quantize() that palettizes using median cut algorithm
+* Fix stereo and MRT FBO rendering in OpenGL ES (#815)
+* RTM_copy_ram mode is now fixed for multiview textures in OpenGL
+* Fix OpenGL multisample FBO issue with 16-bit float buffer (#756)
+* Fix DirectX 9 crash when resizing vertex buffer in certain ways (#824)
+* Workaround for infinite loop in Triangulator for certain polygons (#737)
+* Fix dcparser issue with unpacking uint64 and int64 (#751)
+* Fix ability to compile dcparser outside of the Panda3D codebase (#759)
+* Fix all direct.stdpy.threading2 threads behaving daemonically (#758)
+* direct.stdpy.threading2.Thread instances provide daemon and name properties
+* Workaround for Tkinter crash on Windows when resizing window (#586)
+* Fix possible stack overflow when reading many bytes from a stream (#754)
+* Fix mouse confinement region on Windows not updating on window resize (#727)
+* Fix mouse confinement being lost on Windows when window loses focus (#729)
+* Support adjusting particle birth offset time (#769)
+* Support building against OpenEXR 2.4 on Windows (#799)
+* Fix ability to pass a tuple to loader.loadModel
+* Fix an issue in interrogate with generating C bindings (#722)
+* Fix a variety of ABI compatibility issues with NDEBUG builds
+* Fix static linking of harfbuzz and freetype in makepanda
+* Fix ability to specify --python-incdir and -libdir to makepanda on macOS
+* `ls()` and `bam-info -ls` now list included animations
+* Fix white ambient color when loading PBR materials from .bam/cache (#828)
+* Fix inconsistent behavior when passing small values to shader inputs (#827)
+* Fix very rare NVIDIA driver crash when mixing GLSL and Cg shaders
+* Fix issue passing unicode to DirectScrolledList (#752)
+* Fix interrogate parser issue with function-like macro expansion
+* Interrogate now finds types nested in explicitly specialized template class
+* Improve performance reading all data from a file with direct.stdpy.file
+* PandaSystem now records whether libc++ or libstdc++ was used on macOS
+* makepanda.bat now builds against Python 3.7 by default
+* Many improvements to API documentation
+* pandac/input/*.in interrogatedb files are now included in .whl builds
+* Fix division exception in ServerRepository (#762)
+* Fix ShaderBuffer contexts not being cleared at GSG destruction
+* Fix DirectOptionMenu item text scale reset on item unhighlight (#768)
+* Python particle classes now have snake-case aliases
+* Fix crash printing out cached buffer contexts
+* Rudimentary, experimental, low-level handling of digitizer input devices
+
------------------------ RELEASE 1.10.4.1 ---------------------
This release fixes only one critical regression: calling destroy()
diff --git a/makepanda/makepackage.py b/makepanda/makepackage.py
index 2e383538d6..395cbbb467 100755
--- a/makepanda/makepackage.py
+++ b/makepanda/makepackage.py
@@ -112,6 +112,18 @@ flatsize: INSTSIZEMB
deps: {DEPENDS}
"""
+# Since we're adding a bunch of install scripts to the macOS intaller, we'll
+# put the platform-checking code in some variables to reduce repetition.
+MACOS_SCRIPT_PREFIX = \
+"""#!/bin/bash
+IFS=.
+read -a version_info <<< "`sw_vers -productVersion`'"
+if (( ${version_info[1]} < 15 )); then
+"""
+
+MACOS_SCRIPT_POSTFIX = \
+"""fi
+"""
def MakeInstallerNSIS(version, file, title, installdir, compressor="lzma", **kwargs):
outputdir = GetOutputDir()
@@ -364,9 +376,12 @@ def MakeInstallerLinux(version, debversion=None, rpmrelease=1,
exit("To build an installer, either rpmbuild or dpkg-deb must be present on your system!")
-def MakeInstallerOSX(version, python_versions=[], **kwargs):
+def MakeInstallerOSX(version, python_versions=[], installdir=None, **kwargs):
outputdir = GetOutputDir()
+ if installdir is None:
+ installdir = "/Library/Developer/Panda3D"
+
dmg_name = "Panda3D-" + version
if len(python_versions) == 1 and not python_versions[0]["version"].startswith("2."):
dmg_name += "-py" + python_versions[0]["version"]
@@ -376,40 +391,38 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
if (os.path.exists("dstroot")): oscmd("rm -rf dstroot")
if (os.path.exists("Panda3D-rw.dmg")): oscmd('rm -f Panda3D-rw.dmg')
- oscmd("mkdir -p dstroot/base/Developer/Panda3D/lib")
- oscmd("mkdir -p dstroot/base/Developer/Panda3D/etc")
- oscmd("cp %s/etc/Config.prc dstroot/base/Developer/Panda3D/etc/Config.prc" % outputdir)
- oscmd("cp %s/etc/Confauto.prc dstroot/base/Developer/Panda3D/etc/Confauto.prc" % outputdir)
- oscmd("cp -R %s/models dstroot/base/Developer/Panda3D/models" % outputdir)
- oscmd("cp -R doc/LICENSE dstroot/base/Developer/Panda3D/LICENSE")
- oscmd("cp -R doc/ReleaseNotes dstroot/base/Developer/Panda3D/ReleaseNotes")
- oscmd("cp -R %s/Frameworks dstroot/base/Developer/Panda3D/Frameworks" % outputdir)
+ oscmd("mkdir -p dstroot/base/%s/lib" % installdir)
+ oscmd("mkdir -p dstroot/base/%s/etc" % installdir)
+ oscmd("cp %s/etc/Config.prc dstroot/base/%s/etc/Config.prc" % (outputdir, installdir))
+ oscmd("cp %s/etc/Confauto.prc dstroot/base/%s/etc/Confauto.prc" % (outputdir, installdir))
+ oscmd("cp -R %s/models dstroot/base/%s/models" % (outputdir, installdir))
+ oscmd("cp -R doc/LICENSE dstroot/base/%s/LICENSE" % installdir)
+ oscmd("cp -R doc/ReleaseNotes dstroot/base/%s/ReleaseNotes" % installdir)
+ oscmd("cp -R %s/Frameworks dstroot/base/%s/Frameworks" % (outputdir, installdir))
if os.path.isdir(outputdir+"/plugins"):
- oscmd("cp -R %s/plugins dstroot/base/Developer/Panda3D/plugins" % outputdir)
+ oscmd("cp -R %s/plugins dstroot/base/%s/plugins" % (outputdir, installdir))
# Libraries that shouldn't be in base, but are instead in other modules.
no_base_libs = ['libp3ffmpeg', 'libp3fmod_audio', 'libfmodex', 'libfmodexL']
for base in os.listdir(outputdir+"/lib"):
if not base.endswith(".a") and base.split('.')[0] not in no_base_libs:
- libname = "dstroot/base/Developer/Panda3D/lib/" + base
+ libname = ("dstroot/base/%s/lib/" % installdir) + base
# We really need to specify -R in order not to follow symlinks
# On OSX, just specifying -P is not enough to do that.
oscmd("cp -R -P " + outputdir + "/lib/" + base + " " + libname)
- oscmd("mkdir -p dstroot/tools/Developer/Panda3D/bin")
- oscmd("mkdir -p dstroot/tools/Developer/Tools")
- oscmd("ln -s ../Panda3D/bin dstroot/tools/Developer/Tools/Panda3D")
+ oscmd("mkdir -p dstroot/tools/%s/bin" % installdir)
oscmd("mkdir -p dstroot/tools/etc/paths.d")
# Trailing newline is important, works around a bug in OSX
- WriteFile("dstroot/tools/etc/paths.d/Panda3D", "/Developer/Panda3D/bin\n")
+ WriteFile("dstroot/tools/etc/paths.d/Panda3D", "/%s/bin\n" % installdir)
oscmd("mkdir -m 0755 -p dstroot/tools/usr/local/share/man/man1")
oscmd("install -m 0644 doc/man/*.1 dstroot/tools/usr/local/share/man/man1/")
for base in os.listdir(outputdir+"/bin"):
if not base.startswith("deploy-stub"):
- binname = "dstroot/tools/Developer/Panda3D/bin/" + base
+ binname = ("dstroot/tools/%s/bin/" % installdir) + base
# OSX needs the -R argument to copy symbolic links correctly, it doesn't have -d. How weird.
oscmd("cp -R " + outputdir + "/bin/" + base + " " + binname)
@@ -419,72 +432,72 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
oscmd("mkdir -p dstroot/pythoncode/usr/local/bin")
oscmd("ln -s %s dstroot/pythoncode/usr/local/bin/ppython" % (python_versions[0]["executable"]))
- oscmd("mkdir -p dstroot/pythoncode/Developer/Panda3D/panda3d")
- oscmd("cp -R %s/pandac dstroot/pythoncode/Developer/Panda3D/pandac" % outputdir)
- oscmd("cp -R %s/direct dstroot/pythoncode/Developer/Panda3D/direct" % outputdir)
- oscmd("cp -R %s/*.so dstroot/pythoncode/Developer/Panda3D/" % outputdir, True)
- oscmd("cp -R %s/*.py dstroot/pythoncode/Developer/Panda3D/" % outputdir, True)
+ oscmd("mkdir -p dstroot/pythoncode/%s/panda3d" % installdir)
+ oscmd("cp -R %s/pandac dstroot/pythoncode/%s/pandac" % (outputdir, installdir))
+ oscmd("cp -R %s/direct dstroot/pythoncode/%s/direct" % (outputdir, installdir))
+ oscmd("cp -R %s/*.so dstroot/pythoncode/%s/" % (outputdir, installdir), True)
+ oscmd("cp -R %s/*.py dstroot/pythoncode/%s/" % (outputdir, installdir), True)
if os.path.isdir(outputdir+"/Pmw"):
- oscmd("cp -R %s/Pmw dstroot/pythoncode/Developer/Panda3D/Pmw" % outputdir)
+ oscmd("cp -R %s/Pmw dstroot/pythoncode/%s/Pmw" % (outputdir, installdir))
# Copy over panda3d.dist-info directory.
if os.path.isdir(outputdir + "/panda3d.dist-info"):
- oscmd("cp -R %s/panda3d.dist-info dstroot/pythoncode/Developer/Panda3D/panda3d.dist-info" % (outputdir))
+ oscmd("cp -R %s/panda3d.dist-info dstroot/pythoncode/%s/panda3d.dist-info" % (outputdir, installdir))
for base in os.listdir(outputdir+"/panda3d"):
if base.endswith('.py'):
- libname = "dstroot/pythoncode/Developer/Panda3D/panda3d/" + base
+ libname = ("dstroot/pythoncode/%s/panda3d/" % installdir) + base
oscmd("cp -R " + outputdir + "/panda3d/" + base + " " + libname)
for version_info in python_versions:
pyver = version_info["version"]
oscmd("mkdir -p dstroot/pybindings%s/Library/Python/%s/site-packages" % (pyver, pyver))
- oscmd("mkdir -p dstroot/pybindings%s/Developer/Panda3D/panda3d" % (pyver))
+ oscmd("mkdir -p dstroot/pybindings%s/%s/panda3d" % (pyver, installdir))
# Copy over extension modules.
suffix = version_info["ext_suffix"]
for base in os.listdir(outputdir+"/panda3d"):
if base.endswith(suffix) and '.' not in base[:-len(suffix)]:
- libname = "dstroot/pybindings%s/Developer/Panda3D/panda3d/%s" % (pyver, base)
+ libname = "dstroot/pybindings%s/%s/panda3d/%s" % (pyver, installdir, base)
# We really need to specify -R in order not to follow symlinks
# On OSX, just specifying -P is not enough to do that.
oscmd("cp -R -P " + outputdir + "/panda3d/" + base + " " + libname)
# Write a .pth file.
oscmd("mkdir -p dstroot/pybindings%s/Library/Python/%s/site-packages" % (pyver, pyver))
- WriteFile("dstroot/pybindings%s/Library/Python/%s/site-packages/Panda3D.pth" % (pyver, pyver), "/Developer/Panda3D")
+ WriteFile("dstroot/pybindings%s/Library/Python/%s/site-packages/Panda3D.pth" % (pyver, pyver), installdir)
# Somewhere in Python 2.7.13 and 3.7, the above path was removed from
# sys.path of the python.org distribution. See bpo-28440 and GH #502.
if pyver not in ("3.0", "3.1", "3.2", "3.3", "3.4", "3.5", "3.6"):
dir = "dstroot/pybindings%s/Library/Frameworks/Python.framework/Versions/%s/lib/python%s/site-packages" % (pyver, pyver, pyver)
oscmd("mkdir -p %s" % (dir))
- WriteFile("%s/Panda3D.pth" % (dir), "/Developer/Panda3D")
+ WriteFile("%s/Panda3D.pth" % (dir), installdir)
# Also place it somewhere the Homebrew version of Python can find it.
dir = "dstroot/pybindings%s/usr/local/lib/python%s/site-packages" % (pyver, pyver)
oscmd("mkdir -p %s" % (dir))
- WriteFile("%s/Panda3D.pth" % (dir), "/Developer/Panda3D")
+ WriteFile("%s/Panda3D.pth" % (dir), installdir)
if not PkgSkip("FFMPEG"):
- oscmd("mkdir -p dstroot/ffmpeg/Developer/Panda3D/lib")
- oscmd("cp -R %s/lib/libp3ffmpeg.* dstroot/ffmpeg/Developer/Panda3D/lib/" % outputdir)
+ oscmd("mkdir -p dstroot/ffmpeg/%s/lib" % installdir)
+ oscmd("cp -R %s/lib/libp3ffmpeg.* dstroot/ffmpeg/%s/lib/" % (outputdir, installdir))
#if not PkgSkip("OPENAL"):
# oscmd("mkdir -p dstroot/openal/Developer/Panda3D/lib")
# oscmd("cp -R %s/lib/libp3openal_audio.* dstroot/openal/Developer/Panda3D/lib/" % outputdir)
if not PkgSkip("FMODEX"):
- oscmd("mkdir -p dstroot/fmodex/Developer/Panda3D/lib")
- oscmd("cp -R %s/lib/libp3fmod_audio.* dstroot/fmodex/Developer/Panda3D/lib/" % outputdir)
- oscmd("cp -R %s/lib/libfmodex* dstroot/fmodex/Developer/Panda3D/lib/" % outputdir)
+ oscmd("mkdir -p dstroot/fmodex/%s/lib" % installdir)
+ oscmd("cp -R %s/lib/libp3fmod_audio.* dstroot/fmodex/%s/lib/" % (outputdir, installdir))
+ oscmd("cp -R %s/lib/libfmodex* dstroot/fmodex/%s/lib/" % (outputdir, installdir))
- oscmd("mkdir -p dstroot/headers/Developer/Panda3D/lib")
- oscmd("cp -R %s/include dstroot/headers/Developer/Panda3D/include" % outputdir)
+ oscmd("mkdir -p dstroot/headers/%s/lib" % installdir)
+ oscmd("cp -R %s/include dstroot/headers/%s/include" % (outputdir, installdir))
if os.path.isdir("samples"):
- oscmd("mkdir -p dstroot/samples/Developer/Examples/Panda3D")
- oscmd("cp -R samples/* dstroot/samples/Developer/Examples/Panda3D/")
+ oscmd("mkdir -p dstroot/samples/%s/samples" % installdir)
+ oscmd("cp -R samples/* dstroot/samples/%s/samples" % installdir)
DeleteVCS("dstroot")
DeleteBuildFiles("dstroot")
@@ -492,11 +505,11 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
# Compile Python files. Do this *after* the DeleteVCS step, above, which
# deletes __pycache__ directories.
for version_info in python_versions:
- if os.path.isdir("dstroot/pythoncode/Developer/Panda3D/Pmw"):
- oscmd("%s -m compileall -q -f -d /Developer/Panda3D/Pmw dstroot/pythoncode/Developer/Panda3D/Pmw" % (version_info["executable"]), True)
- oscmd("%s -m compileall -q -f -d /Developer/Panda3D/direct dstroot/pythoncode/Developer/Panda3D/direct" % (version_info["executable"]))
- oscmd("%s -m compileall -q -f -d /Developer/Panda3D/pandac dstroot/pythoncode/Developer/Panda3D/pandac" % (version_info["executable"]))
- oscmd("%s -m compileall -q -f -d /Developer/Panda3D/panda3d dstroot/pythoncode/Developer/Panda3D/panda3d" % (version_info["executable"]))
+ if os.path.isdir("dstroot/pythoncode/%s/Pmw" % installdir):
+ oscmd("%s -m compileall -q -f -d %s/Pmw dstroot/pythoncode/%s/Pmw" % (version_info["executable"], installdir, installdir), True)
+ oscmd("%s -m compileall -q -f -d %s/direct dstroot/pythoncode/%s/direct" % (version_info["executable"], installdir, installdir))
+ oscmd("%s -m compileall -q -f -d %s/pandac dstroot/pythoncode/%s/pandac" % (version_info["executable"], installdir, installdir))
+ oscmd("%s -m compileall -q -f -d %s/panda3d dstroot/pythoncode/%s/panda3d" % (version_info["executable"], installdir, installdir))
oscmd("chmod -R 0775 dstroot/*")
# We need to be root to perform a chown. Bleh.
@@ -507,6 +520,55 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
oscmd("mkdir -p dstroot/Panda3D/Panda3D.mpkg/Contents/Resources/en.lproj/")
pkgs = ["base", "tools", "headers"]
+
+ # Starting with 1.10.5, Panda3D is installed by default in
+ # /Library/Developer/Panda3D instead of /Developer/Panda3D. To keep
+ # compatibility for those who rely on the old location, we add a symlink
+ # if they're running macOS 10.14 or less. We also remove the old
+ # installation.
+ script_components = set()
+ def write_script(component, phase, contents):
+ if installdir == "/Developer/Panda3D": return
+
+ script_components.add(component)
+ oscmd("mkdir -p dstroot/scripts/%s" % component)
+ ln_script = open("dstroot/scripts/%s/%s" % (component, phase), "w")
+ ln_script.write(MACOS_SCRIPT_PREFIX)
+ ln_script.write(contents)
+ ln_script.write(MACOS_SCRIPT_POSTFIX)
+ ln_script.close()
+ oscmd("chmod +x dstroot/scripts/%s/%s" % (component, phase))
+
+ write_script('base', 'postinstall', """
+ pkgutil --pkg-info org.panda3d.panda3d.base.pkg
+ if [ $? = 0 ]; then
+ rm -rf /Developer/Panda3D
+ fi
+ mkdir -p /Developer
+ ln -s %s /Developer/Panda3D
+ """ % installdir)
+ # We don't specify rm -r since /Developer/Panda3D/Tools is a symlink
+ write_script('tools', 'postinstall', """
+ pkgutil --pkg-info org.panda3d.panda3d.tools.pkg
+ if [ $? = 0 ]; then
+ rm -f /Developer/Tools/Panda3D
+ fi
+ mkdir -p /Developer/Tools
+ ln -s %s/bin /Developer/Tools/Panda3D
+ """ % installdir)
+
+ if os.path.isdir("samples"):
+ pkgs.append("samples")
+
+ write_script('samples', 'postinstall', """
+ pkgutil --pkg-info org.panda3d.panda3d.samples.pkg
+ if [ $? = 0 ]; then
+ rm -f /Developer/Examples/Panda3D
+ fi
+ mkdir -p /Developer/Examples
+ ln -s %s/samples /Developer/Examples/Panda3D
+ """ % installdir)
+
if python_versions:
pkgs.append("pythoncode")
for version_info in python_versions:
@@ -514,17 +576,23 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
if not PkgSkip("FFMPEG"): pkgs.append("ffmpeg")
#if not PkgSkip("OPENAL"): pkgs.append("openal")
if not PkgSkip("FMODEX"): pkgs.append("fmodex")
- if os.path.isdir("samples"): pkgs.append("samples")
+
for pkg in pkgs:
identifier = "org.panda3d.panda3d.%s.pkg" % pkg
+ scripts_path = "dstroot/scripts/%s" % pkg
plist = open("/tmp/Info_plist", "w")
plist.write(Info_plist.format(package_id=identifier, version=version))
plist.close()
if not os.path.isdir("dstroot/" + pkg):
os.makedirs("dstroot/" + pkg)
+ if pkg in script_components:
+ pkg_scripts = ' --scripts ' + scripts_path
+ else:
+ pkg_scripts = ''
+
if os.path.exists("/usr/bin/pkgbuild"):
- cmd = '/usr/bin/pkgbuild --identifier ' + identifier + ' --version ' + version + ' --root dstroot/' + pkg + '/ dstroot/Panda3D/Panda3D.mpkg/Contents/Packages/' + pkg + '.pkg'
+ cmd = '/usr/bin/pkgbuild --identifier ' + identifier + ' --version ' + version + ' --root dstroot/' + pkg + '/ dstroot/Panda3D/Panda3D.mpkg/Contents/Packages/' + pkg + '.pkg' + pkg_scripts
else:
exit("pkgbuild could not be found!")
oscmd(cmd)
@@ -568,15 +636,15 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
dist.write(' \n')
dist.write(' \n')
dist.write(' \n')
- dist.write(' \n')
+ dist.write(' \n' % installdir)
dist.write(' \n')
dist.write(' \n')
- dist.write(' \n')
+ dist.write(' \n' % installdir)
dist.write(' \n')
dist.write(' \n')
if python_versions:
- dist.write(' \n')
+ dist.write(' \n' % installdir)
dist.write(' \n')
dist.write(' \n')
@@ -615,11 +683,11 @@ def MakeInstallerOSX(version, python_versions=[], **kwargs):
dist.write(' \n')
if os.path.isdir("samples"):
- dist.write(' \n')
+ dist.write(' \n' % installdir)
dist.write(' \n')
dist.write(' \n')
- dist.write('