ReleaseNotes 111 KB

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