rdb
2aac58b5ab
task: Restore previous interrupt handler after taskMgr.step()
...
Related to #1180
2022-01-02 10:39:52 +01:00
loonaticx
500491e6c9
CommonFilters: Documentation adjustments
...
* State that we're using Cg shaders, ideal for clarification.
* Commented out Josh's monologue since it doesn't particularly contribute to the API page
* Added documentation to the setBloom function to help clarify.
Closes #1200
Co-authored-by: rdb <git@rdb.name >
2022-01-01 15:20:57 +01:00
rdb
c38d582f8c
showbase: Add base.clock alias for globalClock
...
Mirrors eefcae7b05 on master
2021-12-26 12:30:00 +01:00
rdb
46b7fc6ee2
dist: Fix bug with grayscale icons becoming blue when scaled
2021-12-07 23:05:29 +01:00
rdb
24755bc8eb
gui: Allow OnscreenImage to be used before ShowBase is created
...
Use TexturePool directly instead of a loader being present in the builtins
Fixes #1209
2021-12-04 20:40:29 +01:00
rdb
6419acb56f
actor: Fix deadlinks to renamed manual page in API reference
2021-12-04 20:37:50 +01:00
Epihaius
29294cb974
interval: Redefine some properties in MetaInterval class
...
The `play_rate` property invokes the underlying C++ `set_play_rate` method, which leads to a bug (#1202 ).
The property is now redefined to make it invoke the overriding `MetaInterval.set_play_rate` method instead.
Fixes #1202
Closes #1204
2021-11-02 15:13:17 +01:00
rdb
e87a2a1f0f
showbase: Fix typo in API reference
2021-11-02 15:01:18 +01:00
rdb
594a26662e
dist: Automatically include cacert.pem when depending on certifi
2021-10-26 13:59:39 +02:00
rdb
ca061c98a6
dcparser: Improve assertion error message for invalid UTF-8 data
2021-10-26 13:58:40 +02:00
rdb
cd9712270b
dcparser: slight code cleanup in dcPacker.cxx
2021-10-26 13:51:04 +02:00
rdb
de334f5597
PythonUtil: remove deadlink from normalDistrib docstring
2021-10-26 13:28:35 +02:00
rdb
e9b5092734
dist: Fix frozen modules not packaged (such as zipimport in Python 3.8+)
2021-10-14 09:49:58 +02:00
rdb
98e3b1f03e
dist: update linecache module with missing __all__ item
2021-10-14 09:47:46 +02:00
rdb
224d21352a
dist: Suppress warnings about missing __builtin__ and _winapi
2021-10-14 09:47:03 +02:00
rdb
3d386d2d63
dist: Default to manylinux2010 for Python 3.10+
...
manylinux1 is not being offered for Python 3.10, so no thirdparty package will have wheels available for this
2021-08-30 18:15:37 +02:00
rdb
1f84469cd9
filter: Fix issue with cached CullResult persisting after cleanup
...
This can cause issues if a DR gets assigned an inactive camera - the old cull result will persist and be used for draw. Possibly we need to do this in set_camera.
Reproduced by #1166
2021-08-03 11:43:49 +02:00
rdb
1fb8480585
Exclude GLVND from built distributions
2021-03-24 11:56:24 +01:00
rdb
94806801e3
Add p3headlessgl render plug-in on Linux using EGL as fallback for GLX
...
Fixes #1086
2021-03-23 15:04:20 +01:00
rdb
3732d3f1e6
PythonUtil: Fix Python 3 next() for SerialNumGen, AlphabetCounter
2021-03-22 21:49:58 +01:00
rdb
fe29aab568
dgui: Reset DirectOptionMenu highlighted index when replacing items
...
Not doing this causes issues if the item list is replaced by an item callback, since that means the unhighlight callback is never fired.
Fixes #1125
2021-03-22 10:08:31 +01:00
rdb
dc516c5ef1
dist: Remove aux-display lines for excluded plug-ins
...
No point trying to load optional modules that we know aren't included.
2021-03-13 14:03:54 +01:00
rdb
3c9673b48e
dist: Actually replace p3fmod_audio with p3openal_audio
...
This was meant to be effected in 9e80282aff but was not properly checked in (only the warning was shown, but the change was not actually made).
2021-03-13 13:55:35 +01:00
rdb
84051384b8
dist: Some work on getting PyQt5 dlls found on Windows
...
There is more work to do to get PyQt5 to work, however.
2021-03-12 00:36:42 +01:00
rdb
89a1c8bff7
motiontrail: Fix issue building with C++20
2021-03-01 10:16:19 +01:00
rdb
ce437629c2
filter: Respect depth-bits from Config.prc
2021-02-24 11:48:10 +01:00
Michael Wass
ea49c121a0
direct: fix TypeError caused by py3 division changes
2021-02-24 09:46:53 +01:00
rdb
17341b18ed
dist: Add PACKAGE_DATA_DIRS entry for pytz zoneinfo database
2021-02-16 12:35:44 +01:00
rdb
03b96edfbc
interval: Fix ability to await Sequence objects
2021-02-08 16:16:20 +01:00
rdb
28615c6a9e
interval: Support awaiting CInterval from coroutines
...
This is a partial implementation of #909 - it is somewhat inefficient (not suspending the task using a future) and does not implement cancellation. A more complete implementation may follow in 1.11.0.
2021-02-07 12:40:58 +01:00
rdb
f55cdd8907
dist: Support strftime-style date formatting in log_filename
...
Fixes #1103
2021-02-06 12:36:14 +01:00
rdb
d043df7d4e
task: Add delay= argument to taskMgr.add()
...
This has the same effect as doMethodLater, but slightly better describes what it does
2021-01-18 23:37:23 +01:00
rdb
a270a55ccd
dist: Add ignoreImports mechanism, prevents every app including numpy
...
Apparently a host of thirdparty packages currently get included by default, such as importlib.metadata -> toml -> numpy, and this is getting rather out of hand. The ignoreImports mechanism provides a way for us to flag certain imports as being optional dependencies.
Also added is various "builtins" imports in Python 2.7 (which are all under version checks and would otherwise lead to the PyPI "builtins" package being included, which would pull in "future", etc.)
2021-01-18 23:33:39 +01:00
rdb
ef6aa9d6ca
directtools: Fix repeated selections causing scaling node to get huge
...
This appears to be a regression from 0fe56bd0a9 , but I can't be sure. Before this fix, repeated clicks of an object would cause the scaling handles to get larger and larger, until eventually causing NaN assertions.
2021-01-18 19:05:45 +01:00
rdb
68daa238b1
dist: Add some determinism support to bdist_apps
...
It's necessary to set PYTHONHASHSEED=0 as well as SOURCE_DATE_EPOCH for deterministic compilation, and moreover, the generated zip files do still have timestamps in them.
2021-01-18 19:02:42 +01:00
rdb
b3f0768656
Revert "directtools: Fix empty scaling node of object handle"
...
This reverts commit b507c88cd9 .
2021-01-17 15:40:47 +01:00
rdb
52b4df4aec
stdpy: Expose DEFAULT_PROTOCOL and HIGHEST_PROTOCOL in direct.stdpy.pickle
2021-01-01 17:41:34 +01:00
rdb
9cb129597c
stdpy: pickle improvements
...
* Define __all__
* Define missing exception types
* clear_memo() now clears Panda-specific state as well
2021-01-01 15:58:51 +01:00
rdb
a5557bc38d
stdpy: Fix pickle sometimes duplicating Panda objects
...
We have to unify multiple Python wrappers pointing to the same C++ object.
2020-12-31 16:55:34 +01:00
rdb
a6580f5dd3
physics: Fix GlobalForceGroup
2020-12-30 23:57:43 +01:00
rdb
f1a171bfd8
particles: Fix writing representation of AngularVectorForce
2020-12-30 23:57:27 +01:00
rdb
b6e8163f97
dist: Add remaining manylinux libraries to exclude_dependencies
...
Prevents getting errors about these being missing.
2020-12-30 23:57:27 +01:00
rdb
e0309a98aa
dist: Remove liblzma, libreadline and libbz2 from exclude_dependencies
...
These are not part of the manylinux specs, and actually needed by the Python _lzma, readline, etc. modules.
This fixes the problem that these dependencies are not being picked up automatically.
2020-12-30 23:57:27 +01:00
rdb
42580a81de
dist: Add hidden imports for pandas
2020-12-30 23:57:27 +01:00
rdb
b6809defec
dist: Remove unused import
2020-12-30 23:57:27 +01:00
rdb
c141bef19b
stdpy: Add missing threading.ThreadError
2020-12-30 23:57:27 +01:00
rdb
2ce373b0da
distributed: Assorted error fixes
2020-12-30 22:53:15 +01:00
rdb
20f38cad66
direct: Fix a few remaining uses of file() instead of open()
2020-12-30 22:35:24 +01:00
rdb
b7124da4aa
directutil: Fix use of removed file()
2020-12-30 22:34:44 +01:00
rdb
f7bd54b9ee
directtools: Fix use of builtin direct instead of base.direct
2020-12-30 22:34:44 +01:00