ReleaseNotes 59 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409
  1. ------------------------ RELEASE 1.9.4 ------------------------
  2. One of the bugfixes in the last 1.9.3 release introduced a regression,
  3. therefore it was decided to make another 1.9.x release.
  4. * Fix 1.9.3 regression with generating geometry in threaded pipeline
  5. * Various compile warning fixes
  6. * Fix occasional crash in PNMImage::quick_filter_from()
  7. * Fix issue taking screenshots from an OpenGL FBO buffer
  8. * Fix various issues with MeshDrawer
  9. * Fix issue with collision sphere generation in bam2egg
  10. * Fix compile errors with more obscure Python configurations
  11. * Fix assert when using Texture.load_sub_image to load whole image
  12. * Fix fsm FourState
  13. ------------------------ RELEASE 1.9.3 ------------------------
  14. This issue fixes several bugs that were still found in 1.9.2.
  15. * Fix crash when using homebrew Python on Mac OS X
  16. * Fix crash when running in Steam on Linux when using OpenAL
  17. * Fix crash using wx/tkinter on Mac as long as want-wx/tk is set
  18. * Fix loading models from 'models' package with models/ prefix
  19. * Fix random crashes in task system
  20. * Fix various race conditions causing threading issues
  21. * Fix memory leaks in BulletTriangleMesh
  22. * Fix loading old models with MovingPart<LMatrix4f>
  23. * Improve performance of CPU vertex animation somewhat
  24. * Show framebuffer properties when fbprop request fails
  25. * Show error instead of crash on use of object before __init__
  26. * Fix hang on exit when using Python task on threaded task chain
  27. * Fix inability to get RGBA renderbuffer in certain cases
  28. * Work around GLSL issue with #pragma and certain Intel drivers
  29. * Improve performance of texture load and store operations
  30. * Fix crashes with pbuffers on Intel cards on Windows
  31. * Support for Autodesk Maya 2016.5
  32. * Add shadow-depth-bits config var to control shadow map depth
  33. * Fix cull issue when rendering cube map (or any multi-lens setup)
  34. * Fix crash rendering with the same camera to different contexts
  35. * Fix compile error when making static build with DX9 renderer
  36. * Fix assertion when using aux render targets in DX9
  37. * Work around Cg bug generating invalid ASM for saturated tex loads
  38. * Fix issues with certain Cg shader inputs in DX9
  39. * Support uint8 index buffers in DX9
  40. * Fix occasional frame lag when loading a big model asynchronously
  41. * Fix interrogate parsing issue with "const static"
  42. * Add back missing libp3pystub.a to Mac OS X SDK
  43. * Fix RAM caching of 2D texture arrays
  44. * Fix Ctrl+C interrupt propagation to runtime applications
  45. * Support for InvSphere, Box and Tube solids in bam2egg
  46. * Preserve "intangible" and "level" collide flags in bam2egg
  47. * Add normalized() method to vectors
  48. * asyncFlattenStrong with inPlace=True caused node to disappear
  49. * Fix asyncFlattenStrong called on nodes without parent
  50. * Fix is_playing() check when playing an animation backwards
  51. * Windows installer no longer clears %PATH% if longer than 1024 chars
  52. * Fix inoperative -tbn/-tbnall/-tbnauto options in egg-optchar
  53. * Fix tinydisplay texture errors on shutdown
  54. * Fix mipmap filtering issues in tinydisplay renderer
  55. * Fix exception when creating intervals before ShowBase is started
  56. * Fix rare X11 .ico cursor bug; also now supports PNG-compressed icons
  57. * Add keyword argument support to make() methods such as Shader.make()
  58. * Fix compilation errors with Bullet 2.84
  59. * Fix exception when trying to pickle NodePathCollection objects
  60. * Fix error when trying to raise vectors to a power
  61. * GLSL: fix error when legacy matrix generator inputs are mat3
  62. * Now tries to preserve refresh rate when switching fullscreen on Windows
  63. * Fix back-to-front sorting when gl-coordinate-system is changed
  64. * Now also compiles on older Linux distros (eg. CentOS 5 / manylinux1)
  65. * get_keyboard_map now includes keys on layouts with special characters
  66. * Fix crash due to incorrect alignment when compiling Eigen with AVX
  67. * Fix crash when writing 16-bit .tif file (now silently downsamples)
  68. ------------------------ RELEASE 1.9.2 ------------------------
  69. This is a minor bugfix release, fixing a few minor issues that
  70. remained in the 1.9.1 release, including:
  71. * Fix compile errors with more recent versions of ffmpeg
  72. * Include .lib files for pyd modules in Windows SDK
  73. * packp3d now recognizes default egg-object-type definitions
  74. * Fix issues with sphere-into-box and box-into-sphere collisions
  75. * Texture VRAM usage is now correctly reported by pstats
  76. * Support for reading BMP files with alpha channel
  77. * Fix OpenGL crashes in very ancient OpenGL versions
  78. * Fix rare compile issues and crashes with esoteric Python set-ups
  79. * Fix crash when extracting texture that's not a multiple of 4 bytes
  80. * Work around buggy NVIDIA driver that reports _main_* shader inputs
  81. * Add version of transform_vertices that accepts a SparseArray
  82. * Clamp shininess to 0 to avoid GL error when shininess < 0
  83. * Fix various bugs in RopeNode and NurbsCurveEvaluator
  84. * Fix clock-mode Config.prc settings
  85. * NodePath render_mode setters no longer reset wireframe color
  86. * Fix constant reloading of texture when gl-ignore-mipmaps is set
  87. * BamReader now releases the GIL (so it can be used threaded)
  88. * Fix AttributeError in direct.stdpy.threading module
  89. ------------------------ RELEASE 1.9.1 ------------------------
  90. This minor release fixes some important regressions and bugs found
  91. in 1.9.0, but also introduces a few minor features.
  92. It also reintroduces the deployment tools that were absent from
  93. the previous release.
  94. The following issues were fixed:
  95. * SDK now properly installs in Mac OS X 10.11 "El Capitan"
  96. * Windows 8.1+ no longer applies DPI virtualization to Panda window
  97. * Fix ffmpeg library load issue on Mac OS X
  98. * Fix issues running maya2egg on Mac OS X
  99. * Fix compiler errors on different platforms
  100. * Fix various rare crashes
  101. * Fix crashes on shutdown in threaded pipeline
  102. * Fix low-level threading crash on ARM machines
  103. * More reliably and robustly handle failures opening OpenAL device
  104. * Textures were not being scaled to power-of-2 in some cases
  105. * Correct scaling of normal vectors with flatten operation
  106. * Correct positioning of viewing axis when showing lens frustum
  107. * Add dpi-window-resize option to auto-resize window on DPI change
  108. * Fix assertions when alpha-file-channel references unknown channel
  109. * Use OpenGL-style vertex colors by default on non-Windows systems
  110. * Default vertex column alignment is now 4 bytes
  111. * Add PNMImage premultiply/unpremultiply methods.
  112. * Fix incorrect parsing of numbers with exponents in Config.prc
  113. * Fix for reading URLs mounted via the virtual file system
  114. * Fix shader generator memory leaks and runtime performance
  115. * Fix shader generator scaling of binormals and tangents
  116. * Expose _NET_WM_PID to window managers in X11
  117. * Fix a range of bugs in tinydisplay renderer.
  118. * Don't error when setting lens far distance to infinity
  119. * Allow passing custom lens to saveCubeMap/saveSphereMap
  120. * Fix errors in saveCubeMap/saveSphereMap in threaded pipeline
  121. * Fix DynamicTextFont.makeCopy()
  122. * Make Texture memory size estimation more accurate
  123. * Fix various window resizing issues
  124. * Fix PandaSystem.getCompiler() value for clang (it reported gcc)
  125. * x2egg no longer replaces face normals with vertex normals
  126. * Include Eigen headers in Mac and Windows SDK
  127. * Added geomipterrain-incorrect-normals setting, default=true
  128. * DisplayInformation resolution list was missing on Windows
  129. * Upgrade FMOD and Bullet versions on Windows and Mac OS X
  130. * Various performance optimizations
  131. * Fixed various other bugs not listed here.
  132. Fixes and improvements for the runtime:
  133. * Fix splash screen freezing in the X11 web plug-in
  134. * pdeploy will now handle extracted files (eg. .ico and .cur)
  135. * Added more options for customizing splash screen
  136. * Fix missing xml and ast modules from morepy package
  137. * Certificate dialog is now localized to various languages
  138. * Fix packp3d error when Python file is not in a package
  139. * Pass on failing exit status from packaged application
  140. * Remove annoying ":Packager(warning): No such file" warning
  141. * Fix issue installing pdeploy-generated .pkg on OS X 10.11
  142. Fixes for the Python API:
  143. * Fix mysterious and rare crash in tp_traverse
  144. * Bullet step function accidentally defaulted to step size of 0
  145. * Fix overflow of file offsets (eg. when seeking in huge files)
  146. * Fix regression with memoryviews
  147. * Fix hasattr/getattr of vector classes for invalid attributes
  148. * Allow passing a long to methods accepting an int
  149. * Fix crash when passing None to Filename constructor
  150. * MouseWatcherGroup was erroneously not exposed in 1.9.0
  151. * ShowBase no longer unmounts VFS when shutting down
  152. * No longer requires setting PATH to import panda3d.*
  153. * DirectDialog default geom is once again respected
  154. * DirectDialog no longer overrides custom frameSize
  155. * Fix WebcamVideo/MicrophoneAudio.getOptions() methods
  156. Changes relating to the OpenGL renderer:
  157. * Various performance improvements
  158. * Fix point/line thickness setting
  159. * Improve GLSL error reporting
  160. * Fix Intel driver issues, particularly with geometry shaders
  161. * Add more error checking for parameter types
  162. * Integer shader inputs were not being converted to float properly
  163. * Fix crash passing an undersized array to a GLSL shader input
  164. * p3d_ColorScale et al may now be declared as vec3
  165. * Fix flickering when using trans_model_to_apiview in Cg
  166. * Support wireframe and point rendering modes in OpenGL ES
  167. * Fix issue with model disappearing in rare cases with GLSL
  168. * Fix ColorWriteAttrib not working as it should
  169. * Allow deactivating PStats collectors for GPU timers
  170. * Memory residency of graphics buffers now tracked by PStats
  171. * Allow changing OpenGL coordinate system with gl-coordinate-system
  172. Fixes for libRocket integration:
  173. * libRocket did not work on Mac OS X in 1.9.0
  174. * Fix inconsistent behavior with non-power-of-2 textures in rocket
  175. * Use model-path for finding libRocket assets
  176. * Add missing keys to libRocket keymap
  177. * libRocket elements showed up white in tinydisplay
  178. New features:
  179. * Add -L (lighting) and -P (graphics pipe) pview options
  180. * Add M_confined mouse mode that keeps cursor in window
  181. * Add sample program demonstrating mouse modes
  182. * bam2egg supports collision sphere and plane solids
  183. * p3d_TransformTable GLSL input backported from 1.10 branch
  184. * Add openal-device setting for selecting OpenAL audio output
  185. * Add limited modification timestamp tracking for Ramdisk mounts
  186. * Support for Autodesk Maya 2016
  187. ------------------------ RELEASE 1.9.0 ------------------------
  188. This is a major release with many exciting new features!
  189. Beware of bugs.
  190. The list below contains a subset of the changes introduced:
  191. * We now offer 64-bit Windows and Mac OS X builds.
  192. * Switch to MSVC 2010; no more assembly manifests.
  193. * Cocoa port for better Mac OS X support, esp. newer versions.
  194. * We now compile the Python modules into panda3d/*.pyd modules;
  195. no more imp.load_dynamic hackery needed.
  196. * Support for GPU profiling in OpenGL, see pstats-gpu-timing
  197. * sRGB framebuffers, see framebuffer-srgb
  198. * sRGB texture support, see Texture::F_srgb et al.
  199. * Integer vector support, including passing to shaders
  200. * Native .ogg vorbis and .wav loader (does not require ffmpeg)
  201. * FFmpeg support is a separate plug-in module now, libp3ffmpeg.
  202. * Sample programs are now part of the source code repository
  203. * Can be built with Python 3 (highly experimental)
  204. * Improvements to Windows installer
  205. * M_filled_wireframe rendering mode
  206. * Support specifying sampler state separate from textures
  207. * Support for bindless texture clearing
  208. * Texture LOD bias and min/max LOD settings
  209. * Framebuffer properties allows separate red/green/blue bits
  210. * Explicit float color and float depth specification in fbprops
  211. * Coverage samples settable via FrameBufferProperties
  212. * Stereo buffer implementation in OpenGL via FBOs
  213. * Support enumeration of pixel formats in WebcamVideo
  214. * Frame rate meter can be configured to show milliseconds
  215. * Changes to improve font crispness with default settings
  216. * Fix assertion error when using more than one GraphicsEngine
  217. * raw-w, raw-a, etc. keyboard events for layout-independent input
  218. * Allow querying active keyboard layout via win.get_keyboard_map()
  219. * Distinguish between lmeta and rmeta keys on Mac OS X
  220. * Floating-point image manipulation API, support float tiffs
  221. * Various new 16-bit and 32-bit and int texture formats
  222. * Man pages are now available for the majority of utilities
  223. Pipeline:
  224. * Fix bugs with <Collide> group transformations in .egg
  225. * Don't create unnecessary intermediate node when loading .egg
  226. * bam2egg supports materials, and correctly converts animations
  227. * dae2egg has some skeletal animation support
  228. * Support Maya versions up to 2015
  229. OpenGL renderer changes:
  230. * Error checking is now OFF by default for performance reasons,
  231. set gl-check-errors or gl-debug to true to enable.
  232. * GL 4.2 shader_image_load_store support (incl. multi-bind)
  233. * Layered render-to-texture (using geometry shaders)
  234. * Seamless cube maps (on by default), see gl-cube-map-seamless
  235. * Added gl-debug for improved debug output support
  236. * Added GL object labels when gl-debug is enabled
  237. * gl-dump-compiled-shaders can be used to dump program binaries
  238. * Direct3D-style NT_packed_dabc vertex arrays now directly supported
  239. * Native rendering of line strips, using primitive restart
  240. * Immutable texture storage support (disabled by default)
  241. * Bindless texture support (disabled by default)
  242. * Specular component is now computed separately in FFP
  243. Shader system:
  244. * Support for tessellation shaders
  245. * Support for compute shaders via ComputeNode
  246. * GLSL preprocessor with "#pragma include" support
  247. * Much better coverage of shader inputs in GLSL
  248. * GLSL error messages now show source filename
  249. * Fixes apiclip_of_x shader inputs
  250. * Matrices can be passed directly to setShaderInput
  251. * Support binding images to shaders
  252. * Viewport array support
  253. Optimizations and performance improvements:
  254. * Use of C++11 move semantics to reduce refcounting overhead
  255. * Build with Eigen by default for faster linear math
  256. * Dramatic overhead reduction of generated bindings
  257. * Streamline culling process
  258. * Tighter bounding volume generation
  259. * Take advantage of CPU features for bit operations
  260. * Circumvent bounding volume generation when not required
  261. * Optimizations for interned strings
  262. * Use of GCC atomics should improve 64-bit Linux performance
  263. API features:
  264. * Buffer protocol support for textures and arrays
  265. * Interrogate supports various C++11 features
  266. * Expose TextGlyph interfaces for making custom text renderers
  267. * Better handling of default arguments for many functions
  268. * Cyclic references can sometimes be tracked through tasks
  269. * ShowBase clean teardown possible
  270. * API documentation is more accurate
  271. * Improve interfaces for interop with other applications
  272. Deprecated features:
  273. * Use of pandac.PandaModules is discouraged; use panda3d.core
  274. * Deprecate DirectStart and global run() function; use ShowBase
  275. * Remove old decal system
  276. * Remove Direct3D 8 renderer
  277. * Remove M_light_vector tex gen mode and FFP-based bump mapping
  278. Bug fixes:
  279. * Various point rendering issues are fixed now
  280. * Fix pview issue with 1-frame and/or multiple animations
  281. * Fixes for multisampling in FBOs
  282. * Fix aspect ratio of frame rate meter
  283. * Support NaN and infinity values in Config.prc variables
  284. * Fixes for webcams on Linux that do not output Huffman tables
  285. * Better support for non-basic Cg shaders on non-NVIDIA cards
  286. * Many others
  287. ------------------------ RELEASE 1.8.1 ------------------------
  288. This is a bugfix release, fixing many issues in 1.8.0.
  289. However, there may still be some (minor) bugs.
  290. * Fix a host of issues related to GLSL shaders
  291. * Fix incorrect registry entry for Python in Windows installer
  292. * pdeploy generated binaries with wrong architecture on Linux
  293. * Fix runtime error in pdeploy when building for Windows
  294. * Support for Maya 2013
  295. * ARToolKit now also works on Mac OS X
  296. * WM_CLASS can be set using x-wm-class and x-wm-class-name
  297. * No longer crashes when Xrandr is not supported
  298. * Aux normals are now also normalized when no lights are applied
  299. * Fix hidden cursor when switching fullscreen on Mac OS X
  300. * PackageInstaller didn't add packages to system paths
  301. * Allow disabling custom cursor on Windows
  302. * Fix incorrect panning of 3D audio
  303. * Fix omission of textures of non-standard format in ShaderGenerator
  304. * Fix compile issue with newer gcc versions
  305. * Fix circular reference held by ActorNode
  306. * Window is now correctly centered on Windows
  307. * Fix confusion with depth range of Lens::project()
  308. * Now successfully compiles against recent SSL versions on Windows
  309. * Fix incorrect Cg TEXUNIT0 binding during the first frame
  310. * TextNode::set_text_scale now correctly scales spaces as well
  311. * Expose AudioLoadRequest to Python (for async audio loading)
  312. * Support for the libRocket debugger
  313. * Fix newline entry in libRocket
  314. ------------------------ RELEASE 1.8.0 ------------------------
  315. This is a major release, with several big new features. As such,
  316. it is likely to contain bugs.
  317. * True threading support now enabled in the default build
  318. * Pipelined rendering: app, cull, and draw can run in parallel, each
  319. in their own thread
  320. * Web plugin is more robust, and better supports Safari and Chrome
  321. * Plugin runs properly when the username contains non-ASCII characters on Windows
  322. * Added appRunner.p3dFilename and appRunner.p3dUrl to provide p3d
  323. location
  324. * Multifiles (and p3d files) now make a distinction between binary and
  325. text files
  326. * OccluderNode added for explicit occlusion culling
  327. * Ambient occlusion generation for terrain
  328. * Fixed bug where Windows installer wipes %PATH% when it's too long
  329. * Added fog support to the shader generator
  330. * Added normal_gloss texture mode
  331. * Added a custom color option to the cartoon filter
  332. * Support for texture arrays in shaders
  333. * Better shader support in pandadx9
  334. * Fix some issues with cube map buffers
  335. * Can be compiled to use double-precision floats throughout, instead
  336. of the default of single-precision floats. (Graphics drivers still
  337. use single-precision floats, of course.)
  338. * Can be compiled with the optional Eigen library to provide SSE2 support
  339. * Can be compiled with SpeedTree support
  340. * Can be compiled on MSVS2010, and/or Win64. (These builds not
  341. provided by default.)
  342. * Support for the Bullet physics engine
  343. * Support for the libRocket GUI library
  344. * Support for stereo/multiview textures
  345. * Substantial performance improvements to movie textures
  346. * TGA files with alpha channel now load correctly
  347. * New "Ramdisk" mount type available for the VFS
  348. * The VFS is now writable for ramdisk files and true on-disk files
  349. * pdeploy -i generates a custom icon for the installed game
  350. * wx and tk work better on OSX
  351. * Panda windows can be embedded within wxPython windows on all
  352. platforms (including OSX) with the new WxPandaWindow class
  353. * Added base.pixel2d for pixel-based 2-D coordinates
  354. * Python-based swizzling of Panda vectors, e.g. vec2.xyxy
  355. * Python programmers can now optionally use the original unmangled C++
  356. name for methods and classes, e.g. model.set_pos(LPoint3f(1, 2, 3)).
  357. * Command-line filename globbing now supported on Win32, e.g. egg-texture-cards *.png
  358. * DirectGui works with nonstandard coordinate-system in effect
  359. * Egg loader handles double-sided polygons a little differently by
  360. default now, for better render performance but more memory usage
  361. (use "egg-emulate-bface 0" to restore the old behavior if needed).
  362. ------------------------ RELEASE 1.7.2 ------------------------
  363. This release fixes several bugs that were found in 1.7.1.
  364. * Fix crash on GLX implementations that have no FBConfig support
  365. * Fix trouble with buffers on Mac OS X
  366. * Un-break shadow samplers in Cg shaders
  367. * Fixes for relative mouse mode on OSX
  368. * Pdeployed apps on Windows no longer show a console window
  369. * Fix relative file paths for license files in pdeploy
  370. * Ppatcher no longer writes out faulty checksums
  371. * Fix plugin failure to read from cache
  372. * Include missing X11 extension libs in runtime distribution
  373. * Fix disappearing windows with CEGUI's OpenGL renderer
  374. * Fixes for makepanda on FreeBSD
  375. * Fix LightRampAttrib crash
  376. * Fix bug with two-parameter Lens::set_fov
  377. ------------------------ RELEASE 1.7.1 ------------------------
  378. This release introduces several significant bugfixes,
  379. but also introduces various minor new features. Although
  380. it is a minor release, it may also introduce new bugs.
  381. * Many improvements and bugfixes to pdeploy
  382. * Vectors now support swizzle/write masks (e.g vec.xz)
  383. * Fixes for depth buffer instabilities on Windows
  384. * Better webcam support on Linux using Video4Linux
  385. * Custom cursor support in X11
  386. * Static functions that return a list are now properly wrapped
  387. * ODE objects now have getId() exposed to Python
  388. * NodePath.findMaterial now works properly
  389. * Remove unnecessary dependency on GLU
  390. * Arithmetic operators to PNMImage
  391. * Various OpenGL ES-related bugfixes
  392. * Support for EGL and OpenGL ES in makepanda
  393. * Fix a crash with the Maya converters
  394. * Include missing p3d tools on Windows
  395. * Include tinyxml as part of the source
  396. * Updates to PandAI
  397. * Compile issues with latest OpenSSL fixed
  398. * Fix static-init ordering issues with OpenSSL
  399. * Several other bugfixes and features not listed here
  400. ------------------------ RELEASE 1.7.0 ------------------------
  401. This major release introduces tons of cool new features. As it
  402. is highly experimental, it is not recommended for production use.
  403. * Support for running Panda3D apps in a browser via web plugin
  404. * Fully automatic shadow mapping
  405. * Easy to use distribution and packaging framework
  406. * Integrated support for NVIDIA PhysX
  407. * Support for GLSL shaders
  408. * Geometry shaders, both in Cg and GLSL
  409. * Improved Cg support
  410. * Hardware geometry instancing support
  411. * Runtime fullscreen toggle
  412. * Unix/X11 resolution querying/switching support
  413. * Experimental Unix/X11 support for relative mouse mode (via xf86dga)
  414. * New, cleaner import conventions, replacing PandaModules
  415. * Parallax mapping
  416. * Support for OpenGL ES 1 and 2
  417. * Experimental Screen Space Ambient Occlusion
  418. * New collision solid: box
  419. * Working FreeBSD support
  420. * Blur / Sharpen postprocessing filter
  421. * Many improvements to the Shader Generator
  422. * Fixes and improvements to DistributedObject network system
  423. * New AI libraries
  424. * Added MeshDrawer2D
  425. * Most Panda objects now work with the pickle/cPickle and copy modules.
  426. * Windows build now compiled for Python 2.6
  427. * Tons of new features and bugfixes
  428. ------------------------ RELEASE 1.6.2 ------------------------
  429. This is mainly a bugfix release. Also fixes some bugs that
  430. were accidentally introduced in 1.6.1.
  431. * Fixed a static-init issue in ptloader on Windows
  432. * Fixed texture scaling issue when using buffers
  433. * x2egg is no longer broken
  434. * Threading in OSX build fixed
  435. * Fixed issue with flickering colors in Shader Generator
  436. * Eggcacher now uses less RAM
  437. * Missing 'models' dirs in packpanda games fixed
  438. * Eggcacher step in Panda3D installer is now optional
  439. * Fixes broken shortcut links in Start Menu on Windows
  440. * Shader Generator now supports clip planes
  441. * Bug with combine modes in Shader Generator fixed
  442. * Fixed bug with Texture::make_copy()
  443. * Bug with Actor LOD fixed
  444. * Fixed bug with missing geometry in Collada converter
  445. * OdeUtil.collide instability fixed
  446. * OdeBody setData/getData methods exposed to Python
  447. ------------------------ RELEASE 1.6.1 ------------------------
  448. This release fixes some bugs found in 1.6.0, and adds some
  449. minor features as well.
  450. * Threading layer is now enabled by default
  451. * cTrav.showCollisions fixed
  452. * Fixed broken MovieTexture
  453. * OpenAL is now stable on Linux, too
  454. * OpenAL now supports dynamic playrate changing
  455. * MayaPandaTool now handles NURBS correctly
  456. * Fixed particle panel and directtools bugs
  457. * Fix crash with collada exporter on Windows
  458. * ARToolkit jittering fixed
  459. * Now possible to override shader vertex/fragment profiles
  460. * Maya exporter fixed on OSX
  461. * Fixed depth texture crash for padded textures
  462. * Fixed bug that made OdeUtil.collide return empty geoms
  463. * Fixed crash with render.flattenStrong() when using trackball
  464. * Several improvements to the ODE layer
  465. * Performance improvements to GeoMipTerrain
  466. * GeoMipTerrain.setBorderStitching to fix seams between terrains
  467. * installpanda.py for installing Panda on Linux without deb/rpm
  468. * Several other minor bugfixes
  469. ------------------------ RELEASE 1.6.0 ------------------------
  470. This release introduces several major new features and
  471. significant bugfixes. It is likely to be buggy, like most
  472. x.x.0 releases.
  473. * Lightweight threading framework without runtime overhead
  474. * Makepanda now fully supports OSX
  475. * DDS textures are now supported
  476. * COLLADA->egg converter added
  477. * New C++-based Task system, which includes async threading support
  478. * Support for asynchronous on-demand loading of textures and/or animations
  479. * New software-based renderer "tinydisplay"
  480. * More pythonic features: iterable methods, implicit parameter casting
  481. * Packpanda now also supports Linux
  482. * Added libsquish support for DXT compression
  483. * New MeshDrawer class for realtime mesh manipulation
  484. * Infamous FBO bug fixed
  485. * Preliminary support for Volumetric Lighting
  486. * Shader k-parameters can now contain underscores
  487. * Fixed OpenCVTexture and ARToolKit on Linux
  488. * GeoMipTerrain now supports multi-channel heightmaps
  489. * GeoMipTerrain features new near/far LOD system
  490. * GeoMipTerrain performance improved
  491. * CallbackNode added to support low-level drawing callbacks from Python
  492. * Fixed some minor but annoying OpenAL/FFMpeg issues
  493. * Fixed bug with lcontrol and rcontrol on Linux
  494. * Fixed bug regarding icon filenames
  495. * Multisampling fixed on Linux and OSX
  496. * Left and right scrolling events now available
  497. * Several improvements to API reference
  498. * ShaderGenerator now supports several more blend modes and color scale
  499. * .x converter now supports AnimTicksPerSecond
  500. * vfs-mount-url can load models directly off the web
  501. * Smoother transitions in FadeLodNode
  502. * Dynamically-generated outline on fonts: loader.loadFont(outlineWidth = xxx)
  503. * Texture.getRamImageAs()
  504. * base.toggleTexMem()
  505. * Text generation performance optimization
  506. * Various performance optimizations
  507. * Several more minor bugs fixed
  508. ------------------------ RELEASE 1.5.4 ------------------------
  509. This is a bugfix release, fixing the problems found in 1.5.3.
  510. * Fixes packpanda crash
  511. * Linux build accidentally got configured for OpenAL
  512. * EggTexture now writes wrap modes and types correctly.
  513. * Fixes an occasional crash in TextureAttrib
  514. * DirectEntry no longer crashes when moving cursor in a full box
  515. * Several bugs in RigidBodyCombiner fixed
  516. * Normals generated by GeoMipTerrain are now correct
  517. * Bugs fixed in DirectGrid
  518. * Linux users can now use WindowProperties.setParentWindow
  519. * Fmod now compiles on 64-bits
  520. * Fixed several bugs in the API reference generator
  521. * EggNurbsSurface is now exposed to Python
  522. * Fixes a bug in PGButton
  523. * GeoMipTerrain set_heightfield fixed
  524. * Several bugs in the Max exporter:
  525. - Now generates binormals and tangents
  526. - Pview output fixed
  527. - Overwrite confirmation fixed
  528. - Export type 'Both' now works correctly
  529. * Several other bugs not listed above.
  530. ------------------------ RELEASE 1.5.3 ------------------------
  531. This release fixes most of the remaining bugs, but it adds
  532. some new features as well.
  533. * License changed to BSD
  534. * Fixes x-file parser for real, this time.
  535. * Fixes serious bug in shader generator
  536. * Adds MSVCR71 and MSVCP71 back to the distro (for python)
  537. * Fixed a bug in GeoMipTerrain
  538. * Adds support for .egg.pz to packpanda --bam
  539. * Turns on libpandaode support
  540. * Mayapandatool fixed
  541. * Added support for 3dsmax 2009
  542. * Max exporter overhauled
  543. * Improved support for 64-bits, gcc 4.3 and OSX
  544. ------------------------ RELEASE 1.5.2 ------------------------
  545. This fixes just one serious bug: release 1.5.1 accidentally
  546. reversed the TextureStage sort order.
  547. ------------------------ RELEASE 1.5.1 ------------------------
  548. Mostly a bugfix release, but adds some minor features too.
  549. - The x-file parser now is back to being case-insensitive, as it should be.
  550. - Panda plugins now use an explicit plugin-path.
  551. - Better DLL-hell protection under windows.
  552. - Added GeoMipTerrain (but no docs yet)
  553. - Using python -E in the start menu - really, this time.
  554. - Linmath classes now initialized when using python.
  555. - ConfigVariableSearch
  556. - Implicit sort order for texture attribs.
  557. - OpenAL audio manager now gives control over streaming vs preloaded sounds.
  558. - Preliminary support for 64-bit linux (but thirdparty libs missing).
  559. - Fixes a dozen or so assorted bugs.
  560. ------------------------ RELEASE 1.5.0 ------------------------
  561. * Shader Generator means advanced rendering without
  562. having to manually write shaders. Includes:
  563. - Per-Pixel Lighting
  564. - Normal Maps
  565. - Gloss Maps
  566. - Glow (Self-Illumination) Maps
  567. - HDR tone mapping
  568. - Cartoon shading
  569. * Class 'CommonFilters' makes it easy to do image postprocessing:
  570. - Bloom Filter
  571. - Cartoon Inking
  572. - More coming soon.
  573. * Maya exporter now supports normal maps, gloss maps, glow maps.
  574. * Now compiled for Python 2.5
  575. * Adds support for Maya 2008 export.
  576. * Lots of small tweaks, bugfixes, performance improvements, etc.
  577. ------------------------ RELEASE 1.4.2 ------------------------
  578. * Added code for mouse-trail logging.
  579. * Fixed a minor bug in the new OpenAL code.
  580. * The installer now uses less memory.
  581. * Now easier to compile with recent versions of SSL.
  582. * Minor bugfix in exposeJoint
  583. * Added config variable: basic-shaders-only
  584. * graphicsEngine.removeWindow() and graphicsOutput.setOneShot() fixed.
  585. * Roaming ralph sample now uses collision detection correctly.
  586. ------------------------ RELEASE 1.4.1 ------------------------
  587. This release:
  588. * fixes a couple of small bugs
  589. * adds support for the new OpenAL/FFMpeg unified sound/video system.
  590. * renames the sample programs in a more sensible way
  591. ------------------------ RELEASE 1.4.0 ------------------------
  592. This release incorporates lots of small, incremental
  593. improvements.
  594. * Model-cache enabled by default in prepackaged release.
  595. * Now compiling with visual studio 2005.
  596. * Plugin installation now slightly harder --- see instructions in plugins dir.
  597. * Improved OSX support: mouselook, fmod fixes, icon filename.
  598. * Better memory usage tracking from pstats.
  599. * Removed dependencies on NSPR.
  600. * New default-model-extension prc variable (instead of old implicit-extension behavior)
  601. * New arc emitter in particle system.
  602. * Multiple different Actors can be flattened into one node.
  603. * Texture compression in DX8, DX9.
  604. * New features to support low-memory platforms.
  605. * ParametricCurveDrawer etc. officially deprecated in favor of RopeNode.
  606. * DynamicTextFont::RenderMode allows generating geometric fonts (instead of always using texture-based fonts).
  607. * Some integrated support for ODE (not yet polished and ready)
  608. * New RigidBodyCombiner unifies independently moving bodies into a single Geom as a rendering optimization.
  609. * Support for depth-stencil textures.
  610. * Better support for fullscreen mode on Linux.
  611. * Panda GL/DX windows can be subordinate to other windows (Win32 only).
  612. * Better multithreaded protection.
  613. * Interrogate correctly handles "const" vs. non-const objects.
  614. * PlaneNode::set_clip_effect allows user-defined cull planes (in addition to clip planes).
  615. * Several low-level rendering optimizations.
  616. * Simple occlusion culling with PipeOcclusionCullTraverser.
  617. * Optional bounding boxes (instead of spheres): "bounds-type box", "bounds-type best"
  618. * Addition of eggcacher utility to preload model-cache.
  619. * In source tree, added 'skel' directory to make it easier for newcomers to extend panda.
  620. * The obsolete config variable framebuffer-mode has been removed.
  621. I have no doubt that there will be a few significant bugs in this release, like all X.X.0 releases. - Josh
  622. ------------------------ RELEASE 1.3.2 ------------------------
  623. Bugfix release. This fixes a few problems in 1.3.1
  624. * Sound system won't initialize properly under linux: Fixed.
  625. * Panda DLL names now all start with "libp3" or "libpanda"
  626. * Normals reversed in heightfield tesselator: fixed.
  627. ------------------------ RELEASE 1.3.1 ------------------------
  628. Bugfix release. This fixes a few problems in 1.3.0
  629. * Sound system won't initialize properly under linux: Fixed.(Update: Not fixed)
  630. * Panda not compatible with SElinux: mostly fixed, except fmod.
  631. * Max exporter and importer broken: Fixed.
  632. * Minor problem involving gsg handling in showbase: Fixed.
  633. ------------------------ RELEASE 1.3.0 ------------------------
  634. This release contains several new features, and as such, it might be
  635. buggy. However, we've been testing it internally for a couple weeks,
  636. and it seems to be okay. It contains the following new features:
  637. * Stencil buffers and stencil operations now supported.
  638. * Sound API now supports DSP and better support for large MP3s.
  639. * Video uses FFMPEG instead of DirectShow - no more codec issues.
  640. * Heightfield terrain.
  641. * Support for intra-frame animation interpolation.
  642. * Use of 'import *' now only imports correct symbols.
  643. * Various minor improvements to the particle system.
  644. * Scene editor at least partially operational (alpha level)
  645. * Removed most of the 65,536 vertex-per-mesh limits.
  646. * Various low-level optimizations.
  647. * Support for threaded model loads (only in CVS, not in distro).
  648. * Support for 'model-cache-dir', which caches a BAM each time you load an EGG.
  649. * OnscreenText/DirectLabel can contain embedded 3D models inside the text.
  650. ------------------------ RELEASE 1.2.3 ------------------------
  651. The last release was a disaster:
  652. * I failed to fix packpanda.
  653. * I broke the tcl/tk stuff.
  654. * I added ppythonw, and it wasn't reliable.
  655. So basically, this release fixes packpanda and tcl/tk. It doesn't
  656. fix ppythonw yet (I don't know what's wrong), but it does disable
  657. it temporarily. It keeps the few things from 1.2.2 that were worth
  658. keeping.
  659. ------------------------ RELEASE 1.2.2 ------------------------
  660. This is a minor bugfix release.
  661. * Adds 'ppythonw', a version of ppython that doesn't
  662. open a console window.
  663. * If you have a bad fmod DLL in your windows folder,
  664. this version compensates.
  665. * Fixes a small bug in the VRML-to-egg converter.
  666. * Small stylistic improvements in some sample programs.
  667. ------------------------ RELEASE 1.2.1 ------------------------
  668. This release is likely to be much more stable than its predecessors.
  669. It contains many new features:
  670. * lots of performance optimizations
  671. * a preliminary OSX port
  672. * new modes for animation blending
  673. * easier partial-body animations
  674. * more powerful shader-to-engine interface
  675. * better support for rotating bodies in physics engine
  676. * support for compressed model files
  677. * multiple render targets (ie, glDrawBuffers)
  678. * support for stereo rendering
  679. * more complete API reference manual
  680. * ability to control mipmaps explicitly
  681. * better tools for debugging offscreen buffers
  682. * new sample programs
  683. * a number of packpanda repairs
  684. ------------------------ RELEASE 1.1.0 ------------------------
  685. This is a BETA release. It's pretty reliable, but there are still a
  686. few quirks here and there. Over the summer, Panda3D was overhauled
  687. top to bottom. The new code is dramatically improved, but it needs a
  688. little bit of testing. The new features are:
  689. * Much faster rendering of high-poly models.
  690. * Dramatically improved vertex and pixel shader support.
  691. * New demo programs using shaders and render-to-texture.
  692. * Play movies by using an AVI as a texture (windows only).
  693. * Python scripting uses much faster python to C++ interface.
  694. * Support for procedurally-created geometry (eg, fractals, etc).
  695. * Cleaner, simpler internal data structures.
  696. * Comes with Python 2.4 support built-in.
  697. * A lot more.
  698. The new demo programs are:
  699. * Render to Texture Demo
  700. * Cartoon Shader Demo
  701. * Motion Trails Demo
  702. * Procedural Geometry (Fractals) Demo
  703. * Normal Mapping Demo
  704. However, a caution: this is a BETA release: reasonably stable, but
  705. not quite perfect. Please send us your bug reports.
  706. ------------------------ RELEASE 1.0.5 ------------------------
  707. UPDATE: this release broke support for visual studio. Use
  708. panda3d 1.0.4 if you wish to compile panda from scratch using
  709. visual studio.
  710. This release consists mainly of compatibility improvements.
  711. * Now compiles under MS Visual Toolkit (makefile changes)
  712. * Now compiles under Mandrake 10.1 (a fix in the makefile)
  713. * Now compiles under Debian Sarge (a fix in the VRML lexer)
  714. * Now compiles under Ubuntu HH (same as DEBIAN SARGE)
  715. * Add code for building debian 'deb' archives.
  716. * Fix scene editor and particle panel so they work on linux.
  717. * Add support for --no-python to makepanda.
  718. * Tidied up makepanda a bit.
  719. ------------------------ RELEASE 1.0.4 ------------------------
  720. * This version includes the new Max exporter and the new Maya
  721. export panel.
  722. * We have added the --genman option to makepanda (to
  723. regenerate the API reference manual). This uses the epydoc
  724. documentation-generation system.
  725. * Several bugs in the new tutorials have been repaired.
  726. * A bug in fmod positional audio has been fixed.
  727. * Makepanda now puts the maya and max plugins in a
  728. separate 'plugins' directory, for convenience.
  729. * The 'libpandaegg' library has been exported to python.
  730. ------------------------ RELEASE 1.0.3 ------------------------
  731. * The binary release contains a brand new collection of
  732. sample programs. The new sample programs are much better.
  733. * If you install the windows binary release, the
  734. sample programs can now be run from the start menu.
  735. * Lighting under DirectX was broken. This has been repaired.
  736. * The binary release has been compiled with support for pstats.
  737. (Previously, it was compiled with pstats disabled).
  738. * Various changes to make panda3d more compatible with
  739. the 'epydoc' documentation-generation system.
  740. ------------------------ RELEASE 1.0.2 ------------------------
  741. This is a bugfix release.
  742. * makepanda contained a bug: it was compiling maya2egg6
  743. against the Maya 5.0 libraries, making it largely useless.
  744. This is fixed.
  745. * Maya2egg65 has been added, for Maya 6.5 users.
  746. * The configuration combo "want-tk=false, want-directtools=true"
  747. used to confuse panda, because directtools uses Tk. Now
  748. it's smart enough to do the right thing.
  749. * When you ask controlJoint to create a control node for
  750. you, it initializes the control node to the joint's initial
  751. position.
  752. * The scene editor supposedly works now. We'll see.
  753. * The models directory was missing the animation 'panda-walk4',
  754. which is necessary for the tutorial.
  755. * A new directory 'win-extras' has been added to the
  756. thirdparty tree. This contains some miscellaneous python
  757. libraries needed at the Entertainment Technology Center.
  758. The script that builds the windows installer will include
  759. these libraries in the distribution.
  760. ------------------------ RELEASE 1.0.1 ------------------------
  761. This is a bugfix release.
  762. * In the previous binary release, Config.prc did not contain a
  763. load-display line. This confuses pview. Pview is being fixed,
  764. but until then, the load-display line has been restored.
  765. * The Max and Maya plugins were inadvertently omitted from the
  766. previous binary release. This has been corrected.
  767. * An error in the distributed object networking layer has
  768. been fixed. The error only affected those who were trying to
  769. write LAN games using the CMU LAN server and p2p messages.
  770. * An error in the physics code has been corrected.
  771. * Python Megawidgets (pmw), which is required for "directtools",
  772. was not supplied in the previous release. We are now including
  773. pmw. In the Linux RPMs, to avoid overwriting any
  774. distribution-supplied pmw package, we put this package
  775. into /usr/share/panda3d.
  776. * To be consistent, we moved all the other python code into
  777. /usr/share/panda3d as well. This requires a file 'panda.pth'
  778. in the python lib directory.
  779. * In the binary RPMs, the file permissions of the python
  780. source files have been changed to 555, so that even if root
  781. runs panda, the '.pyc' files will not be modified or regenerated.
  782. ------------------------ RELEASE 1.0.0 ------------------------
  783. Configuration, installation, and execution environments:
  784. * This is the introduction of the new Panda version numbering
  785. system. The Panda version will be represented with three
  786. dot-separated numbers. The first number, the major version, will
  787. change only very rarely. The second number, the minor version,
  788. will increment frequently, with each new feature release. The
  789. third number will increment as needed to indicate bugfix releases
  790. on the minor version.
  791. * Use PandaSystem::get_version_string() (or
  792. PandaSystem.getVersionString() in Python) to return the version
  793. number of the currently-running Panda.
  794. * New runtime config system allows for dynamic loading of prc files
  795. and supports querying of available variable names. Use
  796. ConfigVariableString, ConfigVariableBool, etc. to get a value from
  797. the prc file(s); use the ConfigVariableManager and
  798. ConfigPageManager classes (or the cvMgr and cpMgr global objects
  799. in Python) to make general queries.
  800. * The ppremake build system now properly detects intra-tree
  801. dependencies, but only if each tree is fully built and installed
  802. before ppremake is run within the next dependent tree. Requires
  803. using ppremake version 1.18 or higher.
  804. Miscellaneous:
  805. * New support for encrypted streams, including encrypted subfiles
  806. within a multifile, using the OpenSSL encryption library. Adds
  807. pencrypt and pdecrypt programs.
  808. * The default port for PStats is now 5185, to avoid a conflict with
  809. Instant Messenger.
  810. * New "smooth" checkbox on PStats graphs provides a better sense of
  811. overall trends when graphs are noisy.
  812. * The meaning of the three components of HPR angles has been
  813. officially changed, in particular the meaning of the R component.
  814. This change was introduced to make the three components more
  815. consistent with each other, and to make P and R work together in a
  816. more sensible way. Existing code which used hard-coded HPR angles
  817. may be invalidated by this change. To convert existing code, you
  818. should use the global function old_to_new_hpr() to determine what
  819. new HPR triple that corresponds to an old HPR triple. As a
  820. temporary stopgap, you may define temp-hpr-fix 0 in your prc file.
  821. * Add support for weak reference counts using the WeakPointerTo
  822. class.
  823. * Add optional support for STL's semistandard hashing containers,
  824. e.g. hash_map and hash_set.
  825. * Panda no longer requires any registry keys or environment
  826. variables. This means it is now possible to run panda directly
  827. from a CD, install multiple copies of panda on a single machine,
  828. or install panda by copying the tree from another computer.
  829. Note that the installer does add the panda 'bin' directory to
  830. your PATH, and it does store an uninstall key in the registry,
  831. but neither of these is needed for panda to function.
  832. * The 'makepanda' build system is now capable of building
  833. prepackaged games for Windows. These prepackaged games are simply
  834. copies of panda with the game code included, some of the
  835. unnecessary stuff stripped out, and some changes to the start
  836. menu. See "Airblade - Installer" on the panda downloads page
  837. for an example.
  838. * This is the first release to include not just a binary installer
  839. for windows, but also binary RPMs for fedora 2, fedora 3, and
  840. redhat 9.
  841. * All of the sample programs have been tested. The ones that didn't
  842. work have been removed, the ones that do work have been (lightly)
  843. documented.
  844. * In the Win32 binary release, the 'config.prc' file has been moved
  845. to the 'etc' directory. This is to make it consistent with the
  846. Linux version.
  847. Rendering system:
  848. * Multitexture support is now part of Panda. This introduces the
  849. TextureStage and TexCoordName classes, as well as new interfaces
  850. like NodePath::add_texture(). As of the present release,
  851. multitexture is only supported when using the OpenGL renderer.
  852. * Support for programmable shaders is now possible using the Cg
  853. shader language. Assign a CgShaderAttrib to a node to apply a
  854. programmable shader.
  855. * New support for the Helix library allows playing of a streaming
  856. movie in a Panda texture. Presently only supported on Windows.
  857. * Deprecated the old "win-origin-x" and "win-origin-y" prc variables
  858. in favor of "win-origin", which takes two numbers separated by a
  859. space. Similarly with "win-width" and "win-height", in favor of
  860. "win-size".
  861. * Deprecated the old Camera::set_scene() interface; now a Camera
  862. implicitly renders whatever scene graph it is parented to.
  863. * Removed the old GraphicsLayer and GraphicsChannel classes.
  864. Instead of using these interfaces, you can now create any number
  865. of DisplayRegions directly on the window.
  866. * Offscreen render-to-a-texture will now be properly oriented under
  867. DirectX (previously, it would render the texture image upside-down
  868. and backward).
  869. * Support for automatic keystone correction caused by an off-axis
  870. physical projector using Lens::set_keystone().
  871. * New framebuffer-mode prc variable allows explicit control over the
  872. default framebuffer properties requested by Panda, including
  873. whether software or hardware rendering is required.
  874. * Added "multisample" transparency mode (alpha keyword "ms" in an
  875. egg file), which allows good-quality transparency (especially for
  876. alpha cutouts) without requiring back-to-front sorting, and
  877. without artifacts from improper sorting. This does require
  878. special multisample hardware capabilities, however. Presently
  879. supported in OpenGL mode only. Automatic fallback to "binary"
  880. transparency mode if multisample is not supported on a given
  881. platform.
  882. * New cursor-filename and icon-filename config variables replace the
  883. old win32-mono-cursor and win32-window-icon variables. Also,
  884. runtime control over these properties is now provided by the
  885. WindowProperties class.
  886. * Better management of potential memory leaks due to cyclic
  887. reference counts in the RenderState and TransformState caches.
  888. Now cycles are automatically detected and broken.
  889. Scene graph:
  890. * GeomNodes now have a CollideMask, just like CollisionNodes, which
  891. deprecates the old set_collide_geom() interface to detect
  892. collisions with visible geometry. There is a new NodePath
  893. interface for querying and setting the collide masks for single
  894. nodes or for entire subgraphs.
  895. * New NodePath interfaces to control lighting eliminate the need to
  896. create an explicit LightAttrib. The new lighting interfaces are
  897. designed to be similar to the new multitexture interfaces.
  898. * New NodePath interfaces to control the texture matrix, including a
  899. new project_texture() method to enable hardware-assisted
  900. projective texturing.
  901. * New NodePath::flatten_multitex() interface to bake in certain
  902. kinds of multitexture effects into a single texture, generated
  903. on-the-fly.
  904. * New options for ColorBlendAttrib and RenderModeAttrib.
  905. * NodePath::set_transparancy() now accepts a
  906. TransparencyAttrib::Mode parameter to specify exactly what kind of
  907. transparency you'd like.
  908. * New NodePath::set_render_mode() interface accepts a
  909. RenderModeAttrib::Mode parameter, deprecating
  910. set_render_mode_filled() and set_render_mode_wireframe().
  911. * LerpQuatInterval can be used as a drop-in replacement for
  912. LerpHprInterval; it performs spherical lerps in quaternion space,
  913. rather than lerping each component of a HPR individually.
  914. LerpHprInterval is not deprecated; it remains useful within its
  915. limitations.
  916. * New DirectSliderBar gui object implements a standard slider bar
  917. with a thumb (like a window scroll bar).
  918. * Lighting normals are now automatically counterscaled properly when
  919. lighting is enabled in the presence of a scale, uniform or
  920. nonuniform, in the scene graph. You can also use
  921. RescaleNormalAttrib for explicit control over this behavior.
  922. * Improvements to RopeNode for rendering splines in various
  923. representations.
  924. Collisions and physics systems:
  925. * New CollisionSegment and CollisionInvSphere collision solids.
  926. * The collision system now reports normals for intersections
  927. detected from collision rays, segments, and lines.
  928. * Several improvements to the physics system.
  929. Model converters:
  930. * x2egg and egg2x added to converters, as well as to inline
  931. conversion supported via ptloader. This adds support for
  932. DirectX's native so-called "retained-mode" file format. This file
  933. format supports animation and joint hierarchies as well as basic
  934. polygonal models.
  935. * vrml2egg added to converters, as well as to inline conversion
  936. supported via ptloader. This adds support for VRML 2.0 model
  937. files only.
  938. * Added -noabs option to many model converters, to help detect
  939. problems with unintended absolute path references.
  940. * Added egg2bam -flatten and -combine-geoms.
  941. * We now have working exporters for Max5, Max6, Max7, Maya5, Maya6.
  942. (Update: these were accidentally omitted from the binary release)
  943. * The Max exporter is dramatically improved: it now includes support
  944. for character studio, and the polygon winding bug has been fixed.
  945. ------------------------ RELEASE 2004-07-27 ------------------------
  946. Configuration, installation, and execution environments:
  947. * We have moved to a new, more explicit naming convention for our
  948. import statements. Rather than installing all Python files into
  949. one big flat namespace, we now import them from their appropriate
  950. directories, e.g. "from direct.actor import Actor".
  951. * "from ShowBaseGlobal import *" is replaced with "import
  952. direct.directbase.DirectStart" and/or "from pandac.PandaModules
  953. import *".
  954. * The old "generatePythonCode" script has been replaced with a new
  955. "genPyCode" script that automates the Python wrapper generation
  956. process without requiring any special parameters.
  957. * The old dependencies on environment variables have been removed.
  958. There are no longer requirements for any environment variables to
  959. be set in either the build process or the runtime environment
  960. (although a few optional environment variables remain to allow
  961. custom configuration).
  962. * INSTALL document greatly enhanced for clarity.
  963. * An automatic build script is now provided to further simplify
  964. building Panda3D for Unix and Cygwin users.
  965. * The old "Configrc" filename to identify runtime configuration
  966. files is deprecated; configuration files should now be named
  967. Config.prc, or in general, *.prc. The system-default
  968. configuration files are auto-generated as 20_panda.prc,
  969. 30_pandatool.prc, and 40_direct.prc (the numeric prefixes control
  970. the order in which these are loaded at runtime).
  971. Rendering system:
  972. * Some deprecated methods of CollisionEntry have been flagged to
  973. raise an exception now; these are replaced with the newer
  974. interfaces that can return a collision point in an arbitrary
  975. coordinate system.
  976. * Camera::set_cull_center() can be used for debugging culling by
  977. setting the effective point of visibility culling different from
  978. the actual point. From Python, use base.oobeCull() to examine
  979. this effect.
  980. * Alt-Enter in pview toggles between fullscreen and windowed modes.
  981. * Added experimental support for GL display lists.
  982. Scene graph:
  983. * Exposed methods to directly retrieve and set the individual
  984. vertices of a GeomNode from Python code.
  985. * The new PortalNode defines the interface for Panda's new
  986. cell-portal visibility system; each PortalNode is a window into
  987. another zone, or a separate subgraph; the PortalNode can hide or
  988. show the subset of its zone's geometry visible through its
  989. "portal".
  990. * The new PolylightNode applies a simple lighting-like effect
  991. without actually using lighting; objects will brighten or darken
  992. as a whole according to their proximity to the light. Use
  993. PolylightEffect to enable this effect.
  994. * The new FadeLODNode works like ordinary LODNode, but the switches
  995. are alpha-blended in over a short period of time rather than
  996. popping immediately.
  997. Text display:
  998. * Text now supports embedded mode changes--special characters to
  999. switch fonts, colors, scale, etc. within a line or within a
  1000. paragraph.
  1001. * Windows IME is better supported by Panda/Direct widgets
  1002. (e.g. PGEntry and/or DirectEntry) in fullscreen mode as well as in
  1003. windowed mode.
  1004. Model converters:
  1005. * dxf2egg and egg2dxf added to converters, as well as to inline
  1006. conversion supported via ptloader.
  1007. ------------------------ RELEASE 2004-03-29 ------------------------
  1008. Miscellaneous:
  1009. * We once again support the Microsoft VC6 compiler.
  1010. * The "pstats" program is now provided in the Windows environment as
  1011. part of pandatool. It is similar to "gtk-stats" on a Unix
  1012. environment, and can be used to view a real-time graph of
  1013. performance timing in a running Panda process. See
  1014. panda/src/doc/howto.use_pstats.
  1015. * New session recording and playback support allows capturing user
  1016. and network input to a disk file, for replaying later, offline.
  1017. Use "record-session filename.boo" and "playback-session
  1018. filename.boo" in your Configrc file.
  1019. * The genPyCode script now uses PythonWare's SqueezeTool to
  1020. "squeeze" the large number of generated .py files into a single
  1021. shared library, for substantially improved startup times on
  1022. Windows.
  1023. * The Task system now has substantially reduced overhead when many
  1024. doLater's are waiting in the system.
  1025. * The png image file type is now supported.
  1026. Rendering system:
  1027. * Introducing native DirectX9 graphics support, although we do not
  1028. yet support any features specific to DirectX9, such as
  1029. programmable shaders.
  1030. * DirectX7 and DirectX8 modules are now somewhat more robust.
  1031. * New support for offscreen rendering and render-to-a-texture, which
  1032. will become part of a general multipass-rendering interface.
  1033. Presently supported in OpenGL, with limited DirectX support. Use
  1034. GraphicsWindow::make_texture_buffer() to make a buffer you can
  1035. render into and apply the result as a texture map to objects in
  1036. your scene. The NonlinearImager in the distort directory is a
  1037. complex example of using this interface.
  1038. * Explicit support for the Mesa 3D library's software-based
  1039. offscreen rendering, allowing a Panda program to generate
  1040. offscreen images as a background process, independently of any
  1041. graphics card or desktop environment.
  1042. * GraphicsLayer and GraphicsWindow render order can now be easily
  1043. adjusted dynamically with set_sort() methods.
  1044. * Built-in frame rate meter can be activated by setting
  1045. "show-frame-rate-meter 1" in your Configrc file.
  1046. Scene graph:
  1047. * New tag system on PandaNodes allows storing of arbitrary string
  1048. data on nodes, keyed by a string dictionary. The
  1049. NodePath::get_net_tag() interface retrieves the data value for a
  1050. particular tag on a node or the nearest ancestor of the node.
  1051. NodePath::find() can search for a node in the scene graph with a
  1052. given tag or tag/value pair.
  1053. * Explicit shear transforms are now supported on nodes, as well as
  1054. in character animation tables.
  1055. * Characters now have an interface to control joint and slider
  1056. values dynamically, instead of strictly from an animation file.
  1057. Use Actor.exposeJoint() and/or Actor.controlJoint().
  1058. * Nurbs surfaces and curves can now be rendered directly by Panda,
  1059. which will tesselate them on the fly at some CPU cost. This is a
  1060. modeling convenience only; it is not intended to be used for
  1061. production code. Triangle strips are still the fastest way to
  1062. render complex surfaces.
  1063. * However, Rope.py is now provided as a high-level wrapper around
  1064. Panda's runtime NURBS curve evaluator; it can render dynamic
  1065. curves in a variety of ways.
  1066. * The egg library is now published to Python, allowing construction
  1067. of geometry on-the-fly by show code for convenience. This is also
  1068. intended as a developer's convenience more than a production
  1069. feature.
  1070. Text display:
  1071. * The special character \3 (ASCII 0x03) embedded in a text string
  1072. indicates the position of a soft hyphen when wordwrap mode is in
  1073. effect. The character \4 (ASCII 0x04) serves as a hyphenless
  1074. invisible break point.
  1075. * A default font is compiled in even if the FreeType library is not
  1076. available.
  1077. * pnmtext library added for rendering text directly into an image.
  1078. * New egg-mkfont utility uses FreeType to generate static font
  1079. models that Panda clients without FreeType can use to render text.
  1080. Collision and physics system:
  1081. * More robust collision interface, supporting NodePaths properly so
  1082. that collisions detected into (and from) particular instances of
  1083. nodes can be differentiated. CollisionEntry has a much simpler
  1084. mechanism for getting the intersection point and normal in an
  1085. arbitrary coordinate space defined by a NodePath, instead of the
  1086. user having to convert the coordinate space by hand.
  1087. * New CollisionVisualizer object to visually show collisions as they
  1088. are tested and detected, useful for optimizing collision
  1089. performance. Activate this with
  1090. base.cTrav.showCollisions(render).
  1091. * Implicit velocity system is now integrated with scene graph; the
  1092. relative velocity of moving nodes is automatically considered when
  1093. testing for most kinds of collisions. Use
  1094. NodePath::set_fluid_pos() to indicate that a node is moving
  1095. fluidly to its new position and should test for collisions along
  1096. the way (as opposed to the more traditional NodePath::set_pos(),
  1097. which unconditionally sets the node to its new position).
  1098. * Introduction of "tube" collision shapes, sometimes called
  1099. "capsules" in other libraries. It is a cylinder capped with
  1100. hemispheres.
  1101. * CollisionSolid::set_effective_normal() provides a way to define a
  1102. sloping surface with an apparently vertical normal, to prevent
  1103. characters standing on the surface from sliding down.
  1104. * Collision polygons now respect clipping planes.
  1105. * Many changes to physics system.
  1106. HTTPClient and net systems:
  1107. * More verbose error reporting.
  1108. * Better support for proxy servers, including SOCKS5 proxies.
  1109. Model converters:
  1110. * maya2egg converter now supports skeleton/morph animation files
  1111. fully, including soft-skinning, hard-skinning, and morphs (blend
  1112. shapes). NURBS and polygon meshes are both supported.
  1113. * A new Maya plugin called libmayapview allows opening a Panda
  1114. window from within Maya to view how the scene will look once it
  1115. has been converted to Panda.
  1116. * New soft2egg converter supports models and animation stored in
  1117. SoftImage 4.3 files. (Newer versions of SoftImage are not
  1118. supported.)
  1119. * New egg2flt program more or less reverses flt2egg.
  1120. * The ptloader Panda loader allows direct loading into Panda of most
  1121. model file types defined within pandatool: Maya, flt, and lwo.
  1122. Specify load-file-type ptloader in your Configrc file.
  1123. * New egg-optchar preprocessor improves character animation runtime
  1124. performance by eliminating unneeded joints. It can also
  1125. reorganize a skeleton and/or expose joints for the show code's
  1126. convenience.
  1127. * New egg-qtess utility converts NURBS egg files to polygon egg
  1128. files with either a trivial interface for quick conversions or a
  1129. sophisticated parameter file for more precise control. It
  1130. preserves soft-skinning and animation information.
  1131. * New visibility flag in egg format allows model files to define
  1132. invisible subtrees which will be initially stashed when loaded.
  1133. * The egg library now allows implicit forward references to vertex
  1134. pools, making it much easier to generate a valid egg file from a
  1135. third-party model format.