ReleaseNotes 89 KB

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