File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 1
- Change Log
1
+ # Change Log
2
2
3
3
Release history on Github: https://github.com/pywavefront/PyWavefront/releases
4
4
5
+ ## 1.2.0
6
+
7
+ * Pywavefront is now using ` pathlib ` internally. ` Path ` instances can also
8
+ be passed to all parsers.
9
+ * Bugfix: Texture paths in materials should no longer be mangled when
10
+ containing spaces or special characters. It should always be read
11
+ exactly as it appears in the file.
12
+ * Texture: ` file_name ` property added as a more robust way to get
13
+ the texture file name without path. This should even work for
14
+ hardcoded windows path on Linux and OS X.
15
+ * Texture: Added ` find ` method searching for the exact texture name in a directory
16
+ and all subdirectories. By default it will search from the obj file's location.
17
+ * Visualization: ` draw ` methods now supports ` lighting_enabled ` and ` textures_enabled `
18
+ making the user able to toggle on/off lighting and texturing.
19
+
5
20
## 1.1.0
6
21
7
22
* Fixed an incompatibility issue related to image loading in pyglet 1.4.x
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
- VERSION = '1.1 .0'
3
+ VERSION = '1.2 .0'
4
4
5
5
setup (
6
6
name = 'PyWavefront' ,
You can’t perform that action at this time.
0 commit comments