summaryrefslogtreecommitdiff
path: root/upstream/CHANGELOG.md.wavefront
blob: 8458aec833429d66689f2fdbfba85cebbd5b3a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#### 0.7.1.3

  - Add support for GHC.8.6.1.

#### 0.7.1.2

  - Add support for GHC.8.4.1.

#### 0.7.1.1

  - Add support for GHC 8.2.1.

### 0.7.1

  - Allow missing group names.
  - Spaced object and material names are now supported.

#### 0.7.0.2

  - Add support for `vector-0.12.0.0`.

#### 0.7.0.2

  - Add support for GHC 8.

#### 0.7.0.1

  - Add support for `dlist-0.8`.

## 0.7

  - Change `Element` constructor by adding `elSmoothingGroup`.

## 0.6

  - `Face` has just a single constructor now; pattern synonmys are available to pattern match against
    `Triangle` and `Quad`.

## 0.5.1

  - Export all useful constructors and symbols.

# 0.5

#### Breaking changes

  - `objFaces` now contain structured faces of type `Face`. A `Face` can be:
    * a `Triangle` ;
    * a `Quad` ;
    * an arbritrary `Polygon`.
    Whatever the shape of the face, it holds several `FaceIndex` used to reference locations, normals
    and texture coordinates.
  - Ditto for `objLines`.

### 0.4.0.1

  - Fix a bug in the implementation of `untilEnd`.

# 0.4

  - Remove most modules from the exposed interface. Everything can be found in Codec.Wavefront.
  - Change internal structures of a few types. The structure of those types shouldn’t be used in the
    interface, so a few functions to access them was provided.

# 0.3

#### Breaking changes

  - Change the interface to manipulate `WavefrontOBJ`. It’s now a dedicated type with `Vector`
    instead of `DList`, which is way better.

# 0.2

#### Non-breaking changes

  - Add more verbose documentation everywhere.

#### Breaking changes

  - Remove `ctxtName`. It was an old function used to implement user-defined
    objects, but since we have `Element`, we don’t need those anymore.

### 0.1.0.2

  - Change the loop of `tokenize` from `many1` to `untilEnd` (internal parser in Token.hs). That’s
    due to the fact `many1` silently ignores failures while `untilEnd` does not.
  - Change implementation of `tokenize` to use `choice`, which is implemented exactly as we had.
  - Remove `identifier` and use `name` instead to relax conditions on formatting names.

### 0.1.0.1

  - Add forgotten Codec.Wavefront.

# 0.1

  - Initial revision.