2
0

ReleaseNotes 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. ----------------------- RELEASE 1.10.15 -----------------------
  2. This release adds support for Python 3.13, and fixes some significant bugs.
  3. Upgrading is highly recommended.
  4. Windowing
  5. * Fix regression related to fullscreen switching on Windows (#1594)
  6. * Fix issues related to fullscreen switching corner cases on macOS
  7. * Fix keyUp event being eaten when switching fullscreen modes on macOS
  8. * Support UTF-8 window titles on X11
  9. * Fix wrong error message on X11 if xf86dga extension is not found
  10. Rendering
  11. * Add "Khronos PBR Neutral" tone mapping operator to HDR filter (#1659)
  12. * OpenGL: Fix offscreen buffer clearing if back buffers are requested
  13. * DirectX 9: Fix crash on window event after window close
  14. * DirectX 9: Fix support for r32f and rgba32f textures
  15. * DirectX 9: Fix crash when copying inverted framebuffer to texture RAM
  16. * DirectX 9: Fix buffer crash if main window has no depth buffer
  17. Text
  18. * Fix handling of surrogate pairs in text on Windows (#1629)
  19. * Fix disabling text-native-antialias setting not working properly
  20. * Fix small-caps not working with text-use-harfbuzz enabled (#1666)
  21. * Show error instead of crash if glyph does not fit in page (#1626)
  22. * Update docstring for set_text_color() (#1621)
  23. GUI
  24. * Fix crash when PGEntry removes itself with background focus (#1650)
  25. * Fix `PGEntry::get_cursor_Y()`, which always returned 0.0 (#1633)
  26. * Now makes copies of mutable default values in DirectGUI constructor (#1587)
  27. Deployment
  28. * Fix wrong relative paths with bam_model_extensions (#1642)
  29. * Add bam_embed_textures option to embed textures in .bam files
  30. * Don't warn about missing ld-linux library on aarch64 Linux
  31. * build_apps dist hooks no longer import Panda3D (#1624)
  32. Miscellaneous
  33. * Fix major memory leak on M1/M2/M3 Macs
  34. * Fix seeking in OpenAL sounds not working on macOS in some cases (#1607)
  35. * Fix direct.stdpy.glob not finding files in VFS (#1675)
  36. * Improve printing of floating-point linmath objects (#1671)
  37. * Fix VFS mount points not being listed as directories (#1244)
  38. * Fix splits occurring in RopeNode geometry (#1325)
  39. * Fix DistancePhasedNode exception at module clean-up time
  40. * Fix magfilter on KW_mipmap in egg-palettize (#1631)
  41. * Fix creating LerpFunctionInterval from functools.partial (#1623)
  42. * Fix "no attribute notifier" in FSM.requestNext/Prev (#1644)
  43. * Fix file_texture_mode property on BamWriter being read-only
  44. * TransformState getters no longer return references to temporary (#1625)
  45. Build
  46. * Assorted build fixes for Python 3.13 and 3.13t
  47. * Fix assorted compiler warnings
  48. * Build fix for newer FFmpeg versions
  49. * Add --ignore option to test_wheel.py to allow ignoring tests
  50. * Update Eigen to 3.2.10 (fixes binder2nd error when building with C++17)
  51. * Fix non-determinism in Python bindings (#1651)
  52. * Fix preprocessor issues in interrogate (#1635)
  53. ----------------------- RELEASE 1.10.14 -----------------------
  54. This release adds support for Python 3.12 and furthermore contains significant
  55. bug fixes, and also implements some missing features in the shader generator.
  56. API
  57. * Accept bytes object in DatagramOutputFile.write_header()
  58. * Add missing clear_color() method to CardMaker
  59. * Add file_version properties to BamFile and BamWriter, mirroring BamReader
  60. * Add missing method for getting current display mode index (#1550)
  61. Shader Generator
  62. * Add support for perspective points (#1440)
  63. * Implement remaining missing TexGenAttrib modes (#1437)
  64. * Fix support for hardware point sprites
  65. * Support missing texture types: cube map arrays, 1D arrays, buffer textures
  66. Rendering
  67. * Add texconst_i input for Cg shaders to access TexGenAttrib constants
  68. * Fix bug when same texture is used with different TexGenAttrib modes
  69. * OpenGL 3.2+/ES: Correctly handle 4-component texcoords in default shader
  70. * DX9: fix bugs setting some kinds of shader inputs
  71. * OpenGL: guard against exceeding max supported vertex attribute stride
  72. * Add missing handling for 1D array textures in Cg shaders
  73. * OpenGL: improve handling of SM5 Cg shaders
  74. * Fix p3d_LightModel.ambient not updating properly
  75. * Work around wireframe rendering bug in Panfrost drivers
  76. * Fix assertion error when preparing texture fails
  77. * Fix image load/store support in GLES 3.1 (set gl-immutable-texture-storage)
  78. Windowing
  79. * Windows: Fix issues switching fullscreen while maximized (#1469)
  80. * macOS: Fix undecorated setting ignored when switching back to windowed mode
  81. * macOS: Fix window sizing bug when simultaneously changing undecorated
  82. * macOS: Fix black bar when switching to fullscreen with Z-Order set to Top
  83. * macOS: Squelch secure restorable state warning on macOS 14 "Sonoma"
  84. * X11: Fix crash on shutdown when using custom cursor
  85. * EGL: Fix invalid operation error when using headless pbuffer
  86. * EGL: Add support for resizing (offscreen) pbuffers
  87. * Windows: Message loop is no longer disabled when using tk with threaded draw
  88. * Windows: Fix handling of invalid raw mouse devices
  89. Deployment
  90. * Fix crash when running executable built with Python 3.11 (#1423)
  91. * Fix for thirdparty packages that use delvewheel (#1492)
  92. * Strip .abi3.so suffix from libraries
  93. * Silently ignore missing hidden imports
  94. * Add missing hidden imports for setuptools and shapely
  95. * Show better error message when targeting no-longer-supported platforms
  96. * Fix issues running pfreeze on macOS
  97. * Fix crash using on arm64 systems with 16 KiB pages (eg. Asahi Linux)
  98. * Fix error using bam_model_extensions with bdist_apps
  99. Pipeline
  100. * Support reading .bmp files with RLE8 compression
  101. * Fix wrong magfilter being written by egg-palettize (#1585)
  102. * Fix memory leaks when writing TIFF files
  103. * Fix hang in .egg loader when `<Collide>` used with `<Line>` (#1515)
  104. * Add assimp-disable-extensions config var (see #1537)
  105. * Fix assert/crash when reading multiple recorders from bam file (#1561)
  106. Build
  107. * Add support for building with Python 3.12
  108. * macOS .dmg are now built as HFS+ for 10.9 compatibility (#1502)
  109. * Don't use RTTI features in headers when building with `-fno-rtti`
  110. * Fix some new compiler warnings
  111. * Fix compile errors with some versions of png.h
  112. * Work around GCC 13.2 bug compiling interrogate-generated code (#1580)
  113. * Support building with LibreSSL on Windows (#1503)
  114. * Fix some issues in anticipation of Python 3.13+ (#1523, #1526)
  115. * More robust parsing of version in setup.cfg (incl. #1539)
  116. * Avoid using deprecated distutils module (#1549)
  117. * Add _d suffix to .pyd files when building debug build on Windows (#1566)
  118. Miscellaneous
  119. * Fix bug causing textures to sometimes be randomly downloaded
  120. * Fix PStats Python profiling exception when using metaclasses (#1505)
  121. * Fix segfault when ConnectionRepository is verbose (#1430)
  122. * Fix broken minusnode icon in dmodels (#1449)
  123. * Fix wrong delete operator in ARToolKit
  124. * Fix crash when encountering corruption in OpenAL stream (#1452)
  125. * Fix SimpleHashMap error reporting at static init time
  126. * Fix assorted code issues, typos, and Python 2-isms in direct tree
  127. * Code size reductions for interrogate-generated bindings
  128. * Assorted docstring corrections and additions
  129. * Interrogate supports explicit cls parameter for static methods
  130. * Interrogate: fix enum scope issue
  131. * Don't assume presence of softspace attribute on files in directnotify
  132. * Use importlib.metadata (not pkg_resources) for entry points in Python 3.8+
  133. ----------------------- RELEASE 1.10.13 -----------------------
  134. This is a significant release containing many important bug fixes and a couple
  135. of interesting new features.
  136. Rendering
  137. * Fix single texture stage limit when `gl-version 3 2` or higher is set (#1404)
  138. * Fix some render-to-texture bugs with multithreaded pipeline (incl. #1364)
  139. * Fix failure to unset divisor after rendering with hardware instancing
  140. * Add "MSAA" filter to CommonFilters class as convenience to enable MSAA
  141. * Fix multisample FBOs with MRT resolving aux target into color target
  142. * Fix shader generator not responding to fog color changes
  143. * Fix OpenGL error when downloading GL_LUMINANCE8 texture
  144. Windowing
  145. * Fix incorrect "without" event generation when mouse leaves window (#1400)
  146. * Windows: Fix lost "up" events when dragging cursor outside window while
  147. multiple mouse buttons are pressed down (#1396)
  148. * macOS: Fix crash with threading-model on newer macOS versions (#1286)
  149. * macOS: Fix black screen when going fullscreen on Apple M1-based macs (#1316)
  150. * macOS: Fix window overlapping Dock when requesting very large height
  151. * macOS: Improve application termination handling, now sends proper exit events
  152. * X11: tinydisplay handles window resizes more efficiently
  153. * X11: Work around window not rendering at first on swaywm (#1087)
  154. Deployment
  155. * Not all code was being built with optimize level 2
  156. * Add `keep_docstrings` option to switch to optimize level 1 (#1341)
  157. * Add `prefer_discrete_gpu` option to force dedicated GPU on Windows (#680)
  158. * Add `bam_model_extensions` for converting non-egg models to .bam (#714)
  159. * Work around autodiscovery error when using `setuptools>=61.0.0` (#1394)
  160. * Default Linux target to `manylinux2014_x86_64` on Python 3.11+
  161. PStats
  162. * Add support for Python profiling with `pstats-python-profiler` Config.prc var
  163. * Fix PStats crash at launch from pip installs in newer Linux distros (#1391)
  164. * Performance improvements to time-based strip chart views
  165. * Time-based strip charts now can show start/stop count in corner of graphs
  166. * Optimize client performance when sending a large number of samples
  167. * Fix dropped frames by changing value for `pstats-max-queue-size` from 1 to 4
  168. * Server accept clients using PStats protocol version 2.3
  169. Assimp
  170. * Fix assertion when loading meshes with multiple primitive types
  171. * Add `assimp-collapse-dummy-root-node` option to remove root node (see #366)
  172. * Import custom object properties as tags
  173. * Add support for additional texture maps, including PBR textures
  174. * Support reading tangent and binormal vectors
  175. * Improve performance when loading geometry
  176. * Fix problems reading external files (see #366)
  177. * Support reading alpha mode when loading .glTF models
  178. * Add support for texture transforms
  179. * Add support for texture wrapping modes
  180. * Fix memory corruption bugs
  181. Build
  182. * Fixes to `pview.desktop` file on Linux
  183. * makepanda: Fix problems when building on arm64 on macOS without `--arch` flag
  184. * makepanda: Fix detection issues with newer macOS / XCode versions
  185. * makepanda: Fix motiontrail header files not being copied
  186. * Windows: Fix HTTPClient not working when nativenet module is disabled
  187. * macOS: Fix OpenCV library refusing to load in arm64 build (#1393)
  188. * Fix compiler error when compiling for e2k (MCST Elbrus 2000) (#1367)
  189. Miscellaneous
  190. * Add new motion trails sample program
  191. * `MotionTrail.add_vertex()` method now directly accepts a vertex position
  192. * Significant performance optimization of C++-based motion trail implementation
  193. * Fix race condition when destructing/constructing NodePaths in thread (#1366)
  194. * Add implementation of capsule-into-polygon collision test (#1369)
  195. * Fix texture transforms sometimes not being flattened (#1392)
  196. * Fix support for `#pragma include <file.glsl>` in GLSL shaders
  197. * Fix `ShaderBuffer.prepare()` not doing anything
  198. * Implement deepcopy for PointerToArray
  199. * Fix Texture deepcopy keeping a reference to the original RAM image
  200. * Fix bf-cbc encryption no longer working when building with OpenSSL 3.0
  201. * PandaNode bounds_type property was erroneously marked read-only
  202. * Fix warnings when copying OdeTriMeshGeom objects
  203. * Fix a crash when using `Notify.set_ostream_ptr()` from Python (#1371)
  204. * Fix GarbageReport not working with Python 3 (#1304)
  205. * Make `mat.cols[n]` and `mat.rows[n]` assignable
  206. * Fix `ExecutionEnvironment.args` being empty on Linux
  207. * Add various useful functions to interrogatedb module
  208. * Fix Python 3 issues unpacking uint types in Python 3 (#1380)
  209. * Fix interrogate syntax error with C++11-style attributes in declarators
  210. * Fix double-precision color values not being clamped by GeomVertexWriter
  211. * Fix regression with BufferViewer in double-precision build (#1365)
  212. * Fix `PandaNode.nested_vertices` not updating properly
  213. * Prevent Panda calculating bounding volume of Geom with custom bounding volume
  214. * Add `do_events()` and `process_event()` snake_case aliases in eventMgr
  215. * Support second arg of None in `replace_texture()` / `replace_material()`
  216. * Support `os.fspath()` for ConfigVariableFilename objects (#1406)
  217. * rplight: Fix PSSM calculation failing with infinite far distance (#1397)
  218. * Remove spurious print in `direct.showutil.Effects.createBounce()` (#1383)
  219. * Fix assorted compiler warnings
  220. ----------------------- RELEASE 1.10.12 -----------------------
  221. Recommended maintenance release containing primarily bug fixes.
  222. Windowing
  223. * Windows: Fix origin not respected when switching to windowed mode
  224. * macOS: Fix origin not being updated when resizing window
  225. * macOS: Fix off-by-one errors with mouse cursor position
  226. * macOS: Fix issues with confined mouse mode
  227. * macOS: Fix events being suppressed when moving the mouse pointer
  228. * macOS: Invert horizontal scroll, set `cocoa-invert-wheel-x true` to revert
  229. Rendering
  230. * Add `shadow-cube-map-filter` setting to enable cube map shadow filtering
  231. * Support floating-point FBOs in OpenGL ES 2+
  232. * Fix texture format selection in OpenGL with T_half_float component type
  233. * Added `egl-device-index` config var to select EGL device
  234. * Offscreen windows in tinydisplay renderer are now resizeable
  235. * CommonFilters now supports alternative coordinate systems
  236. * Fix BufferViewer frame when using a different coordinate system
  237. Deployment
  238. * Fix _bootlocale error in deployed application on Windows with Python 3.10
  239. * Include _sysconfigdata module properly when using sysconfig module
  240. * Fix building deploy-stub on platforms that use DT_RUNPATH instead of DT_RPATH
  241. * `sys.flags.optimize` is now set to 2 in Python 3.2 and above
  242. * Fix import errors when using scipy
  243. Miscellaneous
  244. * `Texture::get_ram_image_as()` fixed for 3D textures
  245. * Fix PStats GPU timing not working with newer NVIDIA drivers
  246. * Fix false negative in collision test when sphere is fully inside box
  247. * Resolve segmentation fault when statically linking ffmpeg module
  248. * Fix issue with failed mmap when using WebcamVideo on Linux
  249. * macOS: Keyboard/mouse devices are no longer enumerated by default
  250. * Fix repr of LPlane class
  251. * Remove dependency on ShowBase in FilterManager
  252. * Many new functions added to interrogatedb module to query additional info
  253. * Interrogate no longer writes wrappers with rvalue references to interrogatedb
  254. * PStats on Linux: Fix mouse motion detected outside strip chart graph area
  255. * Fix assertion when reading bam file with Bullet convex hull shape
  256. * Fix memory leak when specifying owner of a task
  257. * Add additional helpful debug/spam prints to display code
  258. Build
  259. * Support building with Python 3.11
  260. * Support building with OpenSSL 1.1.1 on Windows
  261. * Support building with OpenEXR 3.0 or 3.1 on Windows
  262. * Fix errors when compiling Panda headers with MinGW
  263. * Allow compiling Panda headers on Windows without NOMINMAX set
  264. * Fix wheel platform tag on manylinux aarch64
  265. * Experimentally allow building with mimalloc on Windows
  266. * Makepanda records cache timestamps as integers instead of floats
  267. * Makepanda can now also build tinydisplay on Linux without X11
  268. * Fix naming of built wheels when building for macOS 12
  269. ----------------------- RELEASE 1.10.11 -----------------------
  270. Maintenance release containing assorted bug fixes and minor improvements.
  271. Rendering
  272. * Fix erratic shadow bug with multiple lights from gltf/blend2bam (#1153)
  273. * Fix erratic behavior of HW skinning shaders on non-animated models (#1207)
  274. * Fix errors with compressed luminance textures in DirectX 9 (#1198)
  275. * Implement screenshotting multisample backbuffer in DirectX 9 (#1225)
  276. Texture Loading
  277. * Don't load texture from disk when loading .bam if preloading is off (#1208)
  278. * Fix TextureReloadRequest not working properly when mipmapping is disabled
  279. * Add TexturePool.get_texture() method for querying textures in pool
  280. * Fix crash when opening a .txo, .dds or .ktx file fails
  281. * Improve error message when calling tex.write() with unknown extension
  282. Input
  283. * Generate horizontal scroll wheel events on Windows
  284. * Generate events for mouse buttons 4 and 5 on X11
  285. * Generate events for lmeta, rmeta and menu keys on Windows
  286. * Add raw event (raw-<) for key between shift and Z on ISO keyboards
  287. * Gracefully handle invalid raw input device data on Windows
  288. * Correctly handle negative axis input from Windows raw input devices (#1218)
  289. * FrSky RC controller is now registered as flight stick (#1218)
  290. Deployment
  291. * Support building with tkinter on all supported platforms (#780)
  292. * Fix issue with zipimport module not being packaged
  293. * Fix grayscale icons becoming blue when scaled automatically
  294. * Automatically include cacert.pem when depending on certifi
  295. * Suppress assorted spurious missing module warnings
  296. * Targeting linux_x86_64 / linux_i686 also allows use of manylinux wheels
  297. Build
  298. * Add support for Maya 2022 (#1213)
  299. * Support building with Visual Studio 2022
  300. * Support building with macOS 11.3 SDK (and work around clang crash)
  301. * Support building with Windows 11 SDK
  302. * Build Ubuntu .deb files with bindings for multiple Python 3 versions
  303. * Support compilation with Assimp 5.x (#1212)
  304. * Support building on manylinux_2_24
  305. Miscellaneous
  306. * Fix nodes with same tag key but different value getting flattened together
  307. * taskMgr.step() now restores previous SIGINT handler afterwards (#1180)
  308. * Add base.clock as alias for globalClock
  309. * FilterManager mul parameter now accepts floating-point values (#1231)
  310. * Assorted minor API documentation improvements
  311. * Fix memory leak getting Bullet persistent manifolds from Python (#1193)
  312. * Fix assertion in PythonLoaderFileType with debug Python build
  313. * Add missing property interface to PlaneNode
  314. * Fix prepare_scene() not properly invoking the Shader Generator
  315. * Add name property to AICharacter class (#1205)
  316. * Add bullet-split-impulse configuration variable (#1201)
  317. * Fix slider thumb entering dragging state on keyboard button press (#1188)
  318. * Allow OnscreenImage to be created before ShowBase is created (#1209)
  319. * Fix manager, t, play_rate, duration properties of Sequence/Parallel (#1202)
  320. * Expose ButtonEvent API to Python (UNSTABLE API, will be changed soon)
  321. ----------------------- RELEASE 1.10.10 -----------------------
  322. This release fixes assorted, mostly very minor bugs.
  323. * Round refresh rates when choosing display mode on macOS (#1144)
  324. * Vectors now support floor division
  325. * It is now possible to use round(), ceil() and floor() with vector types
  326. * Add RenderState::get_unused_states()
  327. * Fix assertion error in RenderState::get_num_unused_states()
  328. * Fix Assimp loader not importing normal vectors correctly (#1163)
  329. * Fix error when trying to render DirectGUI in offscreen mode (#1174)
  330. * Fix crash when resizing window in multi-window DirectX 9 application (#1167)
  331. * Fixes to enable compilation with recent OpenEXR and FFMpeg versions
  332. * Fix draw callback being called twice if cull callback calls upcall()
  333. * Improve error message when display module fails to load
  334. * Fix writing/reading BitArray to/from bam files on 64-bit systems (#1181)
  335. * evdev input devices (such as gamepads) are now supported in FreeBSD as well
  336. * Panda no longer tries to compress buffer textures when compression is enabled
  337. * Fix Geom::make_lines_in_place() (& points, patches) leaving invalid state
  338. * Fix memory leak when cleaning up FilterManager (#1166)
  339. * Fix memory leak deleting multisample OpenGL FBOs (#1166)
  340. * Fix auto-binding of SSBOs sometimes causing overlapping bindings (#1176)
  341. * PSSMCameraRig::update() now accepts a camera node directly
  342. * Support copying depth buffer for 32-bit depth with 8-bit stencil (#1142)
  343. * Prevent trying to copy depth from non-depth buffer in OpenGL renderer (#1142)
  344. * Fixes to format selection for OpenGL renderbuffers (#1137, #1141)
  345. * gl-depth-zero-to-one is now supported in OpenGL ES 2+ (if driver supports)
  346. * Maya models can contain more than three eggObjectTypes (#1134)
  347. * Fix black screen on Linux when switching fullscreen without a WM active
  348. * Fix Linux crash when trying to load a directory instead of a file (#1140)
  349. * Fix crash when loading an invalid font
  350. * Fix a very obscure unintended DirectGUI behavior change in 1.10.9
  351. ------------------------ RELEASE 1.10.9 -----------------------
  352. This is a bugfix release which addresses some severe issues on macOS, as well as
  353. a broad range of issues on other platforms, and adds some minor features.
  354. Shaders
  355. * Some macOS builds were erroneously not built with Cg shader support (#1119)
  356. * Show error for unrecognized p3d_TextureXYZ GLSL shader inputs
  357. * Fix Cg shader bug when using multiple GraphicsStateGuardian objects (#1117)
  358. * New filled wireframe mode that respects vertex shaders (#1124)
  359. * Fix undefined behavior when using non-nearest filtering on isampler/usampler
  360. * Harmless shader linking warnings on macOS are now suppressed
  361. Windowing
  362. * Fix mouse confinement activating on Windows for non-foreground window (#1115)
  363. * Fix occasional failure with switching to fullscreen on macOS (#1039)
  364. * Fix parented window being offset if undecorated flag isn't set on Windows
  365. Rendering
  366. * Better support for headless OpenGL on Linux via EGL-based fallback (#1086)
  367. * EGL implementation can now fall back to alternative EGL devices
  368. * Fix ability to create multisample FBO when using EGL (#1089)
  369. * Fix copy-RAM and copy-texture modes for multisample-enabled buffers (#1129)
  370. * FilterManager now respects depth-bits specified in Config.prc
  371. * Auto-convert vertex data down from 64-bit float to 32-bit in OpenGL ES
  372. Texturing
  373. * Add missing 16-bpc and 32-bpc integer texture formats
  374. * Support `Texture::set_ram_image_as()` for 3D and multiview textures (#1095)
  375. * TexturePeeker now supports cube maps (#1098)
  376. * TexturePeeker now supports integer texture formats
  377. GUI / Text
  378. * Workarounds for disappearing text and GUI items in multithreaded pipeline
  379. * Fix generated accent marks for some fonts appearing flipped
  380. * Included static fonts now include dotless i glyph
  381. * Fix DirectOptionMenu issues when changing items from item callback (#1125)
  382. Python API
  383. * Fix some Python 3 compatibility issues
  384. * Improvements to `direct.stdpy.pickle` pickle, esp. for Python 3
  385. * Fix `direct.stdpy.pickle` sometimes duplicating Panda objects
  386. * Add pickle support to various Panda classes
  387. * AsyncFuture can now store an arbitrary Python object as result
  388. * AsyncFuture.gather() now schedules coroutines on current task chain
  389. * Coroutine exceptions are no longer suppressed in optimized builds
  390. * Add ability to `await` all interval objects inside a coroutine (#909)
  391. * Fix garbled data when doing `base.win.properties.size` et al.
  392. * Fix Filename division operator in Python 3
  393. * Add Pythonic property syntax to various Panda classes
  394. * Add optional `delay=` argument to `taskMgr.add()`
  395. * Fix CollisionHandler's again_patterns property
  396. Physics / Collisions
  397. * Fix missing import in nodePath.subdivideCollisions() (#1084)
  398. * Support pickling of CollisionTraverser and CollisionHandler objects (#1090)
  399. * Improve CollisionBox debug visualization
  400. * Fix broken GlobalForceGroup module
  401. * Fix writing representation of AngularVectorForce
  402. * Better handling for some edge cases in PhysicalNode
  403. * Support bam serialization of BulletGhostNode objects (#1099)
  404. Deployment
  405. * Fix app immediately exiting on Windows if log_filename is not set
  406. * Allow generating log files with date/time in filename (#1103)
  407. * Automatically removes aux-display Config.prc lines for excluded plug-ins
  408. * No longer defaults to FMOD audio on macOS unless FMOD is explicitly bundled
  409. * Fix every app pulling in pep517 and numpy when building on some Linux distros
  410. * Fix building with pytz and pandas requirements
  411. * Some deterministic build support with PYTHONHASHSEED=0 and SOURCE_DATE_EPOCH
  412. * Fix harmless warnings about missing dependencies
  413. * Fix libbz2, libreadline and liblzma libraries being erroneously excluded
  414. Build / C++
  415. * Some macOS builds were erroneously not built with Cg shader support (#1119)
  416. * Fix code signatures being missing from arm64 wheels on macOS (#1123)
  417. * Windows builds now include missing DirectX 9 DLL (#1034)
  418. * Windows installer no longer pops up message box in silent mode (#1088)
  419. * Fix compatibility of Panda headers with C++17 and C++20 compilers
  420. * Support reproducible builds when SOURCE_DATE_EPOCH is set
  421. * Interrogate supports `__truediv__` and `__floordiv__` special methods
  422. * makepanda now looks for linux-libs-arm64 thirdparty directory in aarch64 build
  423. Miscellaneous
  424. * Assorted memory leaks fixed
  425. * Disable `vorbis-seek-lap`, which caused popping in ogg sounds (#1108)
  426. * Fix crash when playing video using older FFMpeg versions (#1085)
  427. * Fix flattening/egg loader bug messing up line strip geometry (#1122)
  428. * Fix egg lexer state not being cleaned up after error
  429. * multify respects SOURCE_DATE_EPOCH (but -T0 should be preferred)
  430. * Fix egg loader hanging when encountering unterminated quote or C-style comment
  431. * VirtualFileSystem::read_file() is now implemented for HTTP mounts
  432. * Fix regression causing crash in DIRECT tools
  433. * Fix repeatedly clicking object in DIRECT tools cause explosion of scaling node
  434. ------------------------ RELEASE 1.10.8 -----------------------
  435. Recommended maintenance release.
  436. * Support building for macOS 11 "Big Sur" and "Apple Silicon" (arm64)
  437. * Fix a memory leak, particularly noticeable with multithreaded pipeline (#1077)
  438. * Fix crash on macOS when unplugging device with threading active (#1082)
  439. * Fix error with build_apps not working with certain versions of Python
  440. * Fix DirectEntry/PGEntry flickering in the multithreaded pipeline (#1070)
  441. * Fix sounds resuming on reactivation if stop() was called while inactive (#559)
  442. * Collision traverser now releases GIL during traversal (#1033)
  443. * Fix crash caused by some gamepad drivers on Linux (#1066)
  444. * Add GraphicsPipe::get_display_zoom() for querying system DPI scaling
  445. * Skinning-enabled shaders can now properly render unskinned models as well
  446. * BitMask, SparseArray, BitArray types can now be pickled (#886)
  447. * VFSImporter now properly detects source file encodings in Python 3
  448. * Workaround for lighting bug with scenes imported using panda3d-gltf/blend2bam
  449. * Fix compilation error with Bullet 2.90+
  450. * Assimp library was updated in Windows thirdparty packages (#1020)
  451. * libCg is now shipped as library instead of framework on macOS (#1079)
  452. * Fix some erroneous warnings about missing modules in build_apps
  453. * Add warnings to build_apps when forgetting dependencies in requirements.txt
  454. * Add experimental TextureStage::M_emission mode
  455. * Add experimental p3d_TextureNormal, p3d_TextureEmission, etc. GLSL inputs
  456. * Fix ability to use deployment system when compiling without OpenSSL (#1073)
  457. * Fix assorted issues with rgbPanel
  458. * Fix comparison operator of RenderEffects object
  459. ------------------------ RELEASE 1.10.7 -----------------------
  460. This is primarily a bugfix release, but includes a few new features as well.
  461. Rendering
  462. * Add High Dynamic Range filter with ACES tone mapping to CommonFilters
  463. * Add sRGB filter to CommonFilters (to be used as fallback to framebuffer-srgb)
  464. * Fix (shadow) buffer no longer working after host buffer is destroyed (#890)
  465. * Fix rare bug with shader parameters not being set right across render passes
  466. * Fog density passed to shader now defaults to 0 when no fog is applied
  467. * Don't check sampler/light type mismatch for non-shadow-casting lights (#942)
  468. * Shader generator now makes use of Material alpha values if present (#912)
  469. * Support sRGB textures and framebuffers in OpenGL ES 2 renderer
  470. Asset Loading
  471. * Egg files can now be loaded with sRGB texture formats automatically
  472. * Fix maya2egg regression not creating animations properly (#1004)
  473. * Fix FMOD issue reading sounds from read-write-opened multifiles (#1002)
  474. Stability
  475. * Fix faulty collision detection when sphere is under polygon (#907)
  476. * Fix PStats misreporting an exploding number of RenderState/TransformState
  477. * Fix memory leak when removing a task that is awaiting a non-Panda future
  478. * Optimize RenderState cache for case where texture is replaced repeatedly
  479. * PNMImage add_sub_image() / mult_sub_image() now properly adds offset (#903)
  480. * Fix some ServerRepository issues in Python 3
  481. * Fix has_tags() still returning true after clearing all Python tags (#936)
  482. * Fix crash in BitArray.has_any_of()
  483. * Fix errors in PythonUtil.detectLeaks() and PythonUtil.report()
  484. * Fix runtime error during ControlManager deletion (#884)
  485. * Some error messages in nativenet are changed to debug messages
  486. * Fix TexMemWatcher crash when graphics memory reaches 1 GB (#975)
  487. * Fix a Triangulator crash dealing with certain invalid polygons (#985)
  488. * Fix in MultiplexStreamBuf::Output::write_string() (#902)
  489. * Fix a buffer overrun on FreeBSD when extracting very long command-line args
  490. Input and Windowing
  491. * M_confined mouse mode on Windows now confines mouse to client rectangle
  492. * Fix incorrect handling of shift modifier on macOS (#959)
  493. * Fix erroneous dpad_*-up events when emulating a dpad on Linux (#973)
  494. * Fix tab handling in DirectEntry with certain versions of Windows CRT (#994)
  495. * Fix parented window receiving WS_POPUP style on Windows (#915)
  496. Deployment
  497. * macOS app bundle now performs chdir into Resources folder upon launch
  498. * No longer defaults to FMOD audio on macOS unless FMOD is explicitly bundled
  499. * Improvements to Config.prc handling (strip comments, sort files, etc.)
  500. * Line buffering is now used on Windows when writing to log files (#947)
  501. * stdout/stderr output streams are now flushed on exit (#946)
  502. * Build paths are now properly stripped from compiled Python code (#991)
  503. * Update to support a change in location of numpy/Pillow libraries (#914)
  504. * Fix libffi-7.dll not being included in official wheels
  505. * PYTHONINSPECT mechanism is no longer enabled when building with optimizations
  506. * A few unnecessary warning messages are squelched
  507. * Windows builds now include previously missing CRT dlls
  508. API
  509. * Add pickle support to Datagram class
  510. * Unexpose a crashing CollisionPolygon constructor and method (#908)
  511. * FilterManager has new parameter to control framebuffer clamping
  512. * Add snake_case aliases for functions in DirectGuiGlobals
  513. * Global delete operator is now safe to call with a null pointer
  514. * Improvements to API reference documentation
  515. Build
  516. * Fix issues building with development versions Python 3.9 and 3.10
  517. * Fix an ABI incompatibility issue with MouseWatcher in NDEBUG builds
  518. * Fix incorrect NaN/inf detection in double-precision release builds (#987)
  519. * interrogate C++ parser supports arbitrary constant expressions in bitfields
  520. * interrogate C++ parser supports sizeof with constant expression
  521. ------------------------ RELEASE 1.10.6 -----------------------
  522. This is a recommended bugfix release that adds additional stability fixes.
  523. Stability
  524. * Fix deployment system to work properly with pip 20
  525. * Fix multithreading crash when garbage collecting render states (#499)
  526. * Fix crashes when hotplugging USB device on macOS Catalina (#847)
  527. * Fix crash when using Python OpenSSL module with wheel build of Panda3D (#851)
  528. * Fix a memory leak in task system in Python 3 (#873)
  529. * Fix detection for convex angles in visible geometry in collision system (#879)
  530. * Fix regression in 1.10.4 when overriding verticalScroll_frameSize (#864)
  531. * Fix DirectScrolledList scrollTo error in Python 3 (#880)
  532. Shaders
  533. * Fix OpenGL shaders not being properly applied across multiple buffers
  534. * Proper handling of texture rotations applied to normal maps (#808)
  535. * "//Cg profile" no longer affects subsequent shader loads (#863)
  536. * Add support for custom vertex columns when munging points to quads (#870)
  537. * Workaround for GLSL p3d_TextureMatrix[] input giving GL error on macOS (#846)
  538. * Fix ShaderTerrainMesh disappearing when enabling compressed-textures
  539. Input
  540. * Fix MouseWatcherRegion leave event sometimes being fired twice (#858)
  541. * Fix odd behavior when pressing multiple mouse buttons during capture (#843)
  542. * Fix support for dead key input on some X11 servers
  543. * Fix raw key events being sent down repeatedly when holding key on X11 (#874)
  544. * Numpad keys are no longer included in get_keyboard_map() on X11
  545. * Add labels to some keys in get_keyboard_map() on X11
  546. * Properly use cursor hotspot when loading custom cursor on macOS (#845)
  547. * Loading custom cursor on macOS now properly resolves against model-path
  548. Animation
  549. * unloadAnims no longer removes all control effects, only for given anims (#853)
  550. * AnimChannelScalarTable (for morph animations) is now exposed to Python
  551. * It's now possible to create a CharacterSlider with default value
  552. Pipeline
  553. * Fix assertion errors when model-cache-dir cannot be created (#790)
  554. * Textures with clear colors are no longer stripped from bam files (#844)
  555. * Support texture clear colors in bam files (requires "bam-version 6 45" in PRC)
  556. * Fix bam2egg skinning bug for models with default poses on joints
  557. * bam2egg supports multitexturing and multiple UV sets
  558. Build system
  559. * Add missing --cggl-incdir and --cggl-libdir options in makepanda
  560. * Reduce library size by not exporting symbols of linked static libraries
  561. * Wheels no longer unnecessarily include libpythonX.Y.a (#839)
  562. * makepanda now auto-disables plug-ins in Config.prc that were not compiled in
  563. * Fix refcounting of returned ReferenceCount-like objects in interrogate
  564. * Fix inability to build a .whl on Ubuntu
  565. * Fix erratic build failure in dcParser code
  566. * Fix compilation using Windows 8.1 SDK
  567. ------------------------ RELEASE 1.10.5 -----------------------
  568. This is a recommended bugfix release, especially for macOS users.
  569. * Fix DPI scaling issue in macOS 10.15 "Catalina" (#794)
  570. * Fix crash on macOS Catalina without "Input Monitoring" permission (#795)
  571. * macOS installer now installs to /Library/Developer/Panda3D (#760)
  572. * macOS thirdparty packages are now linked with libc++ (#584)
  573. * Homebrew Python should now locate Panda libraries correctly (#755)
  574. * Work around Tk bug cancelling Load Params in Particle Panel on macOS (#811)
  575. * Fix NaN assertions when particles get very large positions (#822)
  576. * Add support for Autodesk Maya 2020
  577. * Fix maya2egg erroring when running from a pip installation (#709)
  578. * Support DualShock 4 (2nd gen) controller on Windows
  579. * Support .pz and .gz compressed models in deployment system
  580. * Support implicit namespace packages in deployment system (#778)
  581. * Fix issues when using CEF Python on macOS with deployment system
  582. * Fix deployment system issues reading .pyc files in some Python versions
  583. * Fix error with distutils package when deploying in a "virtualenv" env (#747)
  584. * Fix "NameError: name 'mdef' is not defined" error when deploying (#721)
  585. * Deployment system now strips weird -psn_* argument passed to macOS GUI apps
  586. * Fix custom loader hooks sometimes not working with Actor (#750)
  587. * Fix defaults for package_data_dirs in deployment system (#779)
  588. * Fix issues with adding icons to deployed executable (#718)
  589. * Add PNMImage.quantize() that palettizes using median cut algorithm
  590. * Fix stereo and MRT FBO rendering in OpenGL ES (#815)
  591. * RTM_copy_ram mode is now fixed for multiview textures in OpenGL
  592. * Fix OpenGL multisample FBO issue with 16-bit float buffer (#756)
  593. * Fix DirectX 9 crash when resizing vertex buffer in certain ways (#824)
  594. * Workaround for infinite loop in Triangulator for certain polygons (#737)
  595. * Fix dcparser issue with unpacking uint64 and int64 (#751)
  596. * Fix ability to compile dcparser outside of the Panda3D codebase (#759)
  597. * Fix all direct.stdpy.threading2 threads behaving daemonically (#758)
  598. * direct.stdpy.threading2.Thread instances provide daemon and name properties
  599. * Workaround for Tkinter crash on Windows when resizing window (#586)
  600. * Fix possible stack overflow when reading many bytes from a stream (#754)
  601. * Fix mouse confinement region on Windows not updating on window resize (#727)
  602. * Fix mouse confinement being lost on Windows when window loses focus (#729)
  603. * Support adjusting particle birth offset time (#769)
  604. * Support building against OpenEXR 2.4 on Windows (#799)
  605. * Fix ability to pass a tuple to loader.loadModel
  606. * Fix an issue in interrogate with generating C bindings (#722)
  607. * Fix a variety of ABI compatibility issues with NDEBUG builds
  608. * Fix static linking of harfbuzz and freetype in makepanda
  609. * Fix ability to specify --python-incdir and -libdir to makepanda on macOS
  610. * `ls()` and `bam-info -ls` now list included animations
  611. * Fix white ambient color when loading PBR materials from .bam/cache (#828)
  612. * Fix inconsistent behavior when passing small values to shader inputs (#827)
  613. * Fix very rare NVIDIA driver crash when mixing GLSL and Cg shaders
  614. * Fix issue passing unicode to DirectScrolledList (#752)
  615. * Fix interrogate parser issue with function-like macro expansion
  616. * Interrogate now finds types nested in explicitly specialized template class
  617. * Improve performance reading all data from a file with direct.stdpy.file
  618. * PandaSystem now records whether libc++ or libstdc++ was used on macOS
  619. * makepanda.bat now builds against Python 3.7 by default
  620. * Many improvements to API documentation
  621. * pandac/input/*.in interrogatedb files are now included in .whl builds
  622. * Fix division exception in ServerRepository (#762)
  623. * Fix ShaderBuffer contexts not being cleared at GSG destruction
  624. * Fix DirectOptionMenu item text scale reset on item unhighlight (#768)
  625. * Python particle classes now have snake-case aliases
  626. * Fix crash printing out cached buffer contexts
  627. * Rudimentary, experimental, low-level handling of digitizer input devices
  628. ------------------------ RELEASE 1.10.4.1 ---------------------
  629. This release fixes only one critical regression: calling destroy()
  630. on a DirectGUI item would cause an exception.
  631. ------------------------ RELEASE 1.10.4 -----------------------
  632. This release fixes a regression with DirectScrolledList in 1.10.3,
  633. fixes various other bugs, and introduces a few minor features.
  634. * Fix exception trying to create DirectScrolledList
  635. * Fix flickering in DirectScrolledFrame and other scissor issues (#681)
  636. * Experimental support for Python 3.8
  637. * Support adding icons to deployed applications
  638. * Support non-affine (eg. projective) transforms in calc_tight_bounds
  639. * Allow setting notify-output after initial import
  640. * Fix macOS issue locating Panda3D using Python 2.7.13+ from python.org
  641. * Support for Maya 2019
  642. * On Windows, pip is now installed by the installer (#690)
  643. * Fix Actor.makeSubpart on models with pre-bound animations (#647)
  644. * Properly interrupt task manager if first task chain raises error (#692)
  645. * Fix return value of encrypt_string in Python 3 (#684)
  646. * Support writing loader plug-ins in Python
  647. * Fix reading multiple p3d_TextureMatrix[] values from GLSL shaders
  648. * Fix shader error flag not being set if GLSL compilation failed (#622)
  649. * Add NodePath.replace_texture() convenience method
  650. * Fix deadlock when building with SIMPLE_THREADS=1 (#704)
  651. * Fix DirectOptionMenu cancelFrame not working inside scrolled frame (#658)
  652. * Fix assertion when calling analyze() on geometry with strip cut index
  653. * Implement fallback in GL renderer when F_sluminance is not supported (#693)
  654. * Set reasonable limits for sliders in ParticlePanel
  655. * Fix for DirectEntry autoCapitalize feature on Python 3 (#628)
  656. * Fix various DirectGUI items not working before ShowBase is instantiated
  657. * Work around an MSVC compiler bug in the release build
  658. * PythonUtil.weightedChoice now raises IndexError on empty list
  659. * Support changing DirectScrollBar width after initialiation (#699)
  660. * Workaround for Bullet deadlock when adding shape to a scaled body (#689)
  661. * Support setting DirectEntryScroll entry after initialization (#702)
  662. * Fix some missing imports in directtools (#698)
  663. * Fix undefined behavior issue when using musl-libc
  664. * Update Eigen in Windows thirdparty packages to 3.3.7
  665. * Update metadata of pip wheels
  666. ------------------------ RELEASE 1.10.3 -----------------------
  667. This is another bugfix release that addresses a variety of issues
  668. in 1.10.2 and further improves the stability.
  669. * Fix crash when unplugging certain devices on macOS
  670. * Fix crash on macOS when using RIME input
  671. * Fix logging issues/crashes in apps deployed with Python 2.7
  672. * Fix issues when starting in fullscreen on Linux/X11
  673. * Fix mapping of several gamepads including Trust GXT 24
  674. * Fix Linux crash when no input devices are present
  675. * Unbreak support for matrix arrays in vertex data in OpenGL
  676. * Allow creating multisample FBO in OpenGL with non-MS host window
  677. * Support playing and looping compressed Ogg and WAV audio files
  678. * Fix generation of CollisionBox for transformed geometry in .egg
  679. * Fix Bullet rigid body transform not updating after reparenting
  680. * Fix sporadic color scales with lighting and custom GLSL shader
  681. * Prevent faulty shaders from shutting down GSG on some drivers
  682. * Allow None as either argument to OdeJoint.attach()
  683. * Fix BufferViewer when main window is not opened right away
  684. * Properly detect extension of pz/gz compressed video/audio files
  685. * Fix for invalid behavior of SparseArray methods to clear bits
  686. * FilterManager now allows overriding framebuffer properties
  687. * Fix detection of core-only OpenGL profile on some drivers
  688. * Add gl-forward-compatible config var for OpenGL context creation
  689. * Add paste-emit-keystrokes variable to disable Ctrl+V on Windows
  690. * Fix in-place |= operator on Panda types (such as SparseArray)
  691. * Fix rare FFmpeg "bad src image pointers" errors after seek
  692. * Fix uses of types.InstanceType in some obscure direct functions
  693. * Fix capsule-into-sphere collision test in degenerate case
  694. * KeyboardButton.ascii_key now also accepts a str character
  695. * Fix errors in various Tkinter DIRECT widgets
  696. * Expose save_egg_file/save_egg_data functions in Python API
  697. * Fix assertion error in BoundingBox.set_min_max
  698. * Fix typo in CollisionTraverser.respect_prev_transform property
  699. * Properly install Python bindings when building FreeBSD installer
  700. ------------------------ RELEASE 1.10.2 -----------------------
  701. This release fixes several more bugs, including a few regressions
  702. in 1.10.1. Upgrading is highly recommended.
  703. * Fix regression on Windows causing freezes and instability
  704. * Fix a memory leak issue in Python applications
  705. * Fix crash reading unaligned float4 column in GeomVertexReader
  706. * Fixes for switching to fullscreen at runtime on Windows and Linux
  707. * Fix incorrect display mode listing in some Linux distributions
  708. * Fix threading crash on Linux when using get_keyboard_map()
  709. * Support "from __future__ import division" for Panda types
  710. * Support building with Visual Studio 2019 in makepanda
  711. * Work around Assimp crash when loading multiple .ply models
  712. * On Windows, a Python 3-compatible version of Pmw is included
  713. * Fix ParticlePanel spam when hovering over File menu items
  714. * TexMemWatcher has been fixed for Python 3
  715. * Prevent macOS window getting stuck after base.destroy()
  716. * Fix assertion setting mass before shape with Bullet debug build
  717. * Don't error if DirectScrolledFrame is destroyed twice
  718. * Fix reference count corruption accessing task.__dict__
  719. * Fix writing to SequenceNode frame_rate property
  720. * Fix collider sort not copied when copying CollisionNode
  721. * Add OpenCollective backer file
  722. ------------------------ RELEASE 1.10.1 -----------------------
  723. This is a bugfix release intended to fix several issues in 1.10.0.
  724. * Fix crashes when gamepad is plugged in on 32-bit Windows
  725. * Fix deploy-ng error regarding 'exist_ok' on Python 2
  726. * Fix Linux install from pip not working with some mesa drivers
  727. * Fix compatibility issues with upcoming Python 3.8
  728. * Fix regression with Audio3DManager.setSoundVelocityAuto()
  729. * Fix issues when awaiting loader.loadModel in Python 3.7
  730. * Audio3DManager accepts tuple in setSoundVelocity/setListenerVelocity
  731. * Fix lighting being disabled when only an AmbientLight is active
  732. * Fix an error saving from Particle Panel in Python 3
  733. * Depth buffer now defaults to 24-bit on macOS (fixes flickering)
  734. * Fix no devices being detected on Windows with threading-model
  735. * Implement collision tests from Capsule and Box into InvSphere
  736. * Fix odd behavior and occasional crash in QuatInterval
  737. * Fix SpriteAnim error in particle system
  738. * Fix ShaderGenerator error when using too many shadowing lights
  739. * Fix interrogate crash in Python 3 with optional wstring args
  740. * Fix compilation errors for x86 Android platform
  741. * Fix permissions of directories created by installpanda
  742. * Improvements to API reference documentation
  743. * Fix incorrect features printed out when printing an InputDevice
  744. * Support cross-compiling for Android platforms in makepanda
  745. * Work around various bugs when compiling with OS X 10.7's libc++
  746. * Fix wrong error sometimes being reported when loading plug-in
  747. * Allow getting NodePath from CullTraverserData object
  748. * Add config options to Assimp loader for generating normals
  749. * Fix multisampling in floating-point framebuffers on OpenGL
  750. * Parse egg files with 4-component tangents (must be 1 or -1)
  751. * StencilAttrib.make() write_mask argument is now optional
  752. ------------------------ RELEASE 1.10.0 -----------------------
  753. This is a major release with significant changes. Please review the
  754. changes when upgrading. The list below is by no means exhaustive, but
  755. should contain the most important changes.
  756. General
  757. * Experimental ability to build for Android
  758. * New input framework to natively support gamepads, joysticks, etc.
  759. * Multi-threaded render pipeline is a lot more stable now
  760. * New setuptools-based deployment pipeline
  761. * Improvements to mouselook smoothness
  762. * Cache is now at $XDG_CACHE_HOME/panda3d (~/.cache/panda3d), not ~/.panda3d
  763. * Addition of unit test suite
  764. * Many improvements to thread safety
  765. * Many performance improvements
  766. * Tons of bugfixes
  767. * Big style cleanup of C++ source code
  768. Python API
  769. * Complete support for Python 3
  770. * Support for coroutines and async/await
  771. * Property interfaces have been added for many settings
  772. * More flexible handling for keyboard arguments in C++ APIs
  773. * Python bindings are completely separated out of the C++ libraries.
  774. * Interrogate binding generator has many improvements.
  775. * Use of pandac.PandaModules is discouraged, use panda3d.core et al
  776. * Use of libRocket is discouraged due to lack of Python 3 support
  777. * Tasks are now sorted in addition order when lacking a sort value
  778. * Fixes iris/fade transitions for extreme aspect ratios
  779. * WeakNodePath is now exposed to Python
  780. * WindowProperties.size(x, y) deprecated; use WindowProperties(size=(x, y))
  781. * Calling bare run() is deprecated, use base.run() instead
  782. * downcastTo*() methods have been removed, they were already no-ops
  783. Rendering
  784. * Add new shader-based terrain rendering method (ShaderTerrainMesh)
  785. * The default ColorAttrib mode is now T_vertex
  786. * The ColorAttrib T_off mode now properly disables vertex colors entirely
  787. * Make handling of color attributes more consistent between renderers
  788. * Ability to create an OpenGL core profile context; set "gl-version 3 2"
  789. * Experimental support for reverse-Z rendering for best depth precision
  790. * sRGB framebuffers supported more widely
  791. * Support for infinite near/far clip in lens
  792. * Add some PBR material parameters to material class
  793. * Addition of more built-in GLSL shader inputs; see manual.
  794. * Add p3d_FragData[] GLSL output for MRT in GLSL 1.30
  795. * Add flag enabling vertex shader control over point size
  796. * Support signed ints and double-precision floats in vertex data with GLSL
  797. * Support unsigned 11/10/10-bit floating-point textures and vertex data
  798. * Support for SSBOs via ShaderBuffer class
  799. * Support OpenGL FBO buffers without any attachments
  800. * Support passing uint variables to GLSL shader
  801. * Allow rendering objects with empty vertex data (for vertex pulling)
  802. * Add LogicOpAttrib, for supporting logical operator blending
  803. * Improvements to OpenGL ES support
  804. * Support for geometry with adjacency information
  805. * Change default alpha blending to improve blending rendered result
  806. * New method for obtaining native OpenGL texture object
  807. * Support windowless offscreen rendering on macOS
  808. * Panda resets OpenGL state better before and after draw callbacks
  809. * OpenGL renderer better supports debugging tools like apitrace
  810. * Support fixed-depth billboards, useful for 2D tags that don't change size
  811. Shader generator
  812. * Significant performance improvements
  813. * Support for point light shadows
  814. * Hardware skinning support
  815. * Changes to match fixed-function pipeline better
  816. * Fixes for normal vector normalization
  817. * Support multiple normal maps (uses Reoriented Normal Mapping)
  818. * Tracks modifications to materials and texture stages automatically
  819. Lighting
  820. * Allow specifying light color based on color temperature
  821. * Setting specular color of a light separately is deprecated
  822. * New GLSL inputs to make implementing lighting in shaders much easier
  823. * Add representation for sphere light and rectangle light
  824. * Efficiency improvements for passing light information to shader
  825. * Interocular distance for shadow cameras now always defaults to 0
  826. * Add low-level lighting module from RenderPipeline
  827. Textures
  828. * Support cube map arrays
  829. * Support buffer textures
  830. * Many more texture formats supported
  831. * BC4 and BC5 compression modes supported
  832. * Proper depth textures supported in DirectX 9 renderer
  833. * set_ram_image(_as) directly supports buffer protocol
  834. * TexturePeeker supports more formats and component types
  835. Text
  836. * Dramatic improvements to text rendering performance
  837. * Support for HarfBuzz for higher-quality text shaping and kerning
  838. * Support for right-to-left text
  839. * Support for signed-distance-field rendering in egg-mkfont
  840. Audio/video
  841. * The default unit for audio is now 1 meter for each Panda unit.
  842. * Native .flac loader
  843. * Support videos with alpha channel in ffmpeg
  844. * OpenAL stability improvements, especially on macOS
  845. * Support loading .opus files with libopusfile
  846. * Fix various memory leaks
  847. Physics / collisions
  848. * CollisionTube is renamed to CollisionCapsule.
  849. * Box-box collision test is improved to work well with the Pusher
  850. * More box tests for collision system: box-into-plane, box-into-poly
  851. * Capsule (tube) can be used as "from" shape into plane, sphere, capsule, box
  852. * Bullet objects are serializable to .bam files.
  853. * Bullet bindings are now thread safe.
  854. * Bullet debug drawer is more efficient; no longer inherits GeomNode.
  855. * Various fixes to bullet vehicle wheel synchronization
  856. * PhysX bindings are deprecated.
  857. Pipeline / loading
  858. * Support for Assimp library to load a broad variety of model formats
  859. * Ability to specify min-lod, max-lod, lod-bias in .egg file
  860. * Egg file materials support PBR-style material parameterization
  861. * Support loading more DDS files, including DX10-style ones
  862. * Add support for OpenEXR and HDR textures
  863. * Support line/point thickness in bam2egg
  864. * bam2egg no longer inserts a vestigial ModelNode at the top
  865. * bam2egg supports depth test, offset, cull bin attributes
  866. * Accept a .gz file wherever a .pz file is accepted
  867. * egg-palettize supports mirror and border-color wrap modes
  868. * More robust checks against memory corruptions when loading bad .bam files
  869. * Support for Maya 2017 and 2018
  870. * Support preprocessing GLSL shaders created with Shader.make
  871. Build
  872. * We now require using MSVC 2015 or 2017 to compile on Windows.
  873. * At least GCC 4.8 is now required.
  874. * With GCC/clang, enabling C++11 is now required.
  875. * Allow building with more recent ffmpeg versions
  876. * Support for old FFMpeg versions (before 1.1) dropped.
  877. * The ppremake build system has been removed.
  878. * Support for OpenSSL versions before 0.9.7 has been dropped.
  879. C++
  880. * Use of NULL is replaced with nullptr
  881. * WeakPointerTo now requires use of lock() method for thread safety
  882. * Mutex et al now satisfy C++11 Lockable constraints
  883. * Panda headers no longer contain `using namespace std;`
  884. * PN_int32 et al have been removed, use stdint.h types instead
  885. * The need to link with pystub and add Python include dirs is removed.
  886. ------------------------ RELEASE 1.9.4 ------------------------
  887. One of the bugfixes in the last 1.9.3 release introduced a regression,
  888. therefore it was decided to make another 1.9.x release.
  889. * Fix 1.9.3 regression with generating geometry in threaded pipeline
  890. * Various compile warning fixes
  891. * Fix occasional crash in PNMImage::quick_filter_from()
  892. * Fix issue taking screenshots from an OpenGL FBO buffer
  893. * Fix various issues with MeshDrawer
  894. * Fix issue with collision sphere generation in bam2egg
  895. * Fix compile errors with more obscure Python configurations
  896. * Fix assert when using Texture.load_sub_image to load whole image
  897. * Fix fsm FourState
  898. ------------------------ RELEASE 1.9.3 ------------------------
  899. This issue fixes several bugs that were still found in 1.9.2.
  900. * Fix crash when using homebrew Python on Mac OS X
  901. * Fix crash when running in Steam on Linux when using OpenAL
  902. * Fix crash using wx/tkinter on Mac as long as want-wx/tk is set
  903. * Fix loading models from 'models' package with models/ prefix
  904. * Fix random crashes in task system
  905. * Fix various race conditions causing threading issues
  906. * Fix memory leaks in BulletTriangleMesh
  907. * Fix loading old models with MovingPart<LMatrix4f>
  908. * Improve performance of CPU vertex animation somewhat
  909. * Show framebuffer properties when fbprop request fails
  910. * Show error instead of crash on use of object before __init__
  911. * Fix hang on exit when using Python task on threaded task chain
  912. * Fix inability to get RGBA renderbuffer in certain cases
  913. * Work around GLSL issue with #pragma and certain Intel drivers
  914. * Improve performance of texture load and store operations
  915. * Fix crashes with pbuffers on Intel cards on Windows
  916. * Support for Autodesk Maya 2016.5
  917. * Add shadow-depth-bits config var to control shadow map depth
  918. * Fix cull issue when rendering cube map (or any multi-lens setup)
  919. * Fix crash rendering with the same camera to different contexts
  920. * Fix compile error when making static build with DX9 renderer
  921. * Fix assertion when using aux render targets in DX9
  922. * Work around Cg bug generating invalid ASM for saturated tex loads
  923. * Fix issues with certain Cg shader inputs in DX9
  924. * Support uint8 index buffers in DX9
  925. * Fix occasional frame lag when loading a big model asynchronously
  926. * Fix interrogate parsing issue with "const static"
  927. * Add back missing libp3pystub.a to Mac OS X SDK
  928. * Fix RAM caching of 2D texture arrays
  929. * Fix Ctrl+C interrupt propagation to runtime applications
  930. * Support for InvSphere, Box and Tube solids in bam2egg
  931. * Preserve "intangible" and "level" collide flags in bam2egg
  932. * Add normalized() method to vectors
  933. * asyncFlattenStrong with inPlace=True caused node to disappear
  934. * Fix asyncFlattenStrong called on nodes without parent
  935. * Fix is_playing() check when playing an animation backwards
  936. * Windows installer no longer clears %PATH% if longer than 1024 chars
  937. * Fix inoperative -tbn/-tbnall/-tbnauto options in egg-optchar
  938. * Fix tinydisplay texture errors on shutdown
  939. * Fix mipmap filtering issues in tinydisplay renderer
  940. * Fix exception when creating intervals before ShowBase is started
  941. * Fix rare X11 .ico cursor bug; also now supports PNG-compressed icons
  942. * Add keyword argument support to make() methods such as Shader.make()
  943. * Fix compilation errors with Bullet 2.84
  944. * Fix exception when trying to pickle NodePathCollection objects
  945. * Fix error when trying to raise vectors to a power
  946. * GLSL: fix error when legacy matrix generator inputs are mat3
  947. * Now tries to preserve refresh rate when switching fullscreen on Windows
  948. * Fix back-to-front sorting when gl-coordinate-system is changed
  949. * Now also compiles on older Linux distros (eg. CentOS 5 / manylinux1)
  950. * get_keyboard_map now includes keys on layouts with special characters
  951. * Fix crash due to incorrect alignment when compiling Eigen with AVX
  952. * Fix crash when writing 16-bit .tif file (now silently downsamples)
  953. ------------------------ RELEASE 1.9.2 ------------------------
  954. This is a minor bugfix release, fixing a few minor issues that
  955. remained in the 1.9.1 release, including:
  956. * Fix compile errors with more recent versions of ffmpeg
  957. * Include .lib files for pyd modules in Windows SDK
  958. * packp3d now recognizes default egg-object-type definitions
  959. * Fix issues with sphere-into-box and box-into-sphere collisions
  960. * Texture VRAM usage is now correctly reported by pstats
  961. * Support for reading BMP files with alpha channel
  962. * Fix OpenGL crashes in very ancient OpenGL versions
  963. * Fix rare compile issues and crashes with esoteric Python set-ups
  964. * Fix crash when extracting texture that's not a multiple of 4 bytes
  965. * Work around buggy NVIDIA driver that reports _main_* shader inputs
  966. * Add version of transform_vertices that accepts a SparseArray
  967. * Clamp shininess to 0 to avoid GL error when shininess < 0
  968. * Fix various bugs in RopeNode and NurbsCurveEvaluator
  969. * Fix clock-mode Config.prc settings
  970. * NodePath render_mode setters no longer reset wireframe color
  971. * Fix constant reloading of texture when gl-ignore-mipmaps is set
  972. * BamReader now releases the GIL (so it can be used threaded)
  973. * Fix AttributeError in direct.stdpy.threading module
  974. ------------------------ RELEASE 1.9.1 ------------------------
  975. This minor release fixes some important regressions and bugs found
  976. in 1.9.0, but also introduces a few minor features.
  977. It also reintroduces the deployment tools that were absent from
  978. the previous release.
  979. The following issues were fixed:
  980. * SDK now properly installs in Mac OS X 10.11 "El Capitan"
  981. * Windows 8.1+ no longer applies DPI virtualization to Panda window
  982. * Fix ffmpeg library load issue on Mac OS X
  983. * Fix issues running maya2egg on Mac OS X
  984. * Fix compiler errors on different platforms
  985. * Fix various rare crashes
  986. * Fix crashes on shutdown in threaded pipeline
  987. * Fix low-level threading crash on ARM machines
  988. * More reliably and robustly handle failures opening OpenAL device
  989. * Textures were not being scaled to power-of-2 in some cases
  990. * Correct scaling of normal vectors with flatten operation
  991. * Correct positioning of viewing axis when showing lens frustum
  992. * Add dpi-window-resize option to auto-resize window on DPI change
  993. * Fix assertions when alpha-file-channel references unknown channel
  994. * Use OpenGL-style vertex colors by default on non-Windows systems
  995. * Default vertex column alignment is now 4 bytes
  996. * Add PNMImage premultiply/unpremultiply methods.
  997. * Fix incorrect parsing of numbers with exponents in Config.prc
  998. * Fix for reading URLs mounted via the virtual file system
  999. * Fix shader generator memory leaks and runtime performance
  1000. * Fix shader generator scaling of binormals and tangents
  1001. * Expose _NET_WM_PID to window managers in X11
  1002. * Fix a range of bugs in tinydisplay renderer.
  1003. * Don't error when setting lens far distance to infinity
  1004. * Allow passing custom lens to saveCubeMap/saveSphereMap
  1005. * Fix errors in saveCubeMap/saveSphereMap in threaded pipeline
  1006. * Fix DynamicTextFont.makeCopy()
  1007. * Make Texture memory size estimation more accurate
  1008. * Fix various window resizing issues
  1009. * Fix PandaSystem.getCompiler() value for clang (it reported gcc)
  1010. * x2egg no longer replaces face normals with vertex normals
  1011. * Include Eigen headers in Mac and Windows SDK
  1012. * Added geomipterrain-incorrect-normals setting, default=true
  1013. * DisplayInformation resolution list was missing on Windows
  1014. * Upgrade FMOD and Bullet versions on Windows and Mac OS X
  1015. * Various performance optimizations
  1016. * Fixed various other bugs not listed here.
  1017. Fixes and improvements for the runtime:
  1018. * Fix splash screen freezing in the X11 web plug-in
  1019. * pdeploy will now handle extracted files (eg. .ico and .cur)
  1020. * Added more options for customizing splash screen
  1021. * Fix missing xml and ast modules from morepy package
  1022. * Certificate dialog is now localized to various languages
  1023. * Fix packp3d error when Python file is not in a package
  1024. * Pass on failing exit status from packaged application
  1025. * Remove annoying ":Packager(warning): No such file" warning
  1026. * Fix issue installing pdeploy-generated .pkg on OS X 10.11
  1027. Fixes for the Python API:
  1028. * Fix mysterious and rare crash in tp_traverse
  1029. * Bullet step function accidentally defaulted to step size of 0
  1030. * Fix overflow of file offsets (eg. when seeking in huge files)
  1031. * Fix regression with memoryviews
  1032. * Fix hasattr/getattr of vector classes for invalid attributes
  1033. * Allow passing a long to methods accepting an int
  1034. * Fix crash when passing None to Filename constructor
  1035. * MouseWatcherGroup was erroneously not exposed in 1.9.0
  1036. * ShowBase no longer unmounts VFS when shutting down
  1037. * No longer requires setting PATH to import panda3d.*
  1038. * DirectDialog default geom is once again respected
  1039. * DirectDialog no longer overrides custom frameSize
  1040. * Fix WebcamVideo/MicrophoneAudio.getOptions() methods
  1041. Changes relating to the OpenGL renderer:
  1042. * Various performance improvements
  1043. * Fix point/line thickness setting
  1044. * Improve GLSL error reporting
  1045. * Fix Intel driver issues, particularly with geometry shaders
  1046. * Add more error checking for parameter types
  1047. * Integer shader inputs were not being converted to float properly
  1048. * Fix crash passing an undersized array to a GLSL shader input
  1049. * p3d_ColorScale et al may now be declared as vec3
  1050. * Fix flickering when using trans_model_to_apiview in Cg
  1051. * Support wireframe and point rendering modes in OpenGL ES
  1052. * Fix issue with model disappearing in rare cases with GLSL
  1053. * Fix ColorWriteAttrib not working as it should
  1054. * Allow deactivating PStats collectors for GPU timers
  1055. * Memory residency of graphics buffers now tracked by PStats
  1056. * Allow changing OpenGL coordinate system with gl-coordinate-system
  1057. Fixes for libRocket integration:
  1058. * libRocket did not work on Mac OS X in 1.9.0
  1059. * Fix inconsistent behavior with non-power-of-2 textures in rocket
  1060. * Use model-path for finding libRocket assets
  1061. * Add missing keys to libRocket keymap
  1062. * libRocket elements showed up white in tinydisplay
  1063. New features:
  1064. * Add -L (lighting) and -P (graphics pipe) pview options
  1065. * Add M_confined mouse mode that keeps cursor in window
  1066. * Add sample program demonstrating mouse modes
  1067. * bam2egg supports collision sphere and plane solids
  1068. * p3d_TransformTable GLSL input backported from 1.10 branch
  1069. * Add openal-device setting for selecting OpenAL audio output
  1070. * Add limited modification timestamp tracking for Ramdisk mounts
  1071. * Support for Autodesk Maya 2016
  1072. ------------------------ RELEASE 1.9.0 ------------------------
  1073. This is a major release with many exciting new features!
  1074. Beware of bugs.
  1075. The list below contains a subset of the changes introduced:
  1076. * We now offer 64-bit Windows and Mac OS X builds.
  1077. * Switch to MSVC 2010; no more assembly manifests.
  1078. * Cocoa port for better Mac OS X support, esp. newer versions.
  1079. * We now compile the Python modules into panda3d/*.pyd modules;
  1080. no more imp.load_dynamic hackery needed.
  1081. * Support for GPU profiling in OpenGL, see pstats-gpu-timing
  1082. * sRGB framebuffers, see framebuffer-srgb
  1083. * sRGB texture support, see Texture::F_srgb et al.
  1084. * Integer vector support, including passing to shaders
  1085. * Native .ogg vorbis and .wav loader (does not require ffmpeg)
  1086. * FFmpeg support is a separate plug-in module now, libp3ffmpeg.
  1087. * Sample programs are now part of the source code repository
  1088. * Can be built with Python 3 (highly experimental)
  1089. * Improvements to Windows installer
  1090. * M_filled_wireframe rendering mode
  1091. * Support specifying sampler state separate from textures
  1092. * Support for bindless texture clearing
  1093. * Texture LOD bias and min/max LOD settings
  1094. * Framebuffer properties allows separate red/green/blue bits
  1095. * Explicit float color and float depth specification in fbprops
  1096. * Coverage samples settable via FrameBufferProperties
  1097. * Stereo buffer implementation in OpenGL via FBOs
  1098. * Support enumeration of pixel formats in WebcamVideo
  1099. * Frame rate meter can be configured to show milliseconds
  1100. * Changes to improve font crispness with default settings
  1101. * Fix assertion error when using more than one GraphicsEngine
  1102. * raw-w, raw-a, etc. keyboard events for layout-independent input
  1103. * Allow querying active keyboard layout via win.get_keyboard_map()
  1104. * Distinguish between lmeta and rmeta keys on Mac OS X
  1105. * Floating-point image manipulation API, support float tiffs
  1106. * Various new 16-bit and 32-bit and int texture formats
  1107. * Man pages are now available for the majority of utilities
  1108. Pipeline:
  1109. * Fix bugs with <Collide> group transformations in .egg
  1110. * Don't create unnecessary intermediate node when loading .egg
  1111. * bam2egg supports materials, and correctly converts animations
  1112. * dae2egg has some skeletal animation support
  1113. * Support Maya versions up to 2015
  1114. OpenGL renderer changes:
  1115. * Error checking is now OFF by default for performance reasons,
  1116. set gl-check-errors or gl-debug to true to enable.
  1117. * GL 4.2 shader_image_load_store support (incl. multi-bind)
  1118. * Layered render-to-texture (using geometry shaders)
  1119. * Seamless cube maps (on by default), see gl-cube-map-seamless
  1120. * Added gl-debug for improved debug output support
  1121. * Added GL object labels when gl-debug is enabled
  1122. * gl-dump-compiled-shaders can be used to dump program binaries
  1123. * Direct3D-style NT_packed_dabc vertex arrays now directly supported
  1124. * Native rendering of line strips, using primitive restart
  1125. * Immutable texture storage support (disabled by default)
  1126. * Bindless texture support (disabled by default)
  1127. * Specular component is now computed separately in FFP
  1128. Shader system:
  1129. * Support for tessellation shaders
  1130. * Support for compute shaders via ComputeNode
  1131. * GLSL preprocessor with "#pragma include" support
  1132. * Much better coverage of shader inputs in GLSL
  1133. * GLSL error messages now show source filename
  1134. * Fixes apiclip_of_x shader inputs
  1135. * Matrices can be passed directly to setShaderInput
  1136. * Support binding images to shaders
  1137. * Viewport array support
  1138. Optimizations and performance improvements:
  1139. * Use of C++11 move semantics to reduce refcounting overhead
  1140. * Build with Eigen by default for faster linear math
  1141. * Dramatic overhead reduction of generated bindings
  1142. * Streamline culling process
  1143. * Tighter bounding volume generation
  1144. * Take advantage of CPU features for bit operations
  1145. * Circumvent bounding volume generation when not required
  1146. * Optimizations for interned strings
  1147. * Use of GCC atomics should improve 64-bit Linux performance
  1148. API features:
  1149. * Buffer protocol support for textures and arrays
  1150. * Interrogate supports various C++11 features
  1151. * Expose TextGlyph interfaces for making custom text renderers
  1152. * Better handling of default arguments for many functions
  1153. * Cyclic references can sometimes be tracked through tasks
  1154. * ShowBase clean teardown possible
  1155. * API documentation is more accurate
  1156. * Improve interfaces for interop with other applications
  1157. Deprecated features:
  1158. * Use of pandac.PandaModules is discouraged; use panda3d.core
  1159. * Deprecate DirectStart and global run() function; use ShowBase
  1160. * Remove old decal system
  1161. * Remove Direct3D 8 renderer
  1162. * Remove M_light_vector tex gen mode and FFP-based bump mapping
  1163. Bug fixes:
  1164. * Various point rendering issues are fixed now
  1165. * Fix pview issue with 1-frame and/or multiple animations
  1166. * Fixes for multisampling in FBOs
  1167. * Fix aspect ratio of frame rate meter
  1168. * Support NaN and infinity values in Config.prc variables
  1169. * Fixes for webcams on Linux that do not output Huffman tables
  1170. * Better support for non-basic Cg shaders on non-NVIDIA cards
  1171. * Many others
  1172. ------------------------ RELEASE 1.8.1 ------------------------
  1173. This is a bugfix release, fixing many issues in 1.8.0.
  1174. However, there may still be some (minor) bugs.
  1175. * Fix a host of issues related to GLSL shaders
  1176. * Fix incorrect registry entry for Python in Windows installer
  1177. * pdeploy generated binaries with wrong architecture on Linux
  1178. * Fix runtime error in pdeploy when building for Windows
  1179. * Support for Maya 2013
  1180. * ARToolKit now also works on Mac OS X
  1181. * WM_CLASS can be set using x-wm-class and x-wm-class-name
  1182. * No longer crashes when Xrandr is not supported
  1183. * Aux normals are now also normalized when no lights are applied
  1184. * Fix hidden cursor when switching fullscreen on Mac OS X
  1185. * PackageInstaller didn't add packages to system paths
  1186. * Allow disabling custom cursor on Windows
  1187. * Fix incorrect panning of 3D audio
  1188. * Fix omission of textures of non-standard format in ShaderGenerator
  1189. * Fix compile issue with newer gcc versions
  1190. * Fix circular reference held by ActorNode
  1191. * Window is now correctly centered on Windows
  1192. * Fix confusion with depth range of Lens::project()
  1193. * Now successfully compiles against recent SSL versions on Windows
  1194. * Fix incorrect Cg TEXUNIT0 binding during the first frame
  1195. * TextNode::set_text_scale now correctly scales spaces as well
  1196. * Expose AudioLoadRequest to Python (for async audio loading)
  1197. * Support for the libRocket debugger
  1198. * Fix newline entry in libRocket
  1199. ------------------------ RELEASE 1.8.0 ------------------------
  1200. This is a major release, with several big new features. As such,
  1201. it is likely to contain bugs.
  1202. * True threading support now enabled in the default build
  1203. * Pipelined rendering: app, cull, and draw can run in parallel, each
  1204. in their own thread
  1205. * Web plugin is more robust, and better supports Safari and Chrome
  1206. * Plugin runs properly when the username contains non-ASCII characters on Windows
  1207. * Added appRunner.p3dFilename and appRunner.p3dUrl to provide p3d
  1208. location
  1209. * Multifiles (and p3d files) now make a distinction between binary and
  1210. text files
  1211. * OccluderNode added for explicit occlusion culling
  1212. * Ambient occlusion generation for terrain
  1213. * Fixed bug where Windows installer wipes %PATH% when it's too long
  1214. * Added fog support to the shader generator
  1215. * Added normal_gloss texture mode
  1216. * Added a custom color option to the cartoon filter
  1217. * Support for texture arrays in shaders
  1218. * Better shader support in pandadx9
  1219. * Fix some issues with cube map buffers
  1220. * Can be compiled to use double-precision floats throughout, instead
  1221. of the default of single-precision floats. (Graphics drivers still
  1222. use single-precision floats, of course.)
  1223. * Can be compiled with the optional Eigen library to provide SSE2 support
  1224. * Can be compiled with SpeedTree support
  1225. * Can be compiled on MSVS2010, and/or Win64. (These builds not
  1226. provided by default.)
  1227. * Support for the Bullet physics engine
  1228. * Support for the libRocket GUI library
  1229. * Support for stereo/multiview textures
  1230. * Substantial performance improvements to movie textures
  1231. * TGA files with alpha channel now load correctly
  1232. * New "Ramdisk" mount type available for the VFS
  1233. * The VFS is now writable for ramdisk files and true on-disk files
  1234. * pdeploy -i generates a custom icon for the installed game
  1235. * wx and tk work better on OSX
  1236. * Panda windows can be embedded within wxPython windows on all
  1237. platforms (including OSX) with the new WxPandaWindow class
  1238. * Added base.pixel2d for pixel-based 2-D coordinates
  1239. * Python-based swizzling of Panda vectors, e.g. vec2.xyxy
  1240. * Python programmers can now optionally use the original unmangled C++
  1241. name for methods and classes, e.g. model.set_pos(LPoint3f(1, 2, 3)).
  1242. * Command-line filename globbing now supported on Win32, e.g. egg-texture-cards *.png
  1243. * DirectGui works with nonstandard coordinate-system in effect
  1244. * Egg loader handles double-sided polygons a little differently by
  1245. default now, for better render performance but more memory usage
  1246. (use "egg-emulate-bface 0" to restore the old behavior if needed).
  1247. ------------------------ RELEASE 1.7.2 ------------------------
  1248. This release fixes several bugs that were found in 1.7.1.
  1249. * Fix crash on GLX implementations that have no FBConfig support
  1250. * Fix trouble with buffers on Mac OS X
  1251. * Un-break shadow samplers in Cg shaders
  1252. * Fixes for relative mouse mode on OSX
  1253. * Pdeployed apps on Windows no longer show a console window
  1254. * Fix relative file paths for license files in pdeploy
  1255. * Ppatcher no longer writes out faulty checksums
  1256. * Fix plugin failure to read from cache
  1257. * Include missing X11 extension libs in runtime distribution
  1258. * Fix disappearing windows with CEGUI's OpenGL renderer
  1259. * Fixes for makepanda on FreeBSD
  1260. * Fix LightRampAttrib crash
  1261. * Fix bug with two-parameter Lens::set_fov
  1262. ------------------------ RELEASE 1.7.1 ------------------------
  1263. This release introduces several significant bugfixes,
  1264. but also introduces various minor new features. Although
  1265. it is a minor release, it may also introduce new bugs.
  1266. * Many improvements and bugfixes to pdeploy
  1267. * Vectors now support swizzle/write masks (e.g vec.xz)
  1268. * Fixes for depth buffer instabilities on Windows
  1269. * Better webcam support on Linux using Video4Linux
  1270. * Custom cursor support in X11
  1271. * Static functions that return a list are now properly wrapped
  1272. * ODE objects now have getId() exposed to Python
  1273. * NodePath.findMaterial now works properly
  1274. * Remove unnecessary dependency on GLU
  1275. * Arithmetic operators to PNMImage
  1276. * Various OpenGL ES-related bugfixes
  1277. * Support for EGL and OpenGL ES in makepanda
  1278. * Fix a crash with the Maya converters
  1279. * Include missing p3d tools on Windows
  1280. * Include tinyxml as part of the source
  1281. * Updates to PandAI
  1282. * Compile issues with latest OpenSSL fixed
  1283. * Fix static-init ordering issues with OpenSSL
  1284. * Several other bugfixes and features not listed here
  1285. ------------------------ RELEASE 1.7.0 ------------------------
  1286. This major release introduces tons of cool new features. As it
  1287. is highly experimental, it is not recommended for production use.
  1288. * Support for running Panda3D apps in a browser via web plugin
  1289. * Fully automatic shadow mapping
  1290. * Easy to use distribution and packaging framework
  1291. * Integrated support for NVIDIA PhysX
  1292. * Support for GLSL shaders
  1293. * Geometry shaders, both in Cg and GLSL
  1294. * Improved Cg support
  1295. * Hardware geometry instancing support
  1296. * Runtime fullscreen toggle
  1297. * Unix/X11 resolution querying/switching support
  1298. * Experimental Unix/X11 support for relative mouse mode (via xf86dga)
  1299. * New, cleaner import conventions, replacing PandaModules
  1300. * Parallax mapping
  1301. * Support for OpenGL ES 1 and 2
  1302. * Experimental Screen Space Ambient Occlusion
  1303. * New collision solid: box
  1304. * Working FreeBSD support
  1305. * Blur / Sharpen postprocessing filter
  1306. * Many improvements to the Shader Generator
  1307. * Fixes and improvements to DistributedObject network system
  1308. * New AI libraries
  1309. * Added MeshDrawer2D
  1310. * Most Panda objects now work with the pickle/cPickle and copy modules.
  1311. * Windows build now compiled for Python 2.6
  1312. * Tons of new features and bugfixes
  1313. ------------------------ RELEASE 1.6.2 ------------------------
  1314. This is mainly a bugfix release. Also fixes some bugs that
  1315. were accidentally introduced in 1.6.1.
  1316. * Fixed a static-init issue in ptloader on Windows
  1317. * Fixed texture scaling issue when using buffers
  1318. * x2egg is no longer broken
  1319. * Threading in OSX build fixed
  1320. * Fixed issue with flickering colors in Shader Generator
  1321. * Eggcacher now uses less RAM
  1322. * Missing 'models' dirs in packpanda games fixed
  1323. * Eggcacher step in Panda3D installer is now optional
  1324. * Fixes broken shortcut links in Start Menu on Windows
  1325. * Shader Generator now supports clip planes
  1326. * Bug with combine modes in Shader Generator fixed
  1327. * Fixed bug with Texture::make_copy()
  1328. * Bug with Actor LOD fixed
  1329. * Fixed bug with missing geometry in Collada converter
  1330. * OdeUtil.collide instability fixed
  1331. * OdeBody setData/getData methods exposed to Python
  1332. ------------------------ RELEASE 1.6.1 ------------------------
  1333. This release fixes some bugs found in 1.6.0, and adds some
  1334. minor features as well.
  1335. * Threading layer is now enabled by default
  1336. * cTrav.showCollisions fixed
  1337. * Fixed broken MovieTexture
  1338. * OpenAL is now stable on Linux, too
  1339. * OpenAL now supports dynamic playrate changing
  1340. * MayaPandaTool now handles NURBS correctly
  1341. * Fixed particle panel and directtools bugs
  1342. * Fix crash with collada exporter on Windows
  1343. * ARToolkit jittering fixed
  1344. * Now possible to override shader vertex/fragment profiles
  1345. * Maya exporter fixed on OSX
  1346. * Fixed depth texture crash for padded textures
  1347. * Fixed bug that made OdeUtil.collide return empty geoms
  1348. * Fixed crash with render.flattenStrong() when using trackball
  1349. * Several improvements to the ODE layer
  1350. * Performance improvements to GeoMipTerrain
  1351. * GeoMipTerrain.setBorderStitching to fix seams between terrains
  1352. * installpanda.py for installing Panda on Linux without deb/rpm
  1353. * Several other minor bugfixes
  1354. ------------------------ RELEASE 1.6.0 ------------------------
  1355. This release introduces several major new features and
  1356. significant bugfixes. It is likely to be buggy, like most
  1357. x.x.0 releases.
  1358. * Lightweight threading framework without runtime overhead
  1359. * Makepanda now fully supports OSX
  1360. * DDS textures are now supported
  1361. * COLLADA->egg converter added
  1362. * New C++-based Task system, which includes async threading support
  1363. * Support for asynchronous on-demand loading of textures and/or animations
  1364. * New software-based renderer "tinydisplay"
  1365. * More pythonic features: iterable methods, implicit parameter casting
  1366. * Packpanda now also supports Linux
  1367. * Added libsquish support for DXT compression
  1368. * New MeshDrawer class for realtime mesh manipulation
  1369. * Infamous FBO bug fixed
  1370. * Preliminary support for Volumetric Lighting
  1371. * Shader k-parameters can now contain underscores
  1372. * Fixed OpenCVTexture and ARToolKit on Linux
  1373. * GeoMipTerrain now supports multi-channel heightmaps
  1374. * GeoMipTerrain features new near/far LOD system
  1375. * GeoMipTerrain performance improved
  1376. * CallbackNode added to support low-level drawing callbacks from Python
  1377. * Fixed some minor but annoying OpenAL/FFMpeg issues
  1378. * Fixed bug with lcontrol and rcontrol on Linux
  1379. * Fixed bug regarding icon filenames
  1380. * Multisampling fixed on Linux and OSX
  1381. * Left and right scrolling events now available
  1382. * Several improvements to API reference
  1383. * ShaderGenerator now supports several more blend modes and color scale
  1384. * .x converter now supports AnimTicksPerSecond
  1385. * vfs-mount-url can load models directly off the web
  1386. * Smoother transitions in FadeLodNode
  1387. * Dynamically-generated outline on fonts: loader.loadFont(outlineWidth = xxx)
  1388. * Texture.getRamImageAs()
  1389. * base.toggleTexMem()
  1390. * Text generation performance optimization
  1391. * Various performance optimizations
  1392. * Several more minor bugs fixed
  1393. ------------------------ RELEASE 1.5.4 ------------------------
  1394. This is a bugfix release, fixing the problems found in 1.5.3.
  1395. * Fixes packpanda crash
  1396. * Linux build accidentally got configured for OpenAL
  1397. * EggTexture now writes wrap modes and types correctly.
  1398. * Fixes an occasional crash in TextureAttrib
  1399. * DirectEntry no longer crashes when moving cursor in a full box
  1400. * Several bugs in RigidBodyCombiner fixed
  1401. * Normals generated by GeoMipTerrain are now correct
  1402. * Bugs fixed in DirectGrid
  1403. * Linux users can now use WindowProperties.setParentWindow
  1404. * Fmod now compiles on 64-bits
  1405. * Fixed several bugs in the API reference generator
  1406. * EggNurbsSurface is now exposed to Python
  1407. * Fixes a bug in PGButton
  1408. * GeoMipTerrain set_heightfield fixed
  1409. * Several bugs in the Max exporter:
  1410. - Now generates binormals and tangents
  1411. - Pview output fixed
  1412. - Overwrite confirmation fixed
  1413. - Export type 'Both' now works correctly
  1414. * Several other bugs not listed above.
  1415. ------------------------ RELEASE 1.5.3 ------------------------
  1416. This release fixes most of the remaining bugs, but it adds
  1417. some new features as well.
  1418. * License changed to BSD
  1419. * Fixes x-file parser for real, this time.
  1420. * Fixes serious bug in shader generator
  1421. * Adds MSVCR71 and MSVCP71 back to the distro (for python)
  1422. * Fixed a bug in GeoMipTerrain
  1423. * Adds support for .egg.pz to packpanda --bam
  1424. * Turns on libpandaode support
  1425. * Mayapandatool fixed
  1426. * Added support for 3dsmax 2009
  1427. * Max exporter overhauled
  1428. * Improved support for 64-bits, gcc 4.3 and OSX
  1429. ------------------------ RELEASE 1.5.2 ------------------------
  1430. This fixes just one serious bug: release 1.5.1 accidentally
  1431. reversed the TextureStage sort order.
  1432. ------------------------ RELEASE 1.5.1 ------------------------
  1433. Mostly a bugfix release, but adds some minor features too.
  1434. - The x-file parser now is back to being case-insensitive, as it should be.
  1435. - Panda plugins now use an explicit plugin-path.
  1436. - Better DLL-hell protection under windows.
  1437. - Added GeoMipTerrain (but no docs yet)
  1438. - Using python -E in the start menu - really, this time.
  1439. - Linmath classes now initialized when using python.
  1440. - ConfigVariableSearch
  1441. - Implicit sort order for texture attribs.
  1442. - OpenAL audio manager now gives control over streaming vs preloaded sounds.
  1443. - Preliminary support for 64-bit linux (but thirdparty libs missing).
  1444. - Fixes a dozen or so assorted bugs.
  1445. ------------------------ RELEASE 1.5.0 ------------------------
  1446. * Shader Generator means advanced rendering without
  1447. having to manually write shaders. Includes:
  1448. - Per-Pixel Lighting
  1449. - Normal Maps
  1450. - Gloss Maps
  1451. - Glow (Self-Illumination) Maps
  1452. - HDR tone mapping
  1453. - Cartoon shading
  1454. * Class 'CommonFilters' makes it easy to do image postprocessing:
  1455. - Bloom Filter
  1456. - Cartoon Inking
  1457. - More coming soon.
  1458. * Maya exporter now supports normal maps, gloss maps, glow maps.
  1459. * Now compiled for Python 2.5
  1460. * Adds support for Maya 2008 export.
  1461. * Lots of small tweaks, bugfixes, performance improvements, etc.
  1462. ------------------------ RELEASE 1.4.2 ------------------------
  1463. * Added code for mouse-trail logging.
  1464. * Fixed a minor bug in the new OpenAL code.
  1465. * The installer now uses less memory.
  1466. * Now easier to compile with recent versions of SSL.
  1467. * Minor bugfix in exposeJoint
  1468. * Added config variable: basic-shaders-only
  1469. * graphicsEngine.removeWindow() and graphicsOutput.setOneShot() fixed.
  1470. * Roaming ralph sample now uses collision detection correctly.
  1471. ------------------------ RELEASE 1.4.1 ------------------------
  1472. This release:
  1473. * fixes a couple of small bugs
  1474. * adds support for the new OpenAL/FFMpeg unified sound/video system.
  1475. * renames the sample programs in a more sensible way
  1476. ------------------------ RELEASE 1.4.0 ------------------------
  1477. This release incorporates lots of small, incremental
  1478. improvements.
  1479. * Model-cache enabled by default in prepackaged release.
  1480. * Now compiling with visual studio 2005.
  1481. * Plugin installation now slightly harder --- see instructions in plugins dir.
  1482. * Improved OSX support: mouselook, fmod fixes, icon filename.
  1483. * Better memory usage tracking from pstats.
  1484. * Removed dependencies on NSPR.
  1485. * New default-model-extension prc variable (instead of old implicit-extension behavior)
  1486. * New arc emitter in particle system.
  1487. * Multiple different Actors can be flattened into one node.
  1488. * Texture compression in DX8, DX9.
  1489. * New features to support low-memory platforms.
  1490. * ParametricCurveDrawer etc. officially deprecated in favor of RopeNode.
  1491. * DynamicTextFont::RenderMode allows generating geometric fonts (instead of always using texture-based fonts).
  1492. * Some integrated support for ODE (not yet polished and ready)
  1493. * New RigidBodyCombiner unifies independently moving bodies into a single Geom as a rendering optimization.
  1494. * Support for depth-stencil textures.
  1495. * Better support for fullscreen mode on Linux.
  1496. * Panda GL/DX windows can be subordinate to other windows (Win32 only).
  1497. * Better multithreaded protection.
  1498. * Interrogate correctly handles "const" vs. non-const objects.
  1499. * PlaneNode::set_clip_effect allows user-defined cull planes (in addition to clip planes).
  1500. * Several low-level rendering optimizations.
  1501. * Simple occlusion culling with PipeOcclusionCullTraverser.
  1502. * Optional bounding boxes (instead of spheres): "bounds-type box", "bounds-type best"
  1503. * Addition of eggcacher utility to preload model-cache.
  1504. * In source tree, added 'skel' directory to make it easier for newcomers to extend panda.
  1505. * The obsolete config variable framebuffer-mode has been removed.
  1506. I have no doubt that there will be a few significant bugs in this release, like all X.X.0 releases. - Josh
  1507. ------------------------ RELEASE 1.3.2 ------------------------
  1508. Bugfix release. This fixes a few problems in 1.3.1
  1509. * Sound system won't initialize properly under linux: Fixed.
  1510. * Panda DLL names now all start with "libp3" or "libpanda"
  1511. * Normals reversed in heightfield tesselator: fixed.
  1512. ------------------------ RELEASE 1.3.1 ------------------------
  1513. Bugfix release. This fixes a few problems in 1.3.0
  1514. * Sound system won't initialize properly under linux: Fixed.(Update: Not fixed)
  1515. * Panda not compatible with SElinux: mostly fixed, except fmod.
  1516. * Max exporter and importer broken: Fixed.
  1517. * Minor problem involving gsg handling in showbase: Fixed.
  1518. ------------------------ RELEASE 1.3.0 ------------------------
  1519. This release contains several new features, and as such, it might be
  1520. buggy. However, we've been testing it internally for a couple weeks,
  1521. and it seems to be okay. It contains the following new features:
  1522. * Stencil buffers and stencil operations now supported.
  1523. * Sound API now supports DSP and better support for large MP3s.
  1524. * Video uses FFMPEG instead of DirectShow - no more codec issues.
  1525. * Heightfield terrain.
  1526. * Support for intra-frame animation interpolation.
  1527. * Use of 'import *' now only imports correct symbols.
  1528. * Various minor improvements to the particle system.
  1529. * Scene editor at least partially operational (alpha level)
  1530. * Removed most of the 65,536 vertex-per-mesh limits.
  1531. * Various low-level optimizations.
  1532. * Support for threaded model loads (only in CVS, not in distro).
  1533. * Support for 'model-cache-dir', which caches a BAM each time you load an EGG.
  1534. * OnscreenText/DirectLabel can contain embedded 3D models inside the text.
  1535. ------------------------ RELEASE 1.2.3 ------------------------
  1536. The last release was a disaster:
  1537. * I failed to fix packpanda.
  1538. * I broke the tcl/tk stuff.
  1539. * I added ppythonw, and it wasn't reliable.
  1540. So basically, this release fixes packpanda and tcl/tk. It doesn't
  1541. fix ppythonw yet (I don't know what's wrong), but it does disable
  1542. it temporarily. It keeps the few things from 1.2.2 that were worth
  1543. keeping.
  1544. ------------------------ RELEASE 1.2.2 ------------------------
  1545. This is a minor bugfix release.
  1546. * Adds 'ppythonw', a version of ppython that doesn't
  1547. open a console window.
  1548. * If you have a bad fmod DLL in your windows folder,
  1549. this version compensates.
  1550. * Fixes a small bug in the VRML-to-egg converter.
  1551. * Small stylistic improvements in some sample programs.
  1552. ------------------------ RELEASE 1.2.1 ------------------------
  1553. This release is likely to be much more stable than its predecessors.
  1554. It contains many new features:
  1555. * lots of performance optimizations
  1556. * a preliminary OSX port
  1557. * new modes for animation blending
  1558. * easier partial-body animations
  1559. * more powerful shader-to-engine interface
  1560. * better support for rotating bodies in physics engine
  1561. * support for compressed model files
  1562. * multiple render targets (ie, glDrawBuffers)
  1563. * support for stereo rendering
  1564. * more complete API reference manual
  1565. * ability to control mipmaps explicitly
  1566. * better tools for debugging offscreen buffers
  1567. * new sample programs
  1568. * a number of packpanda repairs
  1569. ------------------------ RELEASE 1.1.0 ------------------------
  1570. This is a BETA release. It's pretty reliable, but there are still a
  1571. few quirks here and there. Over the summer, Panda3D was overhauled
  1572. top to bottom. The new code is dramatically improved, but it needs a
  1573. little bit of testing. The new features are:
  1574. * Much faster rendering of high-poly models.
  1575. * Dramatically improved vertex and pixel shader support.
  1576. * New demo programs using shaders and render-to-texture.
  1577. * Play movies by using an AVI as a texture (windows only).
  1578. * Python scripting uses much faster python to C++ interface.
  1579. * Support for procedurally-created geometry (eg, fractals, etc).
  1580. * Cleaner, simpler internal data structures.
  1581. * Comes with Python 2.4 support built-in.
  1582. * A lot more.
  1583. The new demo programs are:
  1584. * Render to Texture Demo
  1585. * Cartoon Shader Demo
  1586. * Motion Trails Demo
  1587. * Procedural Geometry (Fractals) Demo
  1588. * Normal Mapping Demo
  1589. However, a caution: this is a BETA release: reasonably stable, but
  1590. not quite perfect. Please send us your bug reports.
  1591. ------------------------ RELEASE 1.0.5 ------------------------
  1592. UPDATE: this release broke support for visual studio. Use
  1593. panda3d 1.0.4 if you wish to compile panda from scratch using
  1594. visual studio.
  1595. This release consists mainly of compatibility improvements.
  1596. * Now compiles under MS Visual Toolkit (makefile changes)
  1597. * Now compiles under Mandrake 10.1 (a fix in the makefile)
  1598. * Now compiles under Debian Sarge (a fix in the VRML lexer)
  1599. * Now compiles under Ubuntu HH (same as DEBIAN SARGE)
  1600. * Add code for building debian 'deb' archives.
  1601. * Fix scene editor and particle panel so they work on linux.
  1602. * Add support for --no-python to makepanda.
  1603. * Tidied up makepanda a bit.
  1604. ------------------------ RELEASE 1.0.4 ------------------------
  1605. * This version includes the new Max exporter and the new Maya
  1606. export panel.
  1607. * We have added the --genman option to makepanda (to
  1608. regenerate the API reference manual). This uses the epydoc
  1609. documentation-generation system.
  1610. * Several bugs in the new tutorials have been repaired.
  1611. * A bug in fmod positional audio has been fixed.
  1612. * Makepanda now puts the maya and max plugins in a
  1613. separate 'plugins' directory, for convenience.
  1614. * The 'libpandaegg' library has been exported to python.
  1615. ------------------------ RELEASE 1.0.3 ------------------------
  1616. * The binary release contains a brand new collection of
  1617. sample programs. The new sample programs are much better.
  1618. * If you install the windows binary release, the
  1619. sample programs can now be run from the start menu.
  1620. * Lighting under DirectX was broken. This has been repaired.
  1621. * The binary release has been compiled with support for pstats.
  1622. (Previously, it was compiled with pstats disabled).
  1623. * Various changes to make panda3d more compatible with
  1624. the 'epydoc' documentation-generation system.
  1625. ------------------------ RELEASE 1.0.2 ------------------------
  1626. This is a bugfix release.
  1627. * makepanda contained a bug: it was compiling maya2egg6
  1628. against the Maya 5.0 libraries, making it largely useless.
  1629. This is fixed.
  1630. * Maya2egg65 has been added, for Maya 6.5 users.
  1631. * The configuration combo "want-tk=false, want-directtools=true"
  1632. used to confuse panda, because directtools uses Tk. Now
  1633. it's smart enough to do the right thing.
  1634. * When you ask controlJoint to create a control node for
  1635. you, it initializes the control node to the joint's initial
  1636. position.
  1637. * The scene editor supposedly works now. We'll see.
  1638. * The models directory was missing the animation 'panda-walk4',
  1639. which is necessary for the tutorial.
  1640. * A new directory 'win-extras' has been added to the
  1641. thirdparty tree. This contains some miscellaneous python
  1642. libraries needed at the Entertainment Technology Center.
  1643. The script that builds the windows installer will include
  1644. these libraries in the distribution.
  1645. ------------------------ RELEASE 1.0.1 ------------------------
  1646. This is a bugfix release.
  1647. * In the previous binary release, Config.prc did not contain a
  1648. load-display line. This confuses pview. Pview is being fixed,
  1649. but until then, the load-display line has been restored.
  1650. * The Max and Maya plugins were inadvertently omitted from the
  1651. previous binary release. This has been corrected.
  1652. * An error in the distributed object networking layer has
  1653. been fixed. The error only affected those who were trying to
  1654. write LAN games using the CMU LAN server and p2p messages.
  1655. * An error in the physics code has been corrected.
  1656. * Python Megawidgets (pmw), which is required for "directtools",
  1657. was not supplied in the previous release. We are now including
  1658. pmw. In the Linux RPMs, to avoid overwriting any
  1659. distribution-supplied pmw package, we put this package
  1660. into /usr/share/panda3d.
  1661. * To be consistent, we moved all the other python code into
  1662. /usr/share/panda3d as well. This requires a file 'panda.pth'
  1663. in the python lib directory.
  1664. * In the binary RPMs, the file permissions of the python
  1665. source files have been changed to 555, so that even if root
  1666. runs panda, the '.pyc' files will not be modified or regenerated.
  1667. ------------------------ RELEASE 1.0.0 ------------------------
  1668. Configuration, installation, and execution environments:
  1669. * This is the introduction of the new Panda version numbering
  1670. system. The Panda version will be represented with three
  1671. dot-separated numbers. The first number, the major version, will
  1672. change only very rarely. The second number, the minor version,
  1673. will increment frequently, with each new feature release. The
  1674. third number will increment as needed to indicate bugfix releases
  1675. on the minor version.
  1676. * Use PandaSystem::get_version_string() (or
  1677. PandaSystem.getVersionString() in Python) to return the version
  1678. number of the currently-running Panda.
  1679. * New runtime config system allows for dynamic loading of prc files
  1680. and supports querying of available variable names. Use
  1681. ConfigVariableString, ConfigVariableBool, etc. to get a value from
  1682. the prc file(s); use the ConfigVariableManager and
  1683. ConfigPageManager classes (or the cvMgr and cpMgr global objects
  1684. in Python) to make general queries.
  1685. * The ppremake build system now properly detects intra-tree
  1686. dependencies, but only if each tree is fully built and installed
  1687. before ppremake is run within the next dependent tree. Requires
  1688. using ppremake version 1.18 or higher.
  1689. Miscellaneous:
  1690. * New support for encrypted streams, including encrypted subfiles
  1691. within a multifile, using the OpenSSL encryption library. Adds
  1692. pencrypt and pdecrypt programs.
  1693. * The default port for PStats is now 5185, to avoid a conflict with
  1694. Instant Messenger.
  1695. * New "smooth" checkbox on PStats graphs provides a better sense of
  1696. overall trends when graphs are noisy.
  1697. * The meaning of the three components of HPR angles has been
  1698. officially changed, in particular the meaning of the R component.
  1699. This change was introduced to make the three components more
  1700. consistent with each other, and to make P and R work together in a
  1701. more sensible way. Existing code which used hard-coded HPR angles
  1702. may be invalidated by this change. To convert existing code, you
  1703. should use the global function old_to_new_hpr() to determine what
  1704. new HPR triple that corresponds to an old HPR triple. As a
  1705. temporary stopgap, you may define temp-hpr-fix 0 in your prc file.
  1706. * Add support for weak reference counts using the WeakPointerTo
  1707. class.
  1708. * Add optional support for STL's semistandard hashing containers,
  1709. e.g. hash_map and hash_set.
  1710. * Panda no longer requires any registry keys or environment
  1711. variables. This means it is now possible to run panda directly
  1712. from a CD, install multiple copies of panda on a single machine,
  1713. or install panda by copying the tree from another computer.
  1714. Note that the installer does add the panda 'bin' directory to
  1715. your PATH, and it does store an uninstall key in the registry,
  1716. but neither of these is needed for panda to function.
  1717. * The 'makepanda' build system is now capable of building
  1718. prepackaged games for Windows. These prepackaged games are simply
  1719. copies of panda with the game code included, some of the
  1720. unnecessary stuff stripped out, and some changes to the start
  1721. menu. See "Airblade - Installer" on the panda downloads page
  1722. for an example.
  1723. * This is the first release to include not just a binary installer
  1724. for windows, but also binary RPMs for fedora 2, fedora 3, and
  1725. redhat 9.
  1726. * All of the sample programs have been tested. The ones that didn't
  1727. work have been removed, the ones that do work have been (lightly)
  1728. documented.
  1729. * In the Win32 binary release, the 'config.prc' file has been moved
  1730. to the 'etc' directory. This is to make it consistent with the
  1731. Linux version.
  1732. Rendering system:
  1733. * Multitexture support is now part of Panda. This introduces the
  1734. TextureStage and TexCoordName classes, as well as new interfaces
  1735. like NodePath::add_texture(). As of the present release,
  1736. multitexture is only supported when using the OpenGL renderer.
  1737. * Support for programmable shaders is now possible using the Cg
  1738. shader language. Assign a CgShaderAttrib to a node to apply a
  1739. programmable shader.
  1740. * New support for the Helix library allows playing of a streaming
  1741. movie in a Panda texture. Presently only supported on Windows.
  1742. * Deprecated the old "win-origin-x" and "win-origin-y" prc variables
  1743. in favor of "win-origin", which takes two numbers separated by a
  1744. space. Similarly with "win-width" and "win-height", in favor of
  1745. "win-size".
  1746. * Deprecated the old Camera::set_scene() interface; now a Camera
  1747. implicitly renders whatever scene graph it is parented to.
  1748. * Removed the old GraphicsLayer and GraphicsChannel classes.
  1749. Instead of using these interfaces, you can now create any number
  1750. of DisplayRegions directly on the window.
  1751. * Offscreen render-to-a-texture will now be properly oriented under
  1752. DirectX (previously, it would render the texture image upside-down
  1753. and backward).
  1754. * Support for automatic keystone correction caused by an off-axis
  1755. physical projector using Lens::set_keystone().
  1756. * New framebuffer-mode prc variable allows explicit control over the
  1757. default framebuffer properties requested by Panda, including
  1758. whether software or hardware rendering is required.
  1759. * Added "multisample" transparency mode (alpha keyword "ms" in an
  1760. egg file), which allows good-quality transparency (especially for
  1761. alpha cutouts) without requiring back-to-front sorting, and
  1762. without artifacts from improper sorting. This does require
  1763. special multisample hardware capabilities, however. Presently
  1764. supported in OpenGL mode only. Automatic fallback to "binary"
  1765. transparency mode if multisample is not supported on a given
  1766. platform.
  1767. * New cursor-filename and icon-filename config variables replace the
  1768. old win32-mono-cursor and win32-window-icon variables. Also,
  1769. runtime control over these properties is now provided by the
  1770. WindowProperties class.
  1771. * Better management of potential memory leaks due to cyclic
  1772. reference counts in the RenderState and TransformState caches.
  1773. Now cycles are automatically detected and broken.
  1774. Scene graph:
  1775. * GeomNodes now have a CollideMask, just like CollisionNodes, which
  1776. deprecates the old set_collide_geom() interface to detect
  1777. collisions with visible geometry. There is a new NodePath
  1778. interface for querying and setting the collide masks for single
  1779. nodes or for entire subgraphs.
  1780. * New NodePath interfaces to control lighting eliminate the need to
  1781. create an explicit LightAttrib. The new lighting interfaces are
  1782. designed to be similar to the new multitexture interfaces.
  1783. * New NodePath interfaces to control the texture matrix, including a
  1784. new project_texture() method to enable hardware-assisted
  1785. projective texturing.
  1786. * New NodePath::flatten_multitex() interface to bake in certain
  1787. kinds of multitexture effects into a single texture, generated
  1788. on-the-fly.
  1789. * New options for ColorBlendAttrib and RenderModeAttrib.
  1790. * NodePath::set_transparancy() now accepts a
  1791. TransparencyAttrib::Mode parameter to specify exactly what kind of
  1792. transparency you'd like.
  1793. * New NodePath::set_render_mode() interface accepts a
  1794. RenderModeAttrib::Mode parameter, deprecating
  1795. set_render_mode_filled() and set_render_mode_wireframe().
  1796. * LerpQuatInterval can be used as a drop-in replacement for
  1797. LerpHprInterval; it performs spherical lerps in quaternion space,
  1798. rather than lerping each component of a HPR individually.
  1799. LerpHprInterval is not deprecated; it remains useful within its
  1800. limitations.
  1801. * New DirectSliderBar gui object implements a standard slider bar
  1802. with a thumb (like a window scroll bar).
  1803. * Lighting normals are now automatically counterscaled properly when
  1804. lighting is enabled in the presence of a scale, uniform or
  1805. nonuniform, in the scene graph. You can also use
  1806. RescaleNormalAttrib for explicit control over this behavior.
  1807. * Improvements to RopeNode for rendering splines in various
  1808. representations.
  1809. Collisions and physics systems:
  1810. * New CollisionSegment and CollisionInvSphere collision solids.
  1811. * The collision system now reports normals for intersections
  1812. detected from collision rays, segments, and lines.
  1813. * Several improvements to the physics system.
  1814. Model converters:
  1815. * x2egg and egg2x added to converters, as well as to inline
  1816. conversion supported via ptloader. This adds support for
  1817. DirectX's native so-called "retained-mode" file format. This file
  1818. format supports animation and joint hierarchies as well as basic
  1819. polygonal models.
  1820. * vrml2egg added to converters, as well as to inline conversion
  1821. supported via ptloader. This adds support for VRML 2.0 model
  1822. files only.
  1823. * Added -noabs option to many model converters, to help detect
  1824. problems with unintended absolute path references.
  1825. * Added egg2bam -flatten and -combine-geoms.
  1826. * We now have working exporters for Max5, Max6, Max7, Maya5, Maya6.
  1827. (Update: these were accidentally omitted from the binary release)
  1828. * The Max exporter is dramatically improved: it now includes support
  1829. for character studio, and the polygon winding bug has been fixed.
  1830. ------------------------ RELEASE 2004-07-27 ------------------------
  1831. Configuration, installation, and execution environments:
  1832. * We have moved to a new, more explicit naming convention for our
  1833. import statements. Rather than installing all Python files into
  1834. one big flat namespace, we now import them from their appropriate
  1835. directories, e.g. "from direct.actor import Actor".
  1836. * "from ShowBaseGlobal import *" is replaced with "import
  1837. direct.directbase.DirectStart" and/or "from pandac.PandaModules
  1838. import *".
  1839. * The old "generatePythonCode" script has been replaced with a new
  1840. "genPyCode" script that automates the Python wrapper generation
  1841. process without requiring any special parameters.
  1842. * The old dependencies on environment variables have been removed.
  1843. There are no longer requirements for any environment variables to
  1844. be set in either the build process or the runtime environment
  1845. (although a few optional environment variables remain to allow
  1846. custom configuration).
  1847. * INSTALL document greatly enhanced for clarity.
  1848. * An automatic build script is now provided to further simplify
  1849. building Panda3D for Unix and Cygwin users.
  1850. * The old "Configrc" filename to identify runtime configuration
  1851. files is deprecated; configuration files should now be named
  1852. Config.prc, or in general, *.prc. The system-default
  1853. configuration files are auto-generated as 20_panda.prc,
  1854. 30_pandatool.prc, and 40_direct.prc (the numeric prefixes control
  1855. the order in which these are loaded at runtime).
  1856. Rendering system:
  1857. * Some deprecated methods of CollisionEntry have been flagged to
  1858. raise an exception now; these are replaced with the newer
  1859. interfaces that can return a collision point in an arbitrary
  1860. coordinate system.
  1861. * Camera::set_cull_center() can be used for debugging culling by
  1862. setting the effective point of visibility culling different from
  1863. the actual point. From Python, use base.oobeCull() to examine
  1864. this effect.
  1865. * Alt-Enter in pview toggles between fullscreen and windowed modes.
  1866. * Added experimental support for GL display lists.
  1867. Scene graph:
  1868. * Exposed methods to directly retrieve and set the individual
  1869. vertices of a GeomNode from Python code.
  1870. * The new PortalNode defines the interface for Panda's new
  1871. cell-portal visibility system; each PortalNode is a window into
  1872. another zone, or a separate subgraph; the PortalNode can hide or
  1873. show the subset of its zone's geometry visible through its
  1874. "portal".
  1875. * The new PolylightNode applies a simple lighting-like effect
  1876. without actually using lighting; objects will brighten or darken
  1877. as a whole according to their proximity to the light. Use
  1878. PolylightEffect to enable this effect.
  1879. * The new FadeLODNode works like ordinary LODNode, but the switches
  1880. are alpha-blended in over a short period of time rather than
  1881. popping immediately.
  1882. Text display:
  1883. * Text now supports embedded mode changes--special characters to
  1884. switch fonts, colors, scale, etc. within a line or within a
  1885. paragraph.
  1886. * Windows IME is better supported by Panda/Direct widgets
  1887. (e.g. PGEntry and/or DirectEntry) in fullscreen mode as well as in
  1888. windowed mode.
  1889. Model converters:
  1890. * dxf2egg and egg2dxf added to converters, as well as to inline
  1891. conversion supported via ptloader.
  1892. ------------------------ RELEASE 2004-03-29 ------------------------
  1893. Miscellaneous:
  1894. * We once again support the Microsoft VC6 compiler.
  1895. * The "pstats" program is now provided in the Windows environment as
  1896. part of pandatool. It is similar to "gtk-stats" on a Unix
  1897. environment, and can be used to view a real-time graph of
  1898. performance timing in a running Panda process. See
  1899. panda/src/doc/howto.use_pstats.
  1900. * New session recording and playback support allows capturing user
  1901. and network input to a disk file, for replaying later, offline.
  1902. Use "record-session filename.boo" and "playback-session
  1903. filename.boo" in your Configrc file.
  1904. * The genPyCode script now uses PythonWare's SqueezeTool to
  1905. "squeeze" the large number of generated .py files into a single
  1906. shared library, for substantially improved startup times on
  1907. Windows.
  1908. * The Task system now has substantially reduced overhead when many
  1909. doLater's are waiting in the system.
  1910. * The png image file type is now supported.
  1911. Rendering system:
  1912. * Introducing native DirectX9 graphics support, although we do not
  1913. yet support any features specific to DirectX9, such as
  1914. programmable shaders.
  1915. * DirectX7 and DirectX8 modules are now somewhat more robust.
  1916. * New support for offscreen rendering and render-to-a-texture, which
  1917. will become part of a general multipass-rendering interface.
  1918. Presently supported in OpenGL, with limited DirectX support. Use
  1919. GraphicsWindow::make_texture_buffer() to make a buffer you can
  1920. render into and apply the result as a texture map to objects in
  1921. your scene. The NonlinearImager in the distort directory is a
  1922. complex example of using this interface.
  1923. * Explicit support for the Mesa 3D library's software-based
  1924. offscreen rendering, allowing a Panda program to generate
  1925. offscreen images as a background process, independently of any
  1926. graphics card or desktop environment.
  1927. * GraphicsLayer and GraphicsWindow render order can now be easily
  1928. adjusted dynamically with set_sort() methods.
  1929. * Built-in frame rate meter can be activated by setting
  1930. "show-frame-rate-meter 1" in your Configrc file.
  1931. Scene graph:
  1932. * New tag system on PandaNodes allows storing of arbitrary string
  1933. data on nodes, keyed by a string dictionary. The
  1934. NodePath::get_net_tag() interface retrieves the data value for a
  1935. particular tag on a node or the nearest ancestor of the node.
  1936. NodePath::find() can search for a node in the scene graph with a
  1937. given tag or tag/value pair.
  1938. * Explicit shear transforms are now supported on nodes, as well as
  1939. in character animation tables.
  1940. * Characters now have an interface to control joint and slider
  1941. values dynamically, instead of strictly from an animation file.
  1942. Use Actor.exposeJoint() and/or Actor.controlJoint().
  1943. * Nurbs surfaces and curves can now be rendered directly by Panda,
  1944. which will tesselate them on the fly at some CPU cost. This is a
  1945. modeling convenience only; it is not intended to be used for
  1946. production code. Triangle strips are still the fastest way to
  1947. render complex surfaces.
  1948. * However, Rope.py is now provided as a high-level wrapper around
  1949. Panda's runtime NURBS curve evaluator; it can render dynamic
  1950. curves in a variety of ways.
  1951. * The egg library is now published to Python, allowing construction
  1952. of geometry on-the-fly by show code for convenience. This is also
  1953. intended as a developer's convenience more than a production
  1954. feature.
  1955. Text display:
  1956. * The special character \3 (ASCII 0x03) embedded in a text string
  1957. indicates the position of a soft hyphen when wordwrap mode is in
  1958. effect. The character \4 (ASCII 0x04) serves as a hyphenless
  1959. invisible break point.
  1960. * A default font is compiled in even if the FreeType library is not
  1961. available.
  1962. * pnmtext library added for rendering text directly into an image.
  1963. * New egg-mkfont utility uses FreeType to generate static font
  1964. models that Panda clients without FreeType can use to render text.
  1965. Collision and physics system:
  1966. * More robust collision interface, supporting NodePaths properly so
  1967. that collisions detected into (and from) particular instances of
  1968. nodes can be differentiated. CollisionEntry has a much simpler
  1969. mechanism for getting the intersection point and normal in an
  1970. arbitrary coordinate space defined by a NodePath, instead of the
  1971. user having to convert the coordinate space by hand.
  1972. * New CollisionVisualizer object to visually show collisions as they
  1973. are tested and detected, useful for optimizing collision
  1974. performance. Activate this with
  1975. base.cTrav.showCollisions(render).
  1976. * Implicit velocity system is now integrated with scene graph; the
  1977. relative velocity of moving nodes is automatically considered when
  1978. testing for most kinds of collisions. Use
  1979. NodePath::set_fluid_pos() to indicate that a node is moving
  1980. fluidly to its new position and should test for collisions along
  1981. the way (as opposed to the more traditional NodePath::set_pos(),
  1982. which unconditionally sets the node to its new position).
  1983. * Introduction of "tube" collision shapes, sometimes called
  1984. "capsules" in other libraries. It is a cylinder capped with
  1985. hemispheres.
  1986. * CollisionSolid::set_effective_normal() provides a way to define a
  1987. sloping surface with an apparently vertical normal, to prevent
  1988. characters standing on the surface from sliding down.
  1989. * Collision polygons now respect clipping planes.
  1990. * Many changes to physics system.
  1991. HTTPClient and net systems:
  1992. * More verbose error reporting.
  1993. * Better support for proxy servers, including SOCKS5 proxies.
  1994. Model converters:
  1995. * maya2egg converter now supports skeleton/morph animation files
  1996. fully, including soft-skinning, hard-skinning, and morphs (blend
  1997. shapes). NURBS and polygon meshes are both supported.
  1998. * A new Maya plugin called libmayapview allows opening a Panda
  1999. window from within Maya to view how the scene will look once it
  2000. has been converted to Panda.
  2001. * New soft2egg converter supports models and animation stored in
  2002. SoftImage 4.3 files. (Newer versions of SoftImage are not
  2003. supported.)
  2004. * New egg2flt program more or less reverses flt2egg.
  2005. * The ptloader Panda loader allows direct loading into Panda of most
  2006. model file types defined within pandatool: Maya, flt, and lwo.
  2007. Specify load-file-type ptloader in your Configrc file.
  2008. * New egg-optchar preprocessor improves character animation runtime
  2009. performance by eliminating unneeded joints. It can also
  2010. reorganize a skeleton and/or expose joints for the show code's
  2011. convenience.
  2012. * New egg-qtess utility converts NURBS egg files to polygon egg
  2013. files with either a trivial interface for quick conversions or a
  2014. sophisticated parameter file for more precise control. It
  2015. preserves soft-skinning and animation information.
  2016. * New visibility flag in egg format allows model files to define
  2017. invisible subtrees which will be initially stashed when loaded.
  2018. * The egg library now allows implicit forward references to vertex
  2019. pools, making it much easier to generate a valid egg file from a
  2020. third-party model format.