@hatiolab/things-scene 10.0.0-beta.5 → 10.0.0-beta.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,2163 @@
1
+ # Change Log
2
+
3
+ ## [v10.0.0-beta.1] (2026-02-27)
4
+
5
+ ### Breaking Changes
6
+ - **TypeScript strict mode**: `strict: true` 활성화 (`noImplicitAny` 제외). 커스텀 컴포넌트는 `strictPropertyInitialization` 등 준수 필요
7
+ - **Evaluator 샌드박스 강화**: `SHADOWED_GLOBALS`로 `window`/`document`/`globalThis` 접근 차단. `scene`/`setTimeout`/`Math` 등은 허용
8
+ - **innerHTML → textContent**: DOMPurify 통한 안전한 HTML 렌더링
9
+ - **ESM globalThis.scene**: eval 스크립트에서 `scene.*` 자동 접근 (기존 `window.scene` 설정 불필요)
10
+ - **state getter Proxy**: 매 접근 `Object.assign` 제거, 동작 호환 (get/has/ownKeys/spread 지원)
11
+ - **bounds Object.freeze**: 읽기 전용, 수정 시 spread 복사 필요
12
+
13
+ ### New Features
14
+ - **3D 렌더링**: Three.js 0.183 통합, 컨테이너별 렌더링 모드 (canvas-2d / webgl-3d)
15
+ - **3D 매니저 아키텍처**: Scene, Camera, Renderer, Light, Controls, Event, Gizmo, GizmoOp, Interaction, Placement — 10개 매니저
16
+ - **기즈모 편집**: TransformControls (Move/Rotate/Scale) + 프록시 DOM, dimension ↔ Object3D 양방향 동기화
17
+ - **카메라 뷰**: Perspective/Top/Front/Back/Right/Left 프리셋 + Save Current View
18
+ - **Zoom-to-cursor**: Perspective/직교 뷰 모두 커서 위치 기준 확대/축소
19
+ - **멀티스테이트 플로팅 툴바**: 2D/3D 토글 + 카메라 뷰 + 기즈모 동적 전환
20
+ - **Inspector 3D 편집 탭**: 조명, 카메라 뷰, 직교 팬 제어
21
+ - **Material3D 시스템**: 7개 프리셋 (default, metal, glass, plastic, wood, ceramic, rubber) + PBR 속성 (metalness, roughness, emissive, opacity, envMapIntensity, side)
22
+ - **그림자**: DirectionalLight shadow casting, PCFSoftShadowMap, 설정 가능한 shadow map size/bias
23
+ - **2D↔3D 속성 연동**: strokeStyle → EdgesGeometry, gradient fillStyle → CanvasTexture, pattern texture
24
+ - **GLTF**: 노드별 속성 제어 (color, visible, opacity, emissive, scale), 애니메이션 (play/stop/speed/loop), 에러 placeholder
25
+ - **3D 컴포넌트**: Sphere, Cube, Cylinder, Banner, Camera, Wall, GLTFObject, Light, Sprite
26
+ - **런타임 계측**: `scene.metrics.snapshot()` — FPS, draw 시간, invalidate, cache hit rate
27
+ - **모니터 확장**: Chrome DevTools 확장 개선 (수집 간격, 일시정지/재개, 2x3 차트)
28
+
29
+ ### Performance
30
+ - **state Proxy**: 매 접근 `Object.assign` 제거 — 500컴포넌트 × 60fps = 30,000+ alloc/s 절감
31
+ - **bounds freeze + no-clone**: 매 접근 shallow clone 제거 — 1,500~2,500 alloc/s 절감
32
+ - **선택적 캐시 무효화**: data 변경 시 geometry 캐시 유지
33
+ - **RectPath bounds memoize**: bounds 캐싱 누락 버그 수정
34
+
35
+ ### Bug Fixes
36
+ - CSS transform 스케일 시 hit-test 좌상부만 인식 → findTarget offsetX 복원
37
+ - eval 스크립트에서 `scene is not defined` → globalThis.scene 자동 설정
38
+ - eval 스크립트에서 `setTimeout is not a function` → 샌드박스 차단 해제
39
+ - TextureLoader error callback이 onProgress 위치에 있던 버그 수정
40
+ - GLTF 로딩 에러 시 placeholder mesh 표시 + loadError state
41
+
42
+ ### Code Quality
43
+ - TypeScript 전면 전환: 220+ TS 파일, 0 JS 파일
44
+ - `strict: true`, 1170 tests, 57 `as any` (Three.js 호환 잔여)
45
+ - component.ts 모듈 분할 (1332줄 → 629줄)
46
+ - LightManager `as any` 4건 → `THREE.ColorRepresentation` 타입으로 교체
47
+ - 미사용 public export 정리 (RealObjectCameraMeshed, BoundUVGenerator)
48
+
49
+ ---
50
+
51
+ ## [v2.5.0](https://github.com/hatiolab/things-scene/tree/v2.5.0) (2019-02-15)
52
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.71...v2.5.0)
53
+
54
+ **Implemented enhancements:**
55
+
56
+ - 컨테이너 안의 info window의 좌표 계산 오류 [\#278](https://github.com/hatiolab/things-scene/issues/278)
57
+
58
+ **Fixed bugs:**
59
+
60
+ - HTML 컴포넌트의 hierarchy structure 상에서 reposition 오류 [\#221](https://github.com/hatiolab/things-scene/issues/221)
61
+
62
+ **Closed issues:**
63
+
64
+ - esmodule support [\#285](https://github.com/hatiolab/things-scene/issues/285)
65
+ - support things-shell as a development tool [\#283](https://github.com/hatiolab/things-scene/issues/283)
66
+ - global reference component support dom-element and user interaction [\#282](https://github.com/hatiolab/things-scene/issues/282)
67
+ - auto data spreading : table component to table cell [\#281](https://github.com/hatiolab/things-scene/issues/281)
68
+ - add properties \(started, loop\) to audio component [\#280](https://github.com/hatiolab/things-scene/issues/280)
69
+ - Scene Model Event Property Migration \(1.0 =\> 1.1\) [\#268](https://github.com/hatiolab/things-scene/issues/268)
70
+
71
+ **Merged pull requests:**
72
+
73
+ - \#268 scene model 1.1 [\#287](https://github.com/hatiolab/things-scene/pull/287) ([lotstar87](https://github.com/lotstar87))
74
+ - \#221 container with dom [\#277](https://github.com/hatiolab/things-scene/pull/277) ([heartyoh](https://github.com/heartyoh))
75
+
76
+ ## [v2.2.71](https://github.com/hatiolab/things-scene/tree/v2.2.71) (2018-12-19)
77
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.70...v2.2.71)
78
+
79
+ **Merged pull requests:**
80
+
81
+ - \#273 fix group handling [\#276](https://github.com/hatiolab/things-scene/pull/276) ([heartyoh](https://github.com/heartyoh))
82
+
83
+ ## [v2.2.70](https://github.com/hatiolab/things-scene/tree/v2.2.70) (2018-12-18)
84
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.69...v2.2.70)
85
+
86
+ **Merged pull requests:**
87
+
88
+ - fix move-handler for group [\#275](https://github.com/hatiolab/things-scene/pull/275) ([heartyoh](https://github.com/heartyoh))
89
+
90
+ ## [v2.2.69](https://github.com/hatiolab/things-scene/tree/v2.2.69) (2018-12-18)
91
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.68...v2.2.69)
92
+
93
+ **Closed issues:**
94
+
95
+ - Fix group handling [\#273](https://github.com/hatiolab/things-scene/issues/273)
96
+
97
+ **Merged pull requests:**
98
+
99
+ - fixed \#273 [\#274](https://github.com/hatiolab/things-scene/pull/274) ([heartyoh](https://github.com/heartyoh))
100
+
101
+ ## [v2.2.68](https://github.com/hatiolab/things-scene/tree/v2.2.68) (2018-12-15)
102
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.67...v2.2.68)
103
+
104
+ ## [v2.2.67](https://github.com/hatiolab/things-scene/tree/v2.2.67) (2018-12-15)
105
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.56...v2.2.67)
106
+
107
+ **Implemented enhancements:**
108
+
109
+ - IE - polyfill work [\#267](https://github.com/hatiolab/things-scene/issues/267)
110
+ - 애니메이션 수정 [\#234](https://github.com/hatiolab/things-scene/issues/234)
111
+
112
+ **Fixed bugs:**
113
+
114
+ - change the hidden component to disable to event capturing [\#272](https://github.com/hatiolab/things-scene/pull/272) ([lotstar87](https://github.com/lotstar87))
115
+ - edit mode일 때 component가 hidden이면 반투명 처리 [\#271](https://github.com/hatiolab/things-scene/pull/271) ([lotstar87](https://github.com/lotstar87))
116
+
117
+ **Closed issues:**
118
+
119
+ - Hide templates in view mode. Hide noimage indicator background in view mode. [\#269](https://github.com/hatiolab/things-scene/issues/269)
120
+ - Asynchronous module load [\#257](https://github.com/hatiolab/things-scene/issues/257)
121
+
122
+ **Merged pull requests:**
123
+
124
+ - fix \#269 [\#270](https://github.com/hatiolab/things-scene/pull/270) ([heartyoh](https://github.com/heartyoh))
125
+ - variable이 state로 저장되어 DB에 저장이 되지 않는 현상 수정 [\#266](https://github.com/hatiolab/things-scene/pull/266) ([Lee-YuMin](https://github.com/Lee-YuMin))
126
+
127
+ ## [v2.2.56](https://github.com/hatiolab/things-scene/tree/v2.2.56) (2018-03-23)
128
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.55...v2.2.56)
129
+
130
+ ## [v2.2.55](https://github.com/hatiolab/things-scene/tree/v2.2.55) (2018-03-21)
131
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.54...v2.2.55)
132
+
133
+ ## [v2.2.54](https://github.com/hatiolab/things-scene/tree/v2.2.54) (2018-03-20)
134
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.53...v2.2.54)
135
+
136
+ ## [v2.2.53](https://github.com/hatiolab/things-scene/tree/v2.2.53) (2018-03-20)
137
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.43...v2.2.53)
138
+
139
+ **Fixed bugs:**
140
+
141
+ - copy-paste 시 copy 원본 모델들 중에 paste되는 보드에 설치되지 않은 타입의 모델이 있는 경우, 복제 전체가 실패되는 문제 [\#264](https://github.com/hatiolab/things-scene/issues/264)
142
+
143
+ **Merged pull requests:**
144
+
145
+ - draw 관련 method의 명칭 변경 [\#265](https://github.com/hatiolab/things-scene/pull/265) ([lotstar87](https://github.com/lotstar87))
146
+
147
+ ## [v2.2.43](https://github.com/hatiolab/things-scene/tree/v2.2.43) (2018-02-05)
148
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.41...v2.2.43)
149
+
150
+ **Implemented enhancements:**
151
+
152
+ - Touch Event [\#260](https://github.com/hatiolab/things-scene/issues/260)
153
+
154
+ **Fixed bugs:**
155
+
156
+ - 다중 그룹에서의 다중선택 [\#261](https://github.com/hatiolab/things-scene/issues/261)
157
+
158
+ **Merged pull requests:**
159
+
160
+ - \#261 [\#263](https://github.com/hatiolab/things-scene/pull/263) ([lotstar87](https://github.com/lotstar87))
161
+ - \#260 touch event [\#262](https://github.com/hatiolab/things-scene/pull/262) ([lotstar87](https://github.com/lotstar87))
162
+
163
+ ## [v2.2.41](https://github.com/hatiolab/things-scene/tree/v2.2.41) (2018-01-06)
164
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.40...v2.2.41)
165
+
166
+ ## [v2.2.40](https://github.com/hatiolab/things-scene/tree/v2.2.40) (2018-01-06)
167
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.36...v2.2.40)
168
+
169
+ ## [v2.2.36](https://github.com/hatiolab/things-scene/tree/v2.2.36) (2017-12-15)
170
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.35...v2.2.36)
171
+
172
+ **Implemented enhancements:**
173
+
174
+ - 컴포넌트 이동 핸들 공통화 [\#259](https://github.com/hatiolab/things-scene/issues/259)
175
+
176
+ ## [v2.2.35](https://github.com/hatiolab/things-scene/tree/v2.2.35) (2017-12-11)
177
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.34...v2.2.35)
178
+
179
+ ## [v2.2.34](https://github.com/hatiolab/things-scene/tree/v2.2.34) (2017-12-11)
180
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/2.2.34...v2.2.34)
181
+
182
+ ## [2.2.34](https://github.com/hatiolab/things-scene/tree/2.2.34) (2017-12-11)
183
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.33...2.2.34)
184
+
185
+ ## [v2.2.33](https://github.com/hatiolab/things-scene/tree/v2.2.33) (2017-12-05)
186
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.32...v2.2.33)
187
+
188
+ ## [v2.2.32](https://github.com/hatiolab/things-scene/tree/v2.2.32) (2017-12-05)
189
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.31...v2.2.32)
190
+
191
+ **Merged pull requests:**
192
+
193
+ - script loader 추가 [\#258](https://github.com/hatiolab/things-scene/pull/258) ([heartyoh](https://github.com/heartyoh))
194
+
195
+ ## [v2.2.31](https://github.com/hatiolab/things-scene/tree/v2.2.31) (2017-12-03)
196
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.29...v2.2.31)
197
+
198
+ ## [v2.2.29](https://github.com/hatiolab/things-scene/tree/v2.2.29) (2017-12-01)
199
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.28...v2.2.29)
200
+
201
+ ## [v2.2.28](https://github.com/hatiolab/things-scene/tree/v2.2.28) (2017-11-27)
202
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.27...v2.2.28)
203
+
204
+ ## [v2.2.27](https://github.com/hatiolab/things-scene/tree/v2.2.27) (2017-11-27)
205
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.26...v2.2.27)
206
+
207
+ ## [v2.2.26](https://github.com/hatiolab/things-scene/tree/v2.2.26) (2017-11-25)
208
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.25...v2.2.26)
209
+
210
+ **Implemented enhancements:**
211
+
212
+ - Clipboard copy-paste support [\#254](https://github.com/hatiolab/things-scene/issues/254)
213
+
214
+ **Closed issues:**
215
+
216
+ - popup support [\#243](https://github.com/hatiolab/things-scene/issues/243)
217
+
218
+ **Merged pull requests:**
219
+
220
+ - \#254 fixed [\#256](https://github.com/hatiolab/things-scene/pull/256) ([heartyoh](https://github.com/heartyoh))
221
+ - \#254 clipboard support [\#255](https://github.com/hatiolab/things-scene/pull/255) ([heartyoh](https://github.com/heartyoh))
222
+
223
+ ## [v2.2.25](https://github.com/hatiolab/things-scene/tree/v2.2.25) (2017-11-23)
224
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.24...v2.2.25)
225
+
226
+ ## [v2.2.24](https://github.com/hatiolab/things-scene/tree/v2.2.24) (2017-11-23)
227
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.23...v2.2.24)
228
+
229
+ ## [v2.2.23](https://github.com/hatiolab/things-scene/tree/v2.2.23) (2017-11-23)
230
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.22...v2.2.23)
231
+
232
+ ## [v2.2.22](https://github.com/hatiolab/things-scene/tree/v2.2.22) (2017-11-22)
233
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.21...v2.2.22)
234
+
235
+ ## [v2.2.21](https://github.com/hatiolab/things-scene/tree/v2.2.21) (2017-11-16)
236
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.20...v2.2.21)
237
+
238
+ ## [v2.2.20](https://github.com/hatiolab/things-scene/tree/v2.2.20) (2017-11-15)
239
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.19...v2.2.20)
240
+
241
+ **Merged pull requests:**
242
+
243
+ - runtime state 를 적용함. [\#252](https://github.com/hatiolab/things-scene/pull/252) ([heartyoh](https://github.com/heartyoh))
244
+
245
+ ## [v2.2.19](https://github.com/hatiolab/things-scene/tree/v2.2.19) (2017-11-13)
246
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.18...v2.2.19)
247
+
248
+ ## [v2.2.18](https://github.com/hatiolab/things-scene/tree/v2.2.18) (2017-11-13)
249
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.17...v2.2.18)
250
+
251
+ ## [v2.2.17](https://github.com/hatiolab/things-scene/tree/v2.2.17) (2017-11-12)
252
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.16...v2.2.17)
253
+
254
+ **Fixed bugs:**
255
+
256
+ - InfoWindow component can't be deleted [\#250](https://github.com/hatiolab/things-scene/issues/250)
257
+
258
+ ## [v2.2.16](https://github.com/hatiolab/things-scene/tree/v2.2.16) (2017-11-05)
259
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.15...v2.2.16)
260
+
261
+ **Closed issues:**
262
+
263
+ - webpack [\#248](https://github.com/hatiolab/things-scene/issues/248)
264
+
265
+ **Merged pull requests:**
266
+
267
+ - \#248 close [\#249](https://github.com/hatiolab/things-scene/pull/249) ([heartyoh](https://github.com/heartyoh))
268
+
269
+ ## [v2.2.15](https://github.com/hatiolab/things-scene/tree/v2.2.15) (2017-11-02)
270
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.14...v2.2.15)
271
+
272
+ ## [v2.2.14](https://github.com/hatiolab/things-scene/tree/v2.2.14) (2017-11-01)
273
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.13...v2.2.14)
274
+
275
+ ## [v2.2.13](https://github.com/hatiolab/things-scene/tree/v2.2.13) (2017-11-01)
276
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.12...v2.2.13)
277
+
278
+ **Merged pull requests:**
279
+
280
+ - 1976 promise for reference map [\#247](https://github.com/hatiolab/things-scene/pull/247) ([heartyoh](https://github.com/heartyoh))
281
+ - \#243 popup [\#246](https://github.com/hatiolab/things-scene/pull/246) ([heartyoh](https://github.com/heartyoh))
282
+ - \#243 popup [\#245](https://github.com/hatiolab/things-scene/pull/245) ([heartyoh](https://github.com/heartyoh))
283
+
284
+ ## [v2.2.12](https://github.com/hatiolab/things-scene/tree/v2.2.12) (2017-10-29)
285
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.10...v2.2.12)
286
+
287
+ **Implemented enhancements:**
288
+
289
+ - Component nature에 value-property 정의. [\#241](https://github.com/hatiolab/things-scene/issues/241)
290
+
291
+ **Fixed bugs:**
292
+
293
+ - thumbnail 이미지에 html-element가 반영되지 않음 [\#239](https://github.com/hatiolab/things-scene/issues/239)
294
+
295
+ **Merged pull requests:**
296
+
297
+ - redefine value property [\#242](https://github.com/hatiolab/things-scene/pull/242) ([heartyoh](https://github.com/heartyoh))
298
+ - \#239 thumbnail html elements [\#240](https://github.com/hatiolab/things-scene/pull/240) ([heartyoh](https://github.com/heartyoh))
299
+
300
+ ## [v2.2.10](https://github.com/hatiolab/things-scene/tree/v2.2.10) (2017-10-25)
301
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.9...v2.2.10)
302
+
303
+ **Closed issues:**
304
+
305
+ - data-binding target에 \(key\)와 \[property\] 지원 [\#237](https://github.com/hatiolab/things-scene/issues/237)
306
+
307
+ **Merged pull requests:**
308
+
309
+ - \#237 databinding key [\#238](https://github.com/hatiolab/things-scene/pull/238) ([heartyoh](https://github.com/heartyoh))
310
+
311
+ ## [v2.2.9](https://github.com/hatiolab/things-scene/tree/v2.2.9) (2017-10-25)
312
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.8...v2.2.9)
313
+
314
+ ## [v2.2.8](https://github.com/hatiolab/things-scene/tree/v2.2.8) (2017-10-25)
315
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.7...v2.2.8)
316
+
317
+ **Merged pull requests:**
318
+
319
+ - 지연시간 수정, delta와 ease속성 추가 [\#236](https://github.com/hatiolab/things-scene/pull/236) ([Lee-YuMin](https://github.com/Lee-YuMin))
320
+ - mouse out시 mouse leave event 가 발생하도록 함. [\#235](https://github.com/hatiolab/things-scene/pull/235) ([heartyoh](https://github.com/heartyoh))
321
+
322
+ ## [v2.2.7](https://github.com/hatiolab/things-scene/tree/v2.2.7) (2017-10-24)
323
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.6...v2.2.7)
324
+
325
+ ## [v2.2.6](https://github.com/hatiolab/things-scene/tree/v2.2.6) (2017-10-23)
326
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.5...v2.2.6)
327
+
328
+ **Implemented enhancements:**
329
+
330
+ - Animation Fade 추가 [\#227](https://github.com/hatiolab/things-scene/issues/227)
331
+
332
+ **Closed issues:**
333
+
334
+ - 다양한 overlay를 제공할 수 있도록 Modeling Layer를 container로 구성 [\#230](https://github.com/hatiolab/things-scene/issues/230)
335
+
336
+ **Merged pull requests:**
337
+
338
+ - \#230 model layer container [\#233](https://github.com/hatiolab/things-scene/pull/233) ([heartyoh](https://github.com/heartyoh))
339
+
340
+ ## [v2.2.5](https://github.com/hatiolab/things-scene/tree/v2.2.5) (2017-10-19)
341
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.4...v2.2.5)
342
+
343
+ **Implemented enhancements:**
344
+
345
+ - 애니메이션 Fade 추가 [\#229](https://github.com/hatiolab/things-scene/pull/229) ([Lee-YuMin](https://github.com/Lee-YuMin))
346
+
347
+ ## [v2.2.4](https://github.com/hatiolab/things-scene/tree/v2.2.4) (2017-10-18)
348
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.3...v2.2.4)
349
+
350
+ ## [v2.2.3](https://github.com/hatiolab/things-scene/tree/v2.2.3) (2017-10-18)
351
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.2.0...v2.2.3)
352
+
353
+ **Implemented enhancements:**
354
+
355
+ - DataSource Mixin 추가 [\#225](https://github.com/hatiolab/things-scene/issues/225)
356
+ - data mapping target - \(root\) 선택에 대한 처리방식 변경 [\#223](https://github.com/hatiolab/things-scene/issues/223)
357
+ - \#223 data-spread 시 template 생성 [\#224](https://github.com/hatiolab/things-scene/pull/224) ([lotstar87](https://github.com/lotstar87))
358
+
359
+ ## [v2.2.0](https://github.com/hatiolab/things-scene/tree/v2.2.0) (2017-10-11)
360
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.20...v2.2.0)
361
+
362
+ **Fixed bugs:**
363
+
364
+ - animation이 동시에 중복 실행되지 않도록 수정 [\#219](https://github.com/hatiolab/things-scene/issues/219)
365
+
366
+ ## [v2.1.20](https://github.com/hatiolab/things-scene/tree/v2.1.20) (2017-09-30)
367
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.19...v2.1.20)
368
+
369
+ ## [v2.1.19](https://github.com/hatiolab/things-scene/tree/v2.1.19) (2017-09-29)
370
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.18...v2.1.19)
371
+
372
+ ## [v2.1.18](https://github.com/hatiolab/things-scene/tree/v2.1.18) (2017-09-29)
373
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.17...v2.1.18)
374
+
375
+ **Merged pull requests:**
376
+
377
+ - 1913 retention manager [\#218](https://github.com/hatiolab/things-scene/pull/218) ([lotstar87](https://github.com/lotstar87))
378
+
379
+ ## [v2.1.17](https://github.com/hatiolab/things-scene/tree/v2.1.17) (2017-09-20)
380
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.16...v2.1.17)
381
+
382
+ ## [v2.1.16](https://github.com/hatiolab/things-scene/tree/v2.1.16) (2017-09-20)
383
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.15...v2.1.16)
384
+
385
+ ## [v2.1.15](https://github.com/hatiolab/things-scene/tree/v2.1.15) (2017-09-13)
386
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.14...v2.1.15)
387
+
388
+ ## [v2.1.14](https://github.com/hatiolab/things-scene/tree/v2.1.14) (2017-09-12)
389
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.13...v2.1.14)
390
+
391
+ ## [v2.1.13](https://github.com/hatiolab/things-scene/tree/v2.1.13) (2017-09-11)
392
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.12...v2.1.13)
393
+
394
+ ## [v2.1.12](https://github.com/hatiolab/things-scene/tree/v2.1.12) (2017-09-11)
395
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.11...v2.1.12)
396
+
397
+ ## [v2.1.11](https://github.com/hatiolab/things-scene/tree/v2.1.11) (2017-09-10)
398
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.10...v2.1.11)
399
+
400
+ ## [v2.1.10](https://github.com/hatiolab/things-scene/tree/v2.1.10) (2017-09-10)
401
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.9...v2.1.10)
402
+
403
+ ## [v2.1.9](https://github.com/hatiolab/things-scene/tree/v2.1.9) (2017-09-10)
404
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.8...v2.1.9)
405
+
406
+ ## [v2.1.8](https://github.com/hatiolab/things-scene/tree/v2.1.8) (2017-08-13)
407
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.6...v2.1.8)
408
+
409
+ ## [v2.1.6](https://github.com/hatiolab/things-scene/tree/v2.1.6) (2017-07-27)
410
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.5...v2.1.6)
411
+
412
+ ## [v2.1.5](https://github.com/hatiolab/things-scene/tree/v2.1.5) (2017-07-20)
413
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/2.1.4...v2.1.5)
414
+
415
+ ## [2.1.4](https://github.com/hatiolab/things-scene/tree/2.1.4) (2017-07-19)
416
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.3...2.1.4)
417
+
418
+ **Merged pull requests:**
419
+
420
+ - 1399 group children remove [\#217](https://github.com/hatiolab/things-scene/pull/217) ([heartyoh](https://github.com/heartyoh))
421
+
422
+ ## [v2.1.3](https://github.com/hatiolab/things-scene/tree/v2.1.3) (2017-07-05)
423
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.2...v2.1.3)
424
+
425
+ ## [v2.1.2](https://github.com/hatiolab/things-scene/tree/v2.1.2) (2017-07-05)
426
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.1...v2.1.2)
427
+
428
+ ## [v2.1.1](https://github.com/hatiolab/things-scene/tree/v2.1.1) (2017-07-03)
429
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.1.0...v2.1.1)
430
+
431
+ ## [v2.1.0](https://github.com/hatiolab/things-scene/tree/v2.1.0) (2017-06-29)
432
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.42...v2.1.0)
433
+
434
+ ## [v2.0.42](https://github.com/hatiolab/things-scene/tree/v2.0.42) (2017-06-21)
435
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.41...v2.0.42)
436
+
437
+ ## [v2.0.41](https://github.com/hatiolab/things-scene/tree/v2.0.41) (2017-06-21)
438
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.40...v2.0.41)
439
+
440
+ ## [v2.0.40](https://github.com/hatiolab/things-scene/tree/v2.0.40) (2017-06-21)
441
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.37...v2.0.40)
442
+
443
+ ## [v2.0.37](https://github.com/hatiolab/things-scene/tree/v2.0.37) (2017-06-16)
444
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.36...v2.0.37)
445
+
446
+ ## [v2.0.36](https://github.com/hatiolab/things-scene/tree/v2.0.36) (2017-06-13)
447
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.35...v2.0.36)
448
+
449
+ **Merged pull requests:**
450
+
451
+ - 1392 info window [\#216](https://github.com/hatiolab/things-scene/pull/216) ([heartyoh](https://github.com/heartyoh))
452
+ - clearCache\(...attrs\) 지원. [\#215](https://github.com/hatiolab/things-scene/pull/215) ([heartyoh](https://github.com/heartyoh))
453
+
454
+ ## [v2.0.35](https://github.com/hatiolab/things-scene/tree/v2.0.35) (2017-06-02)
455
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.34...v2.0.35)
456
+
457
+ **Merged pull requests:**
458
+
459
+ - \#1377 license [\#214](https://github.com/hatiolab/things-scene/pull/214) ([lotstar87](https://github.com/lotstar87))
460
+
461
+ ## [v2.0.34](https://github.com/hatiolab/things-scene/tree/v2.0.34) (2017-05-31)
462
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.33...v2.0.34)
463
+
464
+ ## [v2.0.33](https://github.com/hatiolab/things-scene/tree/v2.0.33) (2017-05-28)
465
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.29...v2.0.33)
466
+
467
+ ## [v2.0.29](https://github.com/hatiolab/things-scene/tree/v2.0.29) (2017-05-17)
468
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.28...v2.0.29)
469
+
470
+ ## [v2.0.28](https://github.com/hatiolab/things-scene/tree/v2.0.28) (2017-05-16)
471
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.27...v2.0.28)
472
+
473
+ ## [v2.0.27](https://github.com/hatiolab/things-scene/tree/v2.0.27) (2017-05-15)
474
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.26...v2.0.27)
475
+
476
+ ## [v2.0.26](https://github.com/hatiolab/things-scene/tree/v2.0.26) (2017-05-14)
477
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.24...v2.0.26)
478
+
479
+ **Merged pull requests:**
480
+
481
+ - animation test, animation started property [\#213](https://github.com/hatiolab/things-scene/pull/213) ([heartyoh](https://github.com/heartyoh))
482
+ - 1366 global alpha [\#212](https://github.com/hatiolab/things-scene/pull/212) ([heartyoh](https://github.com/heartyoh))
483
+
484
+ ## [v2.0.24](https://github.com/hatiolab/things-scene/tree/v2.0.24) (2017-05-08)
485
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.23...v2.0.24)
486
+
487
+ ## [v2.0.23](https://github.com/hatiolab/things-scene/tree/v2.0.23) (2017-05-08)
488
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.22...v2.0.23)
489
+
490
+ ## [v2.0.22](https://github.com/hatiolab/things-scene/tree/v2.0.22) (2017-05-01)
491
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.21...v2.0.22)
492
+
493
+ **Merged pull requests:**
494
+
495
+ - 처음 셀렉팅할 때 효율을 추가함. [\#211](https://github.com/hatiolab/things-scene/pull/211) ([heartyoh](https://github.com/heartyoh))
496
+ - 드래그로 컴포넌트를 선택할 때, 드래그 범위에서 벗어날 때 선택해제하도록 함. [\#210](https://github.com/hatiolab/things-scene/pull/210) ([heartyoh](https://github.com/heartyoh))
497
+ - 컴포넌트의 hidden 속성은 뷰모드에서만 동작. [\#209](https://github.com/hatiolab/things-scene/pull/209) ([heartyoh](https://github.com/heartyoh))
498
+
499
+ ## [v2.0.21](https://github.com/hatiolab/things-scene/tree/v2.0.21) (2017-04-27)
500
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.20...v2.0.21)
501
+
502
+ ## [v2.0.20](https://github.com/hatiolab/things-scene/tree/v2.0.20) (2017-04-26)
503
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.19...v2.0.20)
504
+
505
+ ## [v2.0.19](https://github.com/hatiolab/things-scene/tree/v2.0.19) (2017-04-24)
506
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.18...v2.0.19)
507
+
508
+ ## [v2.0.18](https://github.com/hatiolab/things-scene/tree/v2.0.18) (2017-04-24)
509
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.17...v2.0.18)
510
+
511
+ **Merged pull requests:**
512
+
513
+ - 애니메이션 인터페이스 수정 [\#208](https://github.com/hatiolab/things-scene/pull/208) ([Lee-YuMin](https://github.com/Lee-YuMin))
514
+ - 1358 애니메이션인터페이스 [\#207](https://github.com/hatiolab/things-scene/pull/207) ([Lee-YuMin](https://github.com/Lee-YuMin))
515
+
516
+ ## [v2.0.17](https://github.com/hatiolab/things-scene/tree/v2.0.17) (2017-04-23)
517
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.16...v2.0.17)
518
+
519
+ ## [v2.0.16](https://github.com/hatiolab/things-scene/tree/v2.0.16) (2017-04-23)
520
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.15...v2.0.16)
521
+
522
+ ## [v2.0.15](https://github.com/hatiolab/things-scene/tree/v2.0.15) (2017-04-20)
523
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.14...v2.0.15)
524
+
525
+ ## [v2.0.14](https://github.com/hatiolab/things-scene/tree/v2.0.14) (2017-04-20)
526
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.13...v2.0.14)
527
+
528
+ ## [v2.0.13](https://github.com/hatiolab/things-scene/tree/v2.0.13) (2017-04-20)
529
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.12...v2.0.13)
530
+
531
+ **Merged pull requests:**
532
+
533
+ - outline 오류 수정. [\#206](https://github.com/hatiolab/things-scene/pull/206) ([heartyoh](https://github.com/heartyoh))
534
+ - event handling sample [\#205](https://github.com/hatiolab/things-scene/pull/205) ([heartyoh](https://github.com/heartyoh))
535
+
536
+ ## [v2.0.12](https://github.com/hatiolab/things-scene/tree/v2.0.12) (2017-04-11)
537
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.11...v2.0.12)
538
+
539
+ **Merged pull requests:**
540
+
541
+ - 1344 moving guide [\#204](https://github.com/hatiolab/things-scene/pull/204) ([heartyoh](https://github.com/heartyoh))
542
+
543
+ ## [v2.0.11](https://github.com/hatiolab/things-scene/tree/v2.0.11) (2017-04-09)
544
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.10...v2.0.11)
545
+
546
+ **Merged pull requests:**
547
+
548
+ - group 시 sorting logic 오류 수정함. [\#203](https://github.com/hatiolab/things-scene/pull/203) ([heartyoh](https://github.com/heartyoh))
549
+ - retention property [\#202](https://github.com/hatiolab/things-scene/pull/202) ([heartyoh](https://github.com/heartyoh))
550
+ - rotation, location property 등 공통 속성의 setter를 정의함. [\#201](https://github.com/hatiolab/things-scene/pull/201) ([heartyoh](https://github.com/heartyoh))
551
+ - 1313 template component [\#200](https://github.com/hatiolab/things-scene/pull/200) ([heartyoh](https://github.com/heartyoh))
552
+ - 데이타매핑시 primitive type property 처리 [\#199](https://github.com/hatiolab/things-scene/pull/199) ([heartyoh](https://github.com/heartyoh))
553
+
554
+ ## [v2.0.10](https://github.com/hatiolab/things-scene/tree/v2.0.10) (2017-04-06)
555
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.9...v2.0.10)
556
+
557
+ **Merged pull requests:**
558
+
559
+ - 1311 relative target [\#198](https://github.com/hatiolab/things-scene/pull/198) ([heartyoh](https://github.com/heartyoh))
560
+
561
+ ## [v2.0.9](https://github.com/hatiolab/things-scene/tree/v2.0.9) (2017-04-02)
562
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.8...v2.0.9)
563
+
564
+ ## [v2.0.8](https://github.com/hatiolab/things-scene/tree/v2.0.8) (2017-03-27)
565
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.7...v2.0.8)
566
+
567
+ ## [v2.0.7](https://github.com/hatiolab/things-scene/tree/v2.0.7) (2017-03-26)
568
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.6...v2.0.7)
569
+
570
+ ## [v2.0.6](https://github.com/hatiolab/things-scene/tree/v2.0.6) (2017-03-23)
571
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.5...v2.0.6)
572
+
573
+ ## [v2.0.5](https://github.com/hatiolab/things-scene/tree/v2.0.5) (2017-03-20)
574
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.4...v2.0.5)
575
+
576
+ ## [v2.0.4](https://github.com/hatiolab/things-scene/tree/v2.0.4) (2017-03-20)
577
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.3...v2.0.4)
578
+
579
+ **Merged pull requests:**
580
+
581
+ - 라인 움직일 때 전 라인을 기준으로 15도 각도로 움직이도록 [\#197](https://github.com/hatiolab/things-scene/pull/197) ([kang-h](https://github.com/kang-h))
582
+
583
+ ## [v2.0.3](https://github.com/hatiolab/things-scene/tree/v2.0.3) (2017-03-18)
584
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.2...v2.0.3)
585
+
586
+ **Merged pull requests:**
587
+
588
+ - buildEvaluator 개선 과정중 발생 오류 수정함. [\#196](https://github.com/hatiolab/things-scene/pull/196) ([heartyoh](https://github.com/heartyoh))
589
+
590
+ ## [v2.0.2](https://github.com/hatiolab/things-scene/tree/v2.0.2) (2017-03-18)
591
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.1...v2.0.2)
592
+
593
+ **Merged pull requests:**
594
+
595
+ - self component가 eval의 context가 되도록 함. [\#195](https://github.com/hatiolab/things-scene/pull/195) ([heartyoh](https://github.com/heartyoh))
596
+
597
+ ## [v2.0.1](https://github.com/hatiolab/things-scene/tree/v2.0.1) (2017-03-10)
598
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v2.0.0...v2.0.1)
599
+
600
+ ## [v2.0.0](https://github.com/hatiolab/things-scene/tree/v2.0.0) (2017-03-09)
601
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.99...v2.0.0)
602
+
603
+ ## [v0.7.99](https://github.com/hatiolab/things-scene/tree/v0.7.99) (2017-03-08)
604
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.98...v0.7.99)
605
+
606
+ **Merged pull requests:**
607
+
608
+ - 1045 paste on parent [\#194](https://github.com/hatiolab/things-scene/pull/194) ([heartyoh](https://github.com/heartyoh))
609
+
610
+ ## [v0.7.98](https://github.com/hatiolab/things-scene/tree/v0.7.98) (2017-03-07)
611
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.97...v0.7.98)
612
+
613
+ **Merged pull requests:**
614
+
615
+ - 1074 component tag [\#193](https://github.com/hatiolab/things-scene/pull/193) ([heartyoh](https://github.com/heartyoh))
616
+
617
+ ## [v0.7.97](https://github.com/hatiolab/things-scene/tree/v0.7.97) (2017-03-03)
618
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.96...v0.7.97)
619
+
620
+ **Merged pull requests:**
621
+
622
+ - Merge branch 'master' into 1063-variable-component [\#192](https://github.com/hatiolab/things-scene/pull/192) ([heartyoh](https://github.com/heartyoh))
623
+
624
+ ## [v0.7.96](https://github.com/hatiolab/things-scene/tree/v0.7.96) (2017-03-03)
625
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v1.0-alpha...v0.7.96)
626
+
627
+ **Merged pull requests:**
628
+
629
+ - 1063 variable component [\#191](https://github.com/hatiolab/things-scene/pull/191) ([heartyoh](https://github.com/heartyoh))
630
+
631
+ ## [v1.0-alpha](https://github.com/hatiolab/things-scene/tree/v1.0-alpha) (2017-02-28)
632
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.95...v1.0-alpha)
633
+
634
+ **Merged pull requests:**
635
+
636
+ - 1060 alias [\#190](https://github.com/hatiolab/things-scene/pull/190) ([heartyoh](https://github.com/heartyoh))
637
+
638
+ ## [v0.7.95](https://github.com/hatiolab/things-scene/tree/v0.7.95) (2017-02-26)
639
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.94...v0.7.95)
640
+
641
+ ## [v0.7.94](https://github.com/hatiolab/things-scene/tree/v0.7.94) (2017-02-26)
642
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.93...v0.7.94)
643
+
644
+ **Merged pull requests:**
645
+
646
+ - 1048 variable object array member access [\#189](https://github.com/hatiolab/things-scene/pull/189) ([heartyoh](https://github.com/heartyoh))
647
+
648
+ ## [v0.7.93](https://github.com/hatiolab/things-scene/tree/v0.7.93) (2017-02-23)
649
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.92...v0.7.93)
650
+
651
+ **Merged pull requests:**
652
+
653
+ - is3dish [\#188](https://github.com/hatiolab/things-scene/pull/188) ([heartyoh](https://github.com/heartyoh))
654
+
655
+ ## [v0.7.92](https://github.com/hatiolab/things-scene/tree/v0.7.92) (2017-02-23)
656
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.91...v0.7.92)
657
+
658
+ ## [v0.7.91](https://github.com/hatiolab/things-scene/tree/v0.7.91) (2017-02-23)
659
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.90...v0.7.91)
660
+
661
+ ## [v0.7.90](https://github.com/hatiolab/things-scene/tree/v0.7.90) (2017-02-23)
662
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.89...v0.7.90)
663
+
664
+ ## [v0.7.89](https://github.com/hatiolab/things-scene/tree/v0.7.89) (2017-02-23)
665
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.88...v0.7.89)
666
+
667
+ **Merged pull requests:**
668
+
669
+ - 1042 keyboard navigation [\#187](https://github.com/hatiolab/things-scene/pull/187) ([heartyoh](https://github.com/heartyoh))
670
+
671
+ ## [v0.7.88](https://github.com/hatiolab/things-scene/tree/v0.7.88) (2017-02-22)
672
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.87...v0.7.88)
673
+
674
+ ## [v0.7.87](https://github.com/hatiolab/things-scene/tree/v0.7.87) (2017-02-20)
675
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.86...v0.7.87)
676
+
677
+ ## [v0.7.86](https://github.com/hatiolab/things-scene/tree/v0.7.86) (2017-02-20)
678
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.85...v0.7.86)
679
+
680
+ ## [v0.7.85](https://github.com/hatiolab/things-scene/tree/v0.7.85) (2017-02-14)
681
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.84...v0.7.85)
682
+
683
+ ## [v0.7.84](https://github.com/hatiolab/things-scene/tree/v0.7.84) (2017-02-10)
684
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.83...v0.7.84)
685
+
686
+ ## [v0.7.83](https://github.com/hatiolab/things-scene/tree/v0.7.83) (2017-02-03)
687
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.82...v0.7.83)
688
+
689
+ ## [v0.7.82](https://github.com/hatiolab/things-scene/tree/v0.7.82) (2017-02-02)
690
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.81...v0.7.82)
691
+
692
+ ## [v0.7.81](https://github.com/hatiolab/things-scene/tree/v0.7.81) (2017-02-02)
693
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/0.7.81...v0.7.81)
694
+
695
+ ## [0.7.81](https://github.com/hatiolab/things-scene/tree/0.7.81) (2017-02-01)
696
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.80...0.7.81)
697
+
698
+ ## [v0.7.80](https://github.com/hatiolab/things-scene/tree/v0.7.80) (2017-01-25)
699
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.79...v0.7.80)
700
+
701
+ ## [v0.7.79](https://github.com/hatiolab/things-scene/tree/v0.7.79) (2017-01-25)
702
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.78...v0.7.79)
703
+
704
+ ## [v0.7.78](https://github.com/hatiolab/things-scene/tree/v0.7.78) (2017-01-25)
705
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.77...v0.7.78)
706
+
707
+ ## [v0.7.77](https://github.com/hatiolab/things-scene/tree/v0.7.77) (2017-01-25)
708
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.76...v0.7.77)
709
+
710
+ ## [v0.7.76](https://github.com/hatiolab/things-scene/tree/v0.7.76) (2017-01-25)
711
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.0.75...v0.7.76)
712
+
713
+ ## [v0.0.75](https://github.com/hatiolab/things-scene/tree/v0.0.75) (2017-01-11)
714
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.74...v0.0.75)
715
+
716
+ ## [v0.7.74](https://github.com/hatiolab/things-scene/tree/v0.7.74) (2017-01-11)
717
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.73...v0.7.74)
718
+
719
+ ## [v0.7.73](https://github.com/hatiolab/things-scene/tree/v0.7.73) (2016-12-26)
720
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.72...v0.7.73)
721
+
722
+ ## [v0.7.72](https://github.com/hatiolab/things-scene/tree/v0.7.72) (2016-12-26)
723
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.71...v0.7.72)
724
+
725
+ ## [v0.7.71](https://github.com/hatiolab/things-scene/tree/v0.7.71) (2016-12-26)
726
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.70...v0.7.71)
727
+
728
+ ## [v0.7.70](https://github.com/hatiolab/things-scene/tree/v0.7.70) (2016-12-13)
729
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.69...v0.7.70)
730
+
731
+ ## [v0.7.69](https://github.com/hatiolab/things-scene/tree/v0.7.69) (2016-11-28)
732
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.68...v0.7.69)
733
+
734
+ ## [v0.7.68](https://github.com/hatiolab/things-scene/tree/v0.7.68) (2016-11-28)
735
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.67...v0.7.68)
736
+
737
+ ## [v0.7.67](https://github.com/hatiolab/things-scene/tree/v0.7.67) (2016-11-27)
738
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.66...v0.7.67)
739
+
740
+ ## [v0.7.66](https://github.com/hatiolab/things-scene/tree/v0.7.66) (2016-11-27)
741
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.65...v0.7.66)
742
+
743
+ **Merged pull requests:**
744
+
745
+ - shadow ready [\#186](https://github.com/hatiolab/things-scene/pull/186) ([heartyoh](https://github.com/heartyoh))
746
+
747
+ ## [v0.7.65](https://github.com/hatiolab/things-scene/tree/v0.7.65) (2016-11-27)
748
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.64...v0.7.65)
749
+
750
+ ## [v0.7.64](https://github.com/hatiolab/things-scene/tree/v0.7.64) (2016-11-25)
751
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.63...v0.7.64)
752
+
753
+ ## [v0.7.63](https://github.com/hatiolab/things-scene/tree/v0.7.63) (2016-11-25)
754
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.62...v0.7.63)
755
+
756
+ ## [v0.7.62](https://github.com/hatiolab/things-scene/tree/v0.7.62) (2016-11-22)
757
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.61...v0.7.62)
758
+
759
+ ## [v0.7.61](https://github.com/hatiolab/things-scene/tree/v0.7.61) (2016-11-22)
760
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.59...v0.7.61)
761
+
762
+ **Merged pull requests:**
763
+
764
+ - 813 global scene reference [\#185](https://github.com/hatiolab/things-scene/pull/185) ([heartyoh](https://github.com/heartyoh))
765
+ - 743 그림자 추가 [\#184](https://github.com/hatiolab/things-scene/pull/184) ([Lee-YuMin](https://github.com/Lee-YuMin))
766
+
767
+ ## [v0.7.59](https://github.com/hatiolab/things-scene/tree/v0.7.59) (2016-11-17)
768
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.58...v0.7.59)
769
+
770
+ ## [v0.7.58](https://github.com/hatiolab/things-scene/tree/v0.7.58) (2016-11-17)
771
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.57...v0.7.58)
772
+
773
+ ## [v0.7.57](https://github.com/hatiolab/things-scene/tree/v0.7.57) (2016-11-17)
774
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.56...v0.7.57)
775
+
776
+ ## [v0.7.56](https://github.com/hatiolab/things-scene/tree/v0.7.56) (2016-11-17)
777
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.55...v0.7.56)
778
+
779
+ ## [v0.7.55](https://github.com/hatiolab/things-scene/tree/v0.7.55) (2016-11-17)
780
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.54...v0.7.55)
781
+
782
+ **Merged pull requests:**
783
+
784
+ - 804 animation ready [\#183](https://github.com/hatiolab/things-scene/pull/183) ([heartyoh](https://github.com/heartyoh))
785
+
786
+ ## [v0.7.54](https://github.com/hatiolab/things-scene/tree/v0.7.54) (2016-11-14)
787
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.53...v0.7.54)
788
+
789
+ ## [v0.7.53](https://github.com/hatiolab/things-scene/tree/v0.7.53) (2016-11-13)
790
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.52...v0.7.53)
791
+
792
+ ## [v0.7.52](https://github.com/hatiolab/things-scene/tree/v0.7.52) (2016-11-13)
793
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.51...v0.7.52)
794
+
795
+ ## [v0.7.51](https://github.com/hatiolab/things-scene/tree/v0.7.51) (2016-11-12)
796
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.50...v0.7.51)
797
+
798
+ ## [v0.7.50](https://github.com/hatiolab/things-scene/tree/v0.7.50) (2016-11-11)
799
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.49...v0.7.50)
800
+
801
+ ## [v0.7.49](https://github.com/hatiolab/things-scene/tree/v0.7.49) (2016-11-11)
802
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.48...v0.7.49)
803
+
804
+ ## [v0.7.48](https://github.com/hatiolab/things-scene/tree/v0.7.48) (2016-11-11)
805
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.47...v0.7.48)
806
+
807
+ ## [v0.7.47](https://github.com/hatiolab/things-scene/tree/v0.7.47) (2016-11-09)
808
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.46...v0.7.47)
809
+
810
+ ## [v0.7.46](https://github.com/hatiolab/things-scene/tree/v0.7.46) (2016-11-07)
811
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.45...v0.7.46)
812
+
813
+ ## [v0.7.45](https://github.com/hatiolab/things-scene/tree/v0.7.45) (2016-11-07)
814
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.44...v0.7.45)
815
+
816
+ ## [v0.7.44](https://github.com/hatiolab/things-scene/tree/v0.7.44) (2016-11-07)
817
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.43...v0.7.44)
818
+
819
+ ## [v0.7.43](https://github.com/hatiolab/things-scene/tree/v0.7.43) (2016-11-07)
820
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.41...v0.7.43)
821
+
822
+ **Merged pull requests:**
823
+
824
+ - 변수모델이 바뀌면 바로 적용되도록 한다. [\#182](https://github.com/hatiolab/things-scene/pull/182) ([heartyoh](https://github.com/heartyoh))
825
+ - 752-table-behavior [\#181](https://github.com/hatiolab/things-scene/pull/181) ([heartyoh](https://github.com/heartyoh))
826
+
827
+ ## [v0.7.41](https://github.com/hatiolab/things-scene/tree/v0.7.41) (2016-11-02)
828
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.40...v0.7.41)
829
+
830
+ ## [v0.7.40](https://github.com/hatiolab/things-scene/tree/v0.7.40) (2016-11-02)
831
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.39...v0.7.40)
832
+
833
+ ## [v0.7.39](https://github.com/hatiolab/things-scene/tree/v0.7.39) (2016-11-02)
834
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.38...v0.7.39)
835
+
836
+ **Merged pull requests:**
837
+
838
+ - 컨테이너의 선택 방법. [\#180](https://github.com/hatiolab/things-scene/pull/180) ([heartyoh](https://github.com/heartyoh))
839
+
840
+ ## [v0.7.38](https://github.com/hatiolab/things-scene/tree/v0.7.38) (2016-11-01)
841
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.37...v0.7.38)
842
+
843
+ ## [v0.7.37](https://github.com/hatiolab/things-scene/tree/v0.7.37) (2016-10-31)
844
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.36...v0.7.37)
845
+
846
+ ## [v0.7.36](https://github.com/hatiolab/things-scene/tree/v0.7.36) (2016-10-29)
847
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.35...v0.7.36)
848
+
849
+ ## [v0.7.35](https://github.com/hatiolab/things-scene/tree/v0.7.35) (2016-10-28)
850
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.34...v0.7.35)
851
+
852
+ ## [v0.7.34](https://github.com/hatiolab/things-scene/tree/v0.7.34) (2016-10-27)
853
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.33...v0.7.34)
854
+
855
+ ## [v0.7.33](https://github.com/hatiolab/things-scene/tree/v0.7.33) (2016-10-27)
856
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.32...v0.7.33)
857
+
858
+ ## [v0.7.32](https://github.com/hatiolab/things-scene/tree/v0.7.32) (2016-10-27)
859
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.31...v0.7.32)
860
+
861
+ **Merged pull requests:**
862
+
863
+ - mixin - memorize path 때문에 발생한 문제 처리. [\#179](https://github.com/hatiolab/things-scene/pull/179) ([heartyoh](https://github.com/heartyoh))
864
+
865
+ ## [v0.7.31](https://github.com/hatiolab/things-scene/tree/v0.7.31) (2016-10-27)
866
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.30...v0.7.31)
867
+
868
+ ## [v0.7.30](https://github.com/hatiolab/things-scene/tree/v0.7.30) (2016-10-27)
869
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.29...v0.7.30)
870
+
871
+ ## [v0.7.29](https://github.com/hatiolab/things-scene/tree/v0.7.29) (2016-10-27)
872
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.28...v0.7.29)
873
+
874
+ ## [v0.7.28](https://github.com/hatiolab/things-scene/tree/v0.7.28) (2016-10-27)
875
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.27...v0.7.28)
876
+
877
+ **Merged pull requests:**
878
+
879
+ - shape, rect-path [\#178](https://github.com/hatiolab/things-scene/pull/178) ([heartyoh](https://github.com/heartyoh))
880
+
881
+ ## [v0.7.27](https://github.com/hatiolab/things-scene/tree/v0.7.27) (2016-10-27)
882
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.26...v0.7.27)
883
+
884
+ ## [v0.7.26](https://github.com/hatiolab/things-scene/tree/v0.7.26) (2016-10-26)
885
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.25...v0.7.26)
886
+
887
+ ## [v0.7.25](https://github.com/hatiolab/things-scene/tree/v0.7.25) (2016-10-25)
888
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.24...v0.7.25)
889
+
890
+ ## [v0.7.24](https://github.com/hatiolab/things-scene/tree/v0.7.24) (2016-10-25)
891
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.23...v0.7.24)
892
+
893
+ ## [v0.7.23](https://github.com/hatiolab/things-scene/tree/v0.7.23) (2016-10-25)
894
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.22...v0.7.23)
895
+
896
+ ## [v0.7.22](https://github.com/hatiolab/things-scene/tree/v0.7.22) (2016-10-20)
897
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.21...v0.7.22)
898
+
899
+ ## [v0.7.21](https://github.com/hatiolab/things-scene/tree/v0.7.21) (2016-10-17)
900
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.20...v0.7.21)
901
+
902
+ ## [v0.7.20](https://github.com/hatiolab/things-scene/tree/v0.7.20) (2016-10-17)
903
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.19...v0.7.20)
904
+
905
+ **Merged pull requests:**
906
+
907
+ - drawStroke을 독립 시킴. [\#177](https://github.com/hatiolab/things-scene/pull/177) ([heartyoh](https://github.com/heartyoh))
908
+
909
+ ## [v0.7.19](https://github.com/hatiolab/things-scene/tree/v0.7.19) (2016-10-17)
910
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.18...v0.7.19)
911
+
912
+ **Merged pull requests:**
913
+
914
+ - text related functions ... 종속성 제거함. [\#176](https://github.com/hatiolab/things-scene/pull/176) ([heartyoh](https://github.com/heartyoh))
915
+
916
+ ## [v0.7.18](https://github.com/hatiolab/things-scene/tree/v0.7.18) (2016-10-17)
917
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.17...v0.7.18)
918
+
919
+ ## [v0.7.17](https://github.com/hatiolab/things-scene/tree/v0.7.17) (2016-10-16)
920
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.16...v0.7.17)
921
+
922
+ ## [v0.7.16](https://github.com/hatiolab/things-scene/tree/v0.7.16) (2016-10-06)
923
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.15...v0.7.16)
924
+
925
+ ## [v0.7.15](https://github.com/hatiolab/things-scene/tree/v0.7.15) (2016-10-06)
926
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.14...v0.7.15)
927
+
928
+ ## [v0.7.14](https://github.com/hatiolab/things-scene/tree/v0.7.14) (2016-10-05)
929
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.13...v0.7.14)
930
+
931
+ ## [v0.7.13](https://github.com/hatiolab/things-scene/tree/v0.7.13) (2016-10-04)
932
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.12...v0.7.13)
933
+
934
+ ## [v0.7.12](https://github.com/hatiolab/things-scene/tree/v0.7.12) (2016-10-03)
935
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.11...v0.7.12)
936
+
937
+ ## [v0.7.11](https://github.com/hatiolab/things-scene/tree/v0.7.11) (2016-09-29)
938
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.10...v0.7.11)
939
+
940
+ ## [v0.7.10](https://github.com/hatiolab/things-scene/tree/v0.7.10) (2016-09-26)
941
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.9...v0.7.10)
942
+
943
+ ## [v0.7.9](https://github.com/hatiolab/things-scene/tree/v0.7.9) (2016-09-26)
944
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.8...v0.7.9)
945
+
946
+ ## [v0.7.8](https://github.com/hatiolab/things-scene/tree/v0.7.8) (2016-09-25)
947
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.7...v0.7.8)
948
+
949
+ ## [v0.7.7](https://github.com/hatiolab/things-scene/tree/v0.7.7) (2016-09-25)
950
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.6...v0.7.7)
951
+
952
+ ## [v0.7.6](https://github.com/hatiolab/things-scene/tree/v0.7.6) (2016-09-25)
953
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.5...v0.7.6)
954
+
955
+ ## [v0.7.5](https://github.com/hatiolab/things-scene/tree/v0.7.5) (2016-09-22)
956
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.4...v0.7.5)
957
+
958
+ ## [v0.7.4](https://github.com/hatiolab/things-scene/tree/v0.7.4) (2016-09-16)
959
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.3...v0.7.4)
960
+
961
+ **Merged pull requests:**
962
+
963
+ - 53 mobile event [\#174](https://github.com/hatiolab/things-scene/pull/174) ([heartyoh](https://github.com/heartyoh))
964
+
965
+ ## [v0.7.3](https://github.com/hatiolab/things-scene/tree/v0.7.3) (2016-09-16)
966
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.2...v0.7.3)
967
+
968
+ **Merged pull requests:**
969
+
970
+ - deep-clone, deep-equals.. [\#173](https://github.com/hatiolab/things-scene/pull/173) ([heartyoh](https://github.com/heartyoh))
971
+ - 542 api memoize [\#172](https://github.com/hatiolab/things-scene/pull/172) ([heartyoh](https://github.com/heartyoh))
972
+
973
+ ## [v0.7.2](https://github.com/hatiolab/things-scene/tree/v0.7.2) (2016-09-14)
974
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.1...v0.7.2)
975
+
976
+ ## [v0.7.1](https://github.com/hatiolab/things-scene/tree/v0.7.1) (2016-09-14)
977
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.7.0...v0.7.1)
978
+
979
+ **Merged pull requests:**
980
+
981
+ - memoize =\> Component API. [\#171](https://github.com/hatiolab/things-scene/pull/171) ([heartyoh](https://github.com/heartyoh))
982
+
983
+ ## [v0.7.0](https://github.com/hatiolab/things-scene/tree/v0.7.0) (2016-09-11)
984
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.39...v0.7.0)
985
+
986
+ ## [v0.6.39](https://github.com/hatiolab/things-scene/tree/v0.6.39) (2016-09-05)
987
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.38...v0.6.39)
988
+
989
+ ## [v0.6.38](https://github.com/hatiolab/things-scene/tree/v0.6.38) (2016-09-05)
990
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.37...v0.6.38)
991
+
992
+ ## [v0.6.37](https://github.com/hatiolab/things-scene/tree/v0.6.37) (2016-09-05)
993
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.36...v0.6.37)
994
+
995
+ ## [v0.6.36](https://github.com/hatiolab/things-scene/tree/v0.6.36) (2016-09-03)
996
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.35...v0.6.36)
997
+
998
+ **Merged pull requests:**
999
+
1000
+ - alt copy [\#170](https://github.com/hatiolab/things-scene/pull/170) ([heartyoh](https://github.com/heartyoh))
1001
+ - image default [\#169](https://github.com/hatiolab/things-scene/pull/169) ([heartyoh](https://github.com/heartyoh))
1002
+
1003
+ ## [v0.6.35](https://github.com/hatiolab/things-scene/tree/v0.6.35) (2016-08-30)
1004
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.34...v0.6.35)
1005
+
1006
+ ## [v0.6.34](https://github.com/hatiolab/things-scene/tree/v0.6.34) (2016-08-23)
1007
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.33...v0.6.34)
1008
+
1009
+ ## [v0.6.33](https://github.com/hatiolab/things-scene/tree/v0.6.33) (2016-08-21)
1010
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.32...v0.6.33)
1011
+
1012
+ ## [v0.6.32](https://github.com/hatiolab/things-scene/tree/v0.6.32) (2016-08-21)
1013
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.31...v0.6.32)
1014
+
1015
+ ## [v0.6.31](https://github.com/hatiolab/things-scene/tree/v0.6.31) (2016-08-21)
1016
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.30...v0.6.31)
1017
+
1018
+ **Merged pull requests:**
1019
+
1020
+ - group 이동 기능 오류 복구. [\#168](https://github.com/hatiolab/things-scene/pull/168) ([heartyoh](https://github.com/heartyoh))
1021
+
1022
+ ## [v0.6.30](https://github.com/hatiolab/things-scene/tree/v0.6.30) (2016-08-21)
1023
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.29...v0.6.30)
1024
+
1025
+ **Merged pull requests:**
1026
+
1027
+ - 476 off browser [\#167](https://github.com/hatiolab/things-scene/pull/167) ([heartyoh](https://github.com/heartyoh))
1028
+ - 451 offscreen image [\#166](https://github.com/hatiolab/things-scene/pull/166) ([heartyoh](https://github.com/heartyoh))
1029
+
1030
+ ## [v0.6.29](https://github.com/hatiolab/things-scene/tree/v0.6.29) (2016-08-14)
1031
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.28...v0.6.29)
1032
+
1033
+ ## [v0.6.28](https://github.com/hatiolab/things-scene/tree/v0.6.28) (2016-08-13)
1034
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.27...v0.6.28)
1035
+
1036
+ ## [v0.6.27](https://github.com/hatiolab/things-scene/tree/v0.6.27) (2016-08-10)
1037
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.26...v0.6.27)
1038
+
1039
+ ## [v0.6.26](https://github.com/hatiolab/things-scene/tree/v0.6.26) (2016-08-09)
1040
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.25...v0.6.26)
1041
+
1042
+ **Merged pull requests:**
1043
+
1044
+ - 컴포넌트 텍스트에 변수 치환 기능 [\#165](https://github.com/hatiolab/things-scene/pull/165) ([heartyoh](https://github.com/heartyoh))
1045
+
1046
+ ## [v0.6.25](https://github.com/hatiolab/things-scene/tree/v0.6.25) (2016-08-09)
1047
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.24...v0.6.25)
1048
+
1049
+ ## [v0.6.24](https://github.com/hatiolab/things-scene/tree/v0.6.24) (2016-08-08)
1050
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.23...v0.6.24)
1051
+
1052
+ **Merged pull requests:**
1053
+
1054
+ - scene-play [\#164](https://github.com/hatiolab/things-scene/pull/164) ([heartyoh](https://github.com/heartyoh))
1055
+
1056
+ ## [v0.6.23](https://github.com/hatiolab/things-scene/tree/v0.6.23) (2016-08-08)
1057
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.22...v0.6.23)
1058
+
1059
+ ## [v0.6.22](https://github.com/hatiolab/things-scene/tree/v0.6.22) (2016-08-07)
1060
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.21...v0.6.22)
1061
+
1062
+ ## [v0.6.21](https://github.com/hatiolab/things-scene/tree/v0.6.21) (2016-08-07)
1063
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.20...v0.6.21)
1064
+
1065
+ ## [v0.6.20](https://github.com/hatiolab/things-scene/tree/v0.6.20) (2016-08-07)
1066
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.19...v0.6.20)
1067
+
1068
+ **Merged pull requests:**
1069
+
1070
+ - component로 공통기능 이전. [\#163](https://github.com/hatiolab/things-scene/pull/163) ([heartyoh](https://github.com/heartyoh))
1071
+
1072
+ ## [v0.6.19](https://github.com/hatiolab/things-scene/tree/v0.6.19) (2016-08-05)
1073
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.18...v0.6.19)
1074
+
1075
+ ## [v0.6.18](https://github.com/hatiolab/things-scene/tree/v0.6.18) (2016-08-05)
1076
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.17...v0.6.18)
1077
+
1078
+ ## [v0.6.17](https://github.com/hatiolab/things-scene/tree/v0.6.17) (2016-08-05)
1079
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.16...v0.6.17)
1080
+
1081
+ ## [v0.6.16](https://github.com/hatiolab/things-scene/tree/v0.6.16) (2016-08-05)
1082
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.15...v0.6.16)
1083
+
1084
+ ## [v0.6.15](https://github.com/hatiolab/things-scene/tree/v0.6.15) (2016-08-05)
1085
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.14...v0.6.15)
1086
+
1087
+ **Merged pull requests:**
1088
+
1089
+ - 401 text structuring [\#162](https://github.com/hatiolab/things-scene/pull/162) ([heartyoh](https://github.com/heartyoh))
1090
+
1091
+ ## [v0.6.14](https://github.com/hatiolab/things-scene/tree/v0.6.14) (2016-08-03)
1092
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.13...v0.6.14)
1093
+
1094
+ ## [v0.6.13](https://github.com/hatiolab/things-scene/tree/v0.6.13) (2016-08-03)
1095
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.12...v0.6.13)
1096
+
1097
+ ## [v0.6.12](https://github.com/hatiolab/things-scene/tree/v0.6.12) (2016-08-03)
1098
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.11...v0.6.12)
1099
+
1100
+ ## [v0.6.11](https://github.com/hatiolab/things-scene/tree/v0.6.11) (2016-08-03)
1101
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.10...v0.6.11)
1102
+
1103
+ **Merged pull requests:**
1104
+
1105
+ - hierarchy [\#161](https://github.com/hatiolab/things-scene/pull/161) ([heartyoh](https://github.com/heartyoh))
1106
+
1107
+ ## [v0.6.10](https://github.com/hatiolab/things-scene/tree/v0.6.10) (2016-08-02)
1108
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.9...v0.6.10)
1109
+
1110
+ **Merged pull requests:**
1111
+
1112
+ - 389 alt shift move bug [\#160](https://github.com/hatiolab/things-scene/pull/160) ([heartyoh](https://github.com/heartyoh))
1113
+
1114
+ ## [v0.6.9](https://github.com/hatiolab/things-scene/tree/v0.6.9) (2016-08-02)
1115
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.8...v0.6.9)
1116
+
1117
+ ## [v0.6.8](https://github.com/hatiolab/things-scene/tree/v0.6.8) (2016-08-02)
1118
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.7...v0.6.8)
1119
+
1120
+ **Merged pull requests:**
1121
+
1122
+ - 421 baseurl application context [\#159](https://github.com/hatiolab/things-scene/pull/159) ([heartyoh](https://github.com/heartyoh))
1123
+
1124
+ ## [v0.6.7](https://github.com/hatiolab/things-scene/tree/v0.6.7) (2016-08-02)
1125
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.6...v0.6.7)
1126
+
1127
+ ## [v0.6.6](https://github.com/hatiolab/things-scene/tree/v0.6.6) (2016-08-02)
1128
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.5...v0.6.6)
1129
+
1130
+ **Merged pull requests:**
1131
+
1132
+ - 변수 초기값 설정 [\#158](https://github.com/hatiolab/things-scene/pull/158) ([heartyoh](https://github.com/heartyoh))
1133
+
1134
+ ## [v0.6.5](https://github.com/hatiolab/things-scene/tree/v0.6.5) (2016-08-01)
1135
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.4...v0.6.5)
1136
+
1137
+ ## [v0.6.4](https://github.com/hatiolab/things-scene/tree/v0.6.4) (2016-08-01)
1138
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.3...v0.6.4)
1139
+
1140
+ **Merged pull requests:**
1141
+
1142
+ - 모델이 컴파일 된 후 속성 모델에서 하위 컴포넌트 정보는 불필요하므로, 삭제한다. [\#157](https://github.com/hatiolab/things-scene/pull/157) ([heartyoh](https://github.com/heartyoh))
1143
+ - 인덱스에서 ID 빨리 찾기. - 셀렉터에 적용. [\#156](https://github.com/hatiolab/things-scene/pull/156) ([heartyoh](https://github.com/heartyoh))
1144
+
1145
+ ## [v0.6.3](https://github.com/hatiolab/things-scene/tree/v0.6.3) (2016-08-01)
1146
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.2...v0.6.3)
1147
+
1148
+ ## [v0.6.2](https://github.com/hatiolab/things-scene/tree/v0.6.2) (2016-08-01)
1149
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.1...v0.6.2)
1150
+
1151
+ ## [v0.6.1](https://github.com/hatiolab/things-scene/tree/v0.6.1) (2016-07-31)
1152
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.6.0...v0.6.1)
1153
+
1154
+ **Merged pull requests:**
1155
+
1156
+ - 400 step rotate [\#155](https://github.com/hatiolab/things-scene/pull/155) ([heartyoh](https://github.com/heartyoh))
1157
+ - 400-step-rotate [\#154](https://github.com/hatiolab/things-scene/pull/154) ([heartyoh](https://github.com/heartyoh))
1158
+
1159
+ ## [v0.6.0](https://github.com/hatiolab/things-scene/tree/v0.6.0) (2016-07-30)
1160
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.72...v0.6.0)
1161
+
1162
+ **Merged pull requests:**
1163
+
1164
+ - multi-move [\#153](https://github.com/hatiolab/things-scene/pull/153) ([heartyoh](https://github.com/heartyoh))
1165
+ - 391 wheel scroll error [\#152](https://github.com/hatiolab/things-scene/pull/152) ([heartyoh](https://github.com/heartyoh))
1166
+
1167
+ ## [v0.5.72](https://github.com/hatiolab/things-scene/tree/v0.5.72) (2016-07-28)
1168
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.71...v0.5.72)
1169
+
1170
+ ## [v0.5.71](https://github.com/hatiolab/things-scene/tree/v0.5.71) (2016-07-11)
1171
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.70...v0.5.71)
1172
+
1173
+ ## [v0.5.70](https://github.com/hatiolab/things-scene/tree/v0.5.70) (2016-07-11)
1174
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.69...v0.5.70)
1175
+
1176
+ **Merged pull requests:**
1177
+
1178
+ - 343 character height [\#150](https://github.com/hatiolab/things-scene/pull/150) ([chunseop](https://github.com/chunseop))
1179
+
1180
+ ## [v0.5.69](https://github.com/hatiolab/things-scene/tree/v0.5.69) (2016-07-09)
1181
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.68...v0.5.69)
1182
+
1183
+ ## [v0.5.68](https://github.com/hatiolab/things-scene/tree/v0.5.68) (2016-07-09)
1184
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.67...v0.5.68)
1185
+
1186
+ ## [v0.5.67](https://github.com/hatiolab/things-scene/tree/v0.5.67) (2016-07-08)
1187
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.65...v0.5.67)
1188
+
1189
+ **Merged pull requests:**
1190
+
1191
+ - 그라디언트 0~1 이외의 값일때 버그 수정 [\#149](https://github.com/hatiolab/things-scene/pull/149) ([Lee-YuMin](https://github.com/Lee-YuMin))
1192
+ - 히든 남아있던것 수정 [\#148](https://github.com/hatiolab/things-scene/pull/148) ([Lee-YuMin](https://github.com/Lee-YuMin))
1193
+
1194
+ ## [v0.5.65](https://github.com/hatiolab/things-scene/tree/v0.5.65) (2016-06-29)
1195
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.64...v0.5.65)
1196
+
1197
+ **Merged pull requests:**
1198
+
1199
+ - 343 character height [\#147](https://github.com/hatiolab/things-scene/pull/147) ([chunseop](https://github.com/chunseop))
1200
+
1201
+ ## [v0.5.64](https://github.com/hatiolab/things-scene/tree/v0.5.64) (2016-06-16)
1202
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.63...v0.5.64)
1203
+
1204
+ **Merged pull requests:**
1205
+
1206
+ - 343 character height [\#146](https://github.com/hatiolab/things-scene/pull/146) ([chunseop](https://github.com/chunseop))
1207
+
1208
+ ## [v0.5.63](https://github.com/hatiolab/things-scene/tree/v0.5.63) (2016-06-16)
1209
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.62...v0.5.63)
1210
+
1211
+ **Merged pull requests:**
1212
+
1213
+ - 343 character height [\#145](https://github.com/hatiolab/things-scene/pull/145) ([chunseop](https://github.com/chunseop))
1214
+
1215
+ ## [v0.5.62](https://github.com/hatiolab/things-scene/tree/v0.5.62) (2016-06-15)
1216
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.61...v0.5.62)
1217
+
1218
+ **Merged pull requests:**
1219
+
1220
+ - 343 character height [\#144](https://github.com/hatiolab/things-scene/pull/144) ([chunseop](https://github.com/chunseop))
1221
+ - 343 character height [\#143](https://github.com/hatiolab/things-scene/pull/143) ([chunseop](https://github.com/chunseop))
1222
+
1223
+ ## [v0.5.61](https://github.com/hatiolab/things-scene/tree/v0.5.61) (2016-06-12)
1224
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.60...v0.5.61)
1225
+
1226
+ ## [v0.5.60](https://github.com/hatiolab/things-scene/tree/v0.5.60) (2016-06-12)
1227
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.59...v0.5.60)
1228
+
1229
+ **Merged pull requests:**
1230
+
1231
+ - 343 character height [\#142](https://github.com/hatiolab/things-scene/pull/142) ([chunseop](https://github.com/chunseop))
1232
+
1233
+ ## [v0.5.59](https://github.com/hatiolab/things-scene/tree/v0.5.59) (2016-06-07)
1234
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.58...v0.5.59)
1235
+
1236
+ **Merged pull requests:**
1237
+
1238
+ - 343 character height [\#141](https://github.com/hatiolab/things-scene/pull/141) ([chunseop](https://github.com/chunseop))
1239
+ - 컴포넌트 hidden 프로퍼티 이동 [\#138](https://github.com/hatiolab/things-scene/pull/138) ([Lee-YuMin](https://github.com/Lee-YuMin))
1240
+
1241
+ ## [v0.5.58](https://github.com/hatiolab/things-scene/tree/v0.5.58) (2016-06-02)
1242
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.57...v0.5.58)
1243
+
1244
+ **Merged pull requests:**
1245
+
1246
+ - 306 text linewidth [\#137](https://github.com/hatiolab/things-scene/pull/137) ([chunseop](https://github.com/chunseop))
1247
+
1248
+ ## [v0.5.57](https://github.com/hatiolab/things-scene/tree/v0.5.57) (2016-05-28)
1249
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.56...v0.5.57)
1250
+
1251
+ ## [v0.5.56](https://github.com/hatiolab/things-scene/tree/v0.5.56) (2016-05-28)
1252
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.55...v0.5.56)
1253
+
1254
+ ## [v0.5.55](https://github.com/hatiolab/things-scene/tree/v0.5.55) (2016-05-27)
1255
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.54...v0.5.55)
1256
+
1257
+ **Merged pull requests:**
1258
+
1259
+ - group, selected, .. 등등. [\#134](https://github.com/hatiolab/things-scene/pull/134) ([heartyoh](https://github.com/heartyoh))
1260
+
1261
+ ## [v0.5.54](https://github.com/hatiolab/things-scene/tree/v0.5.54) (2016-05-27)
1262
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.53...v0.5.54)
1263
+
1264
+ ## [v0.5.53](https://github.com/hatiolab/things-scene/tree/v0.5.53) (2016-05-27)
1265
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.52...v0.5.53)
1266
+
1267
+ **Merged pull requests:**
1268
+
1269
+ - 321 container [\#131](https://github.com/hatiolab/things-scene/pull/131) ([Lee-YuMin](https://github.com/Lee-YuMin))
1270
+
1271
+ ## [v0.5.52](https://github.com/hatiolab/things-scene/tree/v0.5.52) (2016-05-26)
1272
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.51...v0.5.52)
1273
+
1274
+ ## [v0.5.51](https://github.com/hatiolab/things-scene/tree/v0.5.51) (2016-05-25)
1275
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.50...v0.5.51)
1276
+
1277
+ ## [v0.5.50](https://github.com/hatiolab/things-scene/tree/v0.5.50) (2016-05-25)
1278
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.49...v0.5.50)
1279
+
1280
+ ## [v0.5.49](https://github.com/hatiolab/things-scene/tree/v0.5.49) (2016-05-25)
1281
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.48...v0.5.49)
1282
+
1283
+ ## [v0.5.48](https://github.com/hatiolab/things-scene/tree/v0.5.48) (2016-05-24)
1284
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.47...v0.5.48)
1285
+
1286
+ ## [v0.5.47](https://github.com/hatiolab/things-scene/tree/v0.5.47) (2016-05-24)
1287
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.46...v0.5.47)
1288
+
1289
+ ## [v0.5.46](https://github.com/hatiolab/things-scene/tree/v0.5.46) (2016-05-24)
1290
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.45...v0.5.46)
1291
+
1292
+ ## [v0.5.45](https://github.com/hatiolab/things-scene/tree/v0.5.45) (2016-05-24)
1293
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.44...v0.5.45)
1294
+
1295
+ ## [v0.5.44](https://github.com/hatiolab/things-scene/tree/v0.5.44) (2016-05-24)
1296
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.43...v0.5.44)
1297
+
1298
+ ## [v0.5.43](https://github.com/hatiolab/things-scene/tree/v0.5.43) (2016-05-24)
1299
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.42...v0.5.43)
1300
+
1301
+ ## [v0.5.42](https://github.com/hatiolab/things-scene/tree/v0.5.42) (2016-05-24)
1302
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.41...v0.5.42)
1303
+
1304
+ ## [v0.5.41](https://github.com/hatiolab/things-scene/tree/v0.5.41) (2016-05-24)
1305
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.40...v0.5.41)
1306
+
1307
+ ## [v0.5.40](https://github.com/hatiolab/things-scene/tree/v0.5.40) (2016-05-23)
1308
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.39...v0.5.40)
1309
+
1310
+ **Merged pull requests:**
1311
+
1312
+ - 331 meter unit support [\#133](https://github.com/hatiolab/things-scene/pull/133) ([heartyoh](https://github.com/heartyoh))
1313
+
1314
+ ## [v0.5.39](https://github.com/hatiolab/things-scene/tree/v0.5.39) (2016-05-23)
1315
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.38...v0.5.39)
1316
+
1317
+ **Merged pull requests:**
1318
+
1319
+ - outside fill [\#132](https://github.com/hatiolab/things-scene/pull/132) ([heartyoh](https://github.com/heartyoh))
1320
+
1321
+ ## [v0.5.38](https://github.com/hatiolab/things-scene/tree/v0.5.38) (2016-05-23)
1322
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.37...v0.5.38)
1323
+
1324
+ **Merged pull requests:**
1325
+
1326
+ - 321 container [\#130](https://github.com/hatiolab/things-scene/pull/130) ([Lee-YuMin](https://github.com/Lee-YuMin))
1327
+
1328
+ ## [v0.5.37](https://github.com/hatiolab/things-scene/tree/v0.5.37) (2016-05-22)
1329
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.36...v0.5.37)
1330
+
1331
+ ## [v0.5.36](https://github.com/hatiolab/things-scene/tree/v0.5.36) (2016-05-22)
1332
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.35...v0.5.36)
1333
+
1334
+ ## [v0.5.35](https://github.com/hatiolab/things-scene/tree/v0.5.35) (2016-05-22)
1335
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.34...v0.5.35)
1336
+
1337
+ ## [v0.5.34](https://github.com/hatiolab/things-scene/tree/v0.5.34) (2016-05-22)
1338
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.33...v0.5.34)
1339
+
1340
+ ## [v0.5.33](https://github.com/hatiolab/things-scene/tree/v0.5.33) (2016-05-22)
1341
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.32...v0.5.33)
1342
+
1343
+ ## [v0.5.32](https://github.com/hatiolab/things-scene/tree/v0.5.32) (2016-05-22)
1344
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.31...v0.5.32)
1345
+
1346
+ ## [v0.5.31](https://github.com/hatiolab/things-scene/tree/v0.5.31) (2016-05-22)
1347
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.30...v0.5.31)
1348
+
1349
+ ## [v0.5.30](https://github.com/hatiolab/things-scene/tree/v0.5.30) (2016-05-22)
1350
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.29...v0.5.30)
1351
+
1352
+ ## [v0.5.29](https://github.com/hatiolab/things-scene/tree/v0.5.29) (2016-05-22)
1353
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.28...v0.5.29)
1354
+
1355
+ ## [v0.5.28](https://github.com/hatiolab/things-scene/tree/v0.5.28) (2016-05-21)
1356
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.27...v0.5.28)
1357
+
1358
+ ## [v0.5.27](https://github.com/hatiolab/things-scene/tree/v0.5.27) (2016-05-21)
1359
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.26...v0.5.27)
1360
+
1361
+ ## [v0.5.26](https://github.com/hatiolab/things-scene/tree/v0.5.26) (2016-05-21)
1362
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.25...v0.5.26)
1363
+
1364
+ ## [v0.5.25](https://github.com/hatiolab/things-scene/tree/v0.5.25) (2016-05-21)
1365
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.24...v0.5.25)
1366
+
1367
+ **Merged pull requests:**
1368
+
1369
+ - 323 retina display [\#129](https://github.com/hatiolab/things-scene/pull/129) ([heartyoh](https://github.com/heartyoh))
1370
+
1371
+ ## [v0.5.24](https://github.com/hatiolab/things-scene/tree/v0.5.24) (2016-05-20)
1372
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.23...v0.5.24)
1373
+
1374
+ ## [v0.5.23](https://github.com/hatiolab/things-scene/tree/v0.5.23) (2016-05-20)
1375
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.22...v0.5.23)
1376
+
1377
+ ## [v0.5.22](https://github.com/hatiolab/things-scene/tree/v0.5.22) (2016-05-19)
1378
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.21...v0.5.22)
1379
+
1380
+ **Merged pull requests:**
1381
+
1382
+ - 306 text linewidth [\#128](https://github.com/hatiolab/things-scene/pull/128) ([chunseop](https://github.com/chunseop))
1383
+ - 302 [\#122](https://github.com/hatiolab/things-scene/pull/122) ([Lee-YuMin](https://github.com/Lee-YuMin))
1384
+
1385
+ ## [v0.5.21](https://github.com/hatiolab/things-scene/tree/v0.5.21) (2016-05-18)
1386
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.20...v0.5.21)
1387
+
1388
+ **Merged pull requests:**
1389
+
1390
+ - multi-rotation [\#127](https://github.com/hatiolab/things-scene/pull/127) ([heartyoh](https://github.com/heartyoh))
1391
+
1392
+ ## [v0.5.20](https://github.com/hatiolab/things-scene/tree/v0.5.20) (2016-05-17)
1393
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.19...v0.5.20)
1394
+
1395
+ **Merged pull requests:**
1396
+
1397
+ - multi-resize [\#126](https://github.com/hatiolab/things-scene/pull/126) ([heartyoh](https://github.com/heartyoh))
1398
+
1399
+ ## [v0.5.19](https://github.com/hatiolab/things-scene/tree/v0.5.19) (2016-05-17)
1400
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.18...v0.5.19)
1401
+
1402
+ **Merged pull requests:**
1403
+
1404
+ - wheel을 이용한 텍스트 사이즈 조정. [\#125](https://github.com/hatiolab/things-scene/pull/125) ([heartyoh](https://github.com/heartyoh))
1405
+
1406
+ ## [v0.5.18](https://github.com/hatiolab/things-scene/tree/v0.5.18) (2016-05-17)
1407
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.17...v0.5.18)
1408
+
1409
+ **Merged pull requests:**
1410
+
1411
+ - 자식이 선택되어있을 때, 그룹 부모도 선택되어있는 것과 관련한 문제. [\#124](https://github.com/hatiolab/things-scene/pull/124) ([heartyoh](https://github.com/heartyoh))
1412
+
1413
+ ## [v0.5.17](https://github.com/hatiolab/things-scene/tree/v0.5.17) (2016-05-17)
1414
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.16...v0.5.17)
1415
+
1416
+ **Merged pull requests:**
1417
+
1418
+ - shift-key를 누른 상태에서 패스의 이동. [\#123](https://github.com/hatiolab/things-scene/pull/123) ([heartyoh](https://github.com/heartyoh))
1419
+
1420
+ ## [v0.5.16](https://github.com/hatiolab/things-scene/tree/v0.5.16) (2016-05-17)
1421
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.15...v0.5.16)
1422
+
1423
+ ## [v0.5.15](https://github.com/hatiolab/things-scene/tree/v0.5.15) (2016-05-16)
1424
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.14...v0.5.15)
1425
+
1426
+ ## [v0.5.14](https://github.com/hatiolab/things-scene/tree/v0.5.14) (2016-05-15)
1427
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.13...v0.5.14)
1428
+
1429
+ ## [v0.5.13](https://github.com/hatiolab/things-scene/tree/v0.5.13) (2016-05-14)
1430
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.12...v0.5.13)
1431
+
1432
+ **Merged pull requests:**
1433
+
1434
+ - 307 polygon control bug [\#121](https://github.com/hatiolab/things-scene/pull/121) ([heartyoh](https://github.com/heartyoh))
1435
+
1436
+ ## [v0.5.12](https://github.com/hatiolab/things-scene/tree/v0.5.12) (2016-05-14)
1437
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.11...v0.5.12)
1438
+
1439
+ **Merged pull requests:**
1440
+
1441
+ - 304 ui container component [\#120](https://github.com/hatiolab/things-scene/pull/120) ([heartyoh](https://github.com/heartyoh))
1442
+
1443
+ ## [v0.5.11](https://github.com/hatiolab/things-scene/tree/v0.5.11) (2016-05-12)
1444
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.10...v0.5.11)
1445
+
1446
+ ## [v0.5.10](https://github.com/hatiolab/things-scene/tree/v0.5.10) (2016-05-12)
1447
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.9...v0.5.10)
1448
+
1449
+ **Merged pull requests:**
1450
+
1451
+ - 303 layout [\#119](https://github.com/hatiolab/things-scene/pull/119) ([heartyoh](https://github.com/heartyoh))
1452
+ - 177 [\#118](https://github.com/hatiolab/things-scene/pull/118) ([chunseop](https://github.com/chunseop))
1453
+
1454
+ ## [v0.5.9](https://github.com/hatiolab/things-scene/tree/v0.5.9) (2016-05-12)
1455
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.8...v0.5.9)
1456
+
1457
+ ## [v0.5.8](https://github.com/hatiolab/things-scene/tree/v0.5.8) (2016-05-12)
1458
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.7...v0.5.8)
1459
+
1460
+ ## [v0.5.7](https://github.com/hatiolab/things-scene/tree/v0.5.7) (2016-05-12)
1461
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.6...v0.5.7)
1462
+
1463
+ **Merged pull requests:**
1464
+
1465
+ - 303 layout [\#116](https://github.com/hatiolab/things-scene/pull/116) ([heartyoh](https://github.com/heartyoh))
1466
+ - 177 [\#115](https://github.com/hatiolab/things-scene/pull/115) ([chunseop](https://github.com/chunseop))
1467
+
1468
+ ## [v0.5.6](https://github.com/hatiolab/things-scene/tree/v0.5.6) (2016-05-11)
1469
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.5...v0.5.6)
1470
+
1471
+ **Merged pull requests:**
1472
+
1473
+ - text justify case bug fix [\#114](https://github.com/hatiolab/things-scene/pull/114) ([chunseop](https://github.com/chunseop))
1474
+
1475
+ ## [v0.5.5](https://github.com/hatiolab/things-scene/tree/v0.5.5) (2016-05-11)
1476
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.4...v0.5.5)
1477
+
1478
+ **Merged pull requests:**
1479
+
1480
+ - 177 [\#113](https://github.com/hatiolab/things-scene/pull/113) ([chunseop](https://github.com/chunseop))
1481
+
1482
+ ## [v0.5.4](https://github.com/hatiolab/things-scene/tree/v0.5.4) (2016-05-10)
1483
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.3...v0.5.4)
1484
+
1485
+ **Merged pull requests:**
1486
+
1487
+ - ellipse 메소드 antilock 수정 [\#112](https://github.com/hatiolab/things-scene/pull/112) ([Lee-YuMin](https://github.com/Lee-YuMin))
1488
+
1489
+ ## [v0.5.3](https://github.com/hatiolab/things-scene/tree/v0.5.3) (2016-05-10)
1490
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.2...v0.5.3)
1491
+
1492
+ **Merged pull requests:**
1493
+
1494
+ - Pattern Fit - width 애러 수정 [\#111](https://github.com/hatiolab/things-scene/pull/111) ([Lee-YuMin](https://github.com/Lee-YuMin))
1495
+ - 177 [\#110](https://github.com/hatiolab/things-scene/pull/110) ([chunseop](https://github.com/chunseop))
1496
+
1497
+ ## [v0.5.2](https://github.com/hatiolab/things-scene/tree/v0.5.2) (2016-05-04)
1498
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.1...v0.5.2)
1499
+
1500
+ ## [v0.5.1](https://github.com/hatiolab/things-scene/tree/v0.5.1) (2016-05-04)
1501
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.5.0...v0.5.1)
1502
+
1503
+ ## [v0.5.0](https://github.com/hatiolab/things-scene/tree/v0.5.0) (2016-05-03)
1504
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.29...v0.5.0)
1505
+
1506
+ ## [v0.4.29](https://github.com/hatiolab/things-scene/tree/v0.4.29) (2016-05-03)
1507
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.28...v0.4.29)
1508
+
1509
+ ## [v0.4.28](https://github.com/hatiolab/things-scene/tree/v0.4.28) (2016-05-03)
1510
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.27...v0.4.28)
1511
+
1512
+ **Merged pull requests:**
1513
+
1514
+ - 236 class style api [\#108](https://github.com/hatiolab/things-scene/pull/108) ([heartyoh](https://github.com/heartyoh))
1515
+
1516
+ ## [v0.4.27](https://github.com/hatiolab/things-scene/tree/v0.4.27) (2016-04-29)
1517
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.26...v0.4.27)
1518
+
1519
+ ## [v0.4.26](https://github.com/hatiolab/things-scene/tree/v0.4.26) (2016-04-29)
1520
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.25...v0.4.26)
1521
+
1522
+ ## [v0.4.25](https://github.com/hatiolab/things-scene/tree/v0.4.25) (2016-04-26)
1523
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.24...v0.4.25)
1524
+
1525
+ **Merged pull requests:**
1526
+
1527
+ - 177 [\#106](https://github.com/hatiolab/things-scene/pull/106) ([chunseop](https://github.com/chunseop))
1528
+
1529
+ ## [v0.4.24](https://github.com/hatiolab/things-scene/tree/v0.4.24) (2016-04-22)
1530
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.23...v0.4.24)
1531
+
1532
+ ## [v0.4.23](https://github.com/hatiolab/things-scene/tree/v0.4.23) (2016-04-22)
1533
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.22...v0.4.23)
1534
+
1535
+ **Merged pull requests:**
1536
+
1537
+ - 256 grf viewer [\#105](https://github.com/hatiolab/things-scene/pull/105) ([chunseop](https://github.com/chunseop))
1538
+ - 256 grf viewer [\#104](https://github.com/hatiolab/things-scene/pull/104) ([chunseop](https://github.com/chunseop))
1539
+
1540
+ ## [v0.4.22](https://github.com/hatiolab/things-scene/tree/v0.4.22) (2016-04-21)
1541
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.21...v0.4.22)
1542
+
1543
+ **Merged pull requests:**
1544
+
1545
+ - 256 grf viewer [\#103](https://github.com/hatiolab/things-scene/pull/103) ([chunseop](https://github.com/chunseop))
1546
+ - 256 grf [\#102](https://github.com/hatiolab/things-scene/pull/102) ([chunseop](https://github.com/chunseop))
1547
+
1548
+ ## [v0.4.21](https://github.com/hatiolab/things-scene/tree/v0.4.21) (2016-04-19)
1549
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.20...v0.4.21)
1550
+
1551
+ **Merged pull requests:**
1552
+
1553
+ - 177 [\#101](https://github.com/hatiolab/things-scene/pull/101) ([chunseop](https://github.com/chunseop))
1554
+
1555
+ ## [v0.4.20](https://github.com/hatiolab/things-scene/tree/v0.4.20) (2016-04-19)
1556
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.19...v0.4.20)
1557
+
1558
+ **Merged pull requests:**
1559
+
1560
+ - 264 [\#99](https://github.com/hatiolab/things-scene/pull/99) ([Lee-YuMin](https://github.com/Lee-YuMin))
1561
+ - 177 [\#98](https://github.com/hatiolab/things-scene/pull/98) ([chunseop](https://github.com/chunseop))
1562
+ - 253 [\#97](https://github.com/hatiolab/things-scene/pull/97) ([Lee-YuMin](https://github.com/Lee-YuMin))
1563
+
1564
+ ## [v0.4.19](https://github.com/hatiolab/things-scene/tree/v0.4.19) (2016-04-18)
1565
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.18...v0.4.19)
1566
+
1567
+ ## [v0.4.18](https://github.com/hatiolab/things-scene/tree/v0.4.18) (2016-04-18)
1568
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.17...v0.4.18)
1569
+
1570
+ **Merged pull requests:**
1571
+
1572
+ - 177 [\#96](https://github.com/hatiolab/things-scene/pull/96) ([chunseop](https://github.com/chunseop))
1573
+
1574
+ ## [v0.4.17](https://github.com/hatiolab/things-scene/tree/v0.4.17) (2016-04-18)
1575
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.16...v0.4.17)
1576
+
1577
+ ## [v0.4.16](https://github.com/hatiolab/things-scene/tree/v0.4.16) (2016-04-18)
1578
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.15...v0.4.16)
1579
+
1580
+ **Merged pull requests:**
1581
+
1582
+ - export component/layer/event-map/link [\#94](https://github.com/hatiolab/things-scene/pull/94) ([heartyoh](https://github.com/heartyoh))
1583
+
1584
+ ## [v0.4.15](https://github.com/hatiolab/things-scene/tree/v0.4.15) (2016-04-16)
1585
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.14...v0.4.15)
1586
+
1587
+ **Merged pull requests:**
1588
+
1589
+ - 177 [\#93](https://github.com/hatiolab/things-scene/pull/93) ([chunseop](https://github.com/chunseop))
1590
+ - 253 [\#92](https://github.com/hatiolab/things-scene/pull/92) ([Lee-YuMin](https://github.com/Lee-YuMin))
1591
+ - pie-progress [\#91](https://github.com/hatiolab/things-scene/pull/91) ([heartyoh](https://github.com/heartyoh))
1592
+ - 177 [\#90](https://github.com/hatiolab/things-scene/pull/90) ([chunseop](https://github.com/chunseop))
1593
+ - 248 [\#88](https://github.com/hatiolab/things-scene/pull/88) ([Lee-YuMin](https://github.com/Lee-YuMin))
1594
+
1595
+ ## [v0.4.14](https://github.com/hatiolab/things-scene/tree/v0.4.14) (2016-04-15)
1596
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.13...v0.4.14)
1597
+
1598
+ **Merged pull requests:**
1599
+
1600
+ - 248 [\#87](https://github.com/hatiolab/things-scene/pull/87) ([Lee-YuMin](https://github.com/Lee-YuMin))
1601
+
1602
+ ## [v0.4.13](https://github.com/hatiolab/things-scene/tree/v0.4.13) (2016-04-12)
1603
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.12...v0.4.13)
1604
+
1605
+ ## [v0.4.12](https://github.com/hatiolab/things-scene/tree/v0.4.12) (2016-04-12)
1606
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.11...v0.4.12)
1607
+
1608
+ ## [v0.4.11](https://github.com/hatiolab/things-scene/tree/v0.4.11) (2016-04-12)
1609
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.10...v0.4.11)
1610
+
1611
+ ## [v0.4.10](https://github.com/hatiolab/things-scene/tree/v0.4.10) (2016-04-12)
1612
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.9...v0.4.10)
1613
+
1614
+ ## [v0.4.9](https://github.com/hatiolab/things-scene/tree/v0.4.9) (2016-04-11)
1615
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.8...v0.4.9)
1616
+
1617
+ **Merged pull requests:**
1618
+
1619
+ - 178 transcoord [\#86](https://github.com/hatiolab/things-scene/pull/86) ([heartyoh](https://github.com/heartyoh))
1620
+
1621
+ ## [v0.4.8](https://github.com/hatiolab/things-scene/tree/v0.4.8) (2016-04-11)
1622
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.7...v0.4.8)
1623
+
1624
+ **Merged pull requests:**
1625
+
1626
+ - 178 transcoord [\#85](https://github.com/hatiolab/things-scene/pull/85) ([heartyoh](https://github.com/heartyoh))
1627
+
1628
+ ## [v0.4.7](https://github.com/hatiolab/things-scene/tree/v0.4.7) (2016-04-11)
1629
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.6...v0.4.7)
1630
+
1631
+ ## [v0.4.6](https://github.com/hatiolab/things-scene/tree/v0.4.6) (2016-04-11)
1632
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.5...v0.4.6)
1633
+
1634
+ **Merged pull requests:**
1635
+
1636
+ - 178 transcoord [\#84](https://github.com/hatiolab/things-scene/pull/84) ([heartyoh](https://github.com/heartyoh))
1637
+ - 시계 추가중 [\#83](https://github.com/hatiolab/things-scene/pull/83) ([Lee-YuMin](https://github.com/Lee-YuMin))
1638
+
1639
+ ## [v0.4.5](https://github.com/hatiolab/things-scene/tree/v0.4.5) (2016-04-08)
1640
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.4...v0.4.5)
1641
+
1642
+ **Merged pull requests:**
1643
+
1644
+ - 178 transcoord [\#82](https://github.com/hatiolab/things-scene/pull/82) ([heartyoh](https://github.com/heartyoh))
1645
+ - 정리 [\#80](https://github.com/hatiolab/things-scene/pull/80) ([chunseop](https://github.com/chunseop))
1646
+
1647
+ ## [v0.4.4](https://github.com/hatiolab/things-scene/tree/v0.4.4) (2016-04-07)
1648
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.3...v0.4.4)
1649
+
1650
+ **Merged pull requests:**
1651
+
1652
+ - 177 [\#79](https://github.com/hatiolab/things-scene/pull/79) ([chunseop](https://github.com/chunseop))
1653
+ - memoize [\#78](https://github.com/hatiolab/things-scene/pull/78) ([heartyoh](https://github.com/heartyoh))
1654
+ - ellipse 함수 polyfill 적용 [\#77](https://github.com/hatiolab/things-scene/pull/77) ([heartyoh](https://github.com/heartyoh))
1655
+ - 178 transcoord [\#76](https://github.com/hatiolab/things-scene/pull/76) ([heartyoh](https://github.com/heartyoh))
1656
+
1657
+ ## [v0.4.3](https://github.com/hatiolab/things-scene/tree/v0.4.3) (2016-04-07)
1658
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.2...v0.4.3)
1659
+
1660
+ **Merged pull requests:**
1661
+
1662
+ - 178 transcoord [\#75](https://github.com/hatiolab/things-scene/pull/75) ([heartyoh](https://github.com/heartyoh))
1663
+ - rect -\> 라운드 정리 [\#74](https://github.com/hatiolab/things-scene/pull/74) ([Lee-YuMin](https://github.com/Lee-YuMin))
1664
+ - 177 [\#73](https://github.com/hatiolab/things-scene/pull/73) ([chunseop](https://github.com/chunseop))
1665
+
1666
+ ## [v0.4.2](https://github.com/hatiolab/things-scene/tree/v0.4.2) (2016-04-03)
1667
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.1...v0.4.2)
1668
+
1669
+ **Merged pull requests:**
1670
+
1671
+ - 몇몇 파일 복구.. [\#72](https://github.com/hatiolab/things-scene/pull/72) ([heartyoh](https://github.com/heartyoh))
1672
+ - model-layer 타입을 이용한 이벤트 컨트롤 [\#71](https://github.com/hatiolab/things-scene/pull/71) ([heartyoh](https://github.com/heartyoh))
1673
+ - model\_base 제거, 컴포넌트 이름 규칙 적용 [\#70](https://github.com/hatiolab/things-scene/pull/70) ([heartyoh](https://github.com/heartyoh))
1674
+ - Selection Box 가 모델러를 최초에 시작한 시점에 traslate 만큼 선택 범위의 오차가 있는 문제 해결 [\#69](https://github.com/hatiolab/things-scene/pull/69) ([heartyoh](https://github.com/heartyoh))
1675
+ - var =\> const [\#68](https://github.com/hatiolab/things-scene/pull/68) ([heartyoh](https://github.com/heartyoh))
1676
+ - symmetry에 fillStyle gradient 도 적용함 [\#67](https://github.com/hatiolab/things-scene/pull/67) ([heartyoh](https://github.com/heartyoh))
1677
+ - symmerty X/Y [\#66](https://github.com/hatiolab/things-scene/pull/66) ([heartyoh](https://github.com/heartyoh))
1678
+ - group resize [\#65](https://github.com/hatiolab/things-scene/pull/65) ([heartyoh](https://github.com/heartyoh))
1679
+ - width-height-free [\#64](https://github.com/hatiolab/things-scene/pull/64) ([heartyoh](https://github.com/heartyoh))
1680
+ - delete context-menu [\#63](https://github.com/hatiolab/things-scene/pull/63) ([heartyoh](https://github.com/heartyoh))
1681
+ - map-integration test [\#62](https://github.com/hatiolab/things-scene/pull/62) ([heartyoh](https://github.com/heartyoh))
1682
+ - 142 map integration [\#61](https://github.com/hatiolab/things-scene/pull/61) ([heartyoh](https://github.com/heartyoh))
1683
+
1684
+ ## [v0.4.1](https://github.com/hatiolab/things-scene/tree/v0.4.1) (2016-04-01)
1685
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.4.0...v0.4.1)
1686
+
1687
+ **Merged pull requests:**
1688
+
1689
+ - map integration sample [\#60](https://github.com/hatiolab/things-scene/pull/60) ([heartyoh](https://github.com/heartyoh))
1690
+
1691
+ ## [v0.4.0](https://github.com/hatiolab/things-scene/tree/v0.4.0) (2016-03-30)
1692
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.32...v0.4.0)
1693
+
1694
+ ## [v0.3.32](https://github.com/hatiolab/things-scene/tree/v0.3.32) (2016-03-30)
1695
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.31...v0.3.32)
1696
+
1697
+ ## [v0.3.31](https://github.com/hatiolab/things-scene/tree/v0.3.31) (2016-03-30)
1698
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.30...v0.3.31)
1699
+
1700
+ ## [v0.3.30](https://github.com/hatiolab/things-scene/tree/v0.3.30) (2016-03-30)
1701
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.29...v0.3.30)
1702
+
1703
+ **Merged pull requests:**
1704
+
1705
+ - 라인캡 추가 [\#59](https://github.com/hatiolab/things-scene/pull/59) ([Lee-YuMin](https://github.com/Lee-YuMin))
1706
+
1707
+ ## [v0.3.29](https://github.com/hatiolab/things-scene/tree/v0.3.29) (2016-03-30)
1708
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.28...v0.3.29)
1709
+
1710
+ **Merged pull requests:**
1711
+
1712
+ - 라인 끝선 추가 [\#58](https://github.com/hatiolab/things-scene/pull/58) ([Lee-YuMin](https://github.com/Lee-YuMin))
1713
+ - 포커스 우선순위 변경 [\#56](https://github.com/hatiolab/things-scene/pull/56) ([Lee-YuMin](https://github.com/Lee-YuMin))
1714
+
1715
+ ## [v0.3.28](https://github.com/hatiolab/things-scene/tree/v0.3.28) (2016-03-30)
1716
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.27...v0.3.28)
1717
+
1718
+ **Merged pull requests:**
1719
+
1720
+ - modeling handlers scale [\#57](https://github.com/hatiolab/things-scene/pull/57) ([heartyoh](https://github.com/heartyoh))
1721
+
1722
+ ## [v0.3.27](https://github.com/hatiolab/things-scene/tree/v0.3.27) (2016-03-30)
1723
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.26...v0.3.27)
1724
+
1725
+ ## [v0.3.26](https://github.com/hatiolab/things-scene/tree/v0.3.26) (2016-03-29)
1726
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.25...v0.3.26)
1727
+
1728
+ ## [v0.3.25](https://github.com/hatiolab/things-scene/tree/v0.3.25) (2016-03-29)
1729
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.24...v0.3.25)
1730
+
1731
+ ## [v0.3.24](https://github.com/hatiolab/things-scene/tree/v0.3.24) (2016-03-29)
1732
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.23...v0.3.24)
1733
+
1734
+ **Merged pull requests:**
1735
+
1736
+ - pattern Fit 추가 [\#55](https://github.com/hatiolab/things-scene/pull/55) ([Lee-YuMin](https://github.com/Lee-YuMin))
1737
+
1738
+ ## [v0.3.23](https://github.com/hatiolab/things-scene/tree/v0.3.23) (2016-03-29)
1739
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.22...v0.3.23)
1740
+
1741
+ ## [v0.3.22](https://github.com/hatiolab/things-scene/tree/v0.3.22) (2016-03-28)
1742
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.21...v0.3.22)
1743
+
1744
+ **Merged pull requests:**
1745
+
1746
+ - 복사시 밑으로 이동 후 복사, 라인 양 끝모양 추가중 [\#54](https://github.com/hatiolab/things-scene/pull/54) ([Lee-YuMin](https://github.com/Lee-YuMin))
1747
+
1748
+ ## [v0.3.21](https://github.com/hatiolab/things-scene/tree/v0.3.21) (2016-03-28)
1749
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.20...v0.3.21)
1750
+
1751
+ **Merged pull requests:**
1752
+
1753
+ - nofill 수정 [\#53](https://github.com/hatiolab/things-scene/pull/53) ([Lee-YuMin](https://github.com/Lee-YuMin))
1754
+
1755
+ ## [v0.3.20](https://github.com/hatiolab/things-scene/tree/v0.3.20) (2016-03-28)
1756
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.19...v0.3.20)
1757
+
1758
+ **Merged pull requests:**
1759
+
1760
+ - nofill일때 컴포넌트 Fill안하기 [\#52](https://github.com/hatiolab/things-scene/pull/52) ([Lee-YuMin](https://github.com/Lee-YuMin))
1761
+
1762
+ ## [v0.3.19](https://github.com/hatiolab/things-scene/tree/v0.3.19) (2016-03-27)
1763
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.18...v0.3.19)
1764
+
1765
+ ## [v0.3.18](https://github.com/hatiolab/things-scene/tree/v0.3.18) (2016-03-27)
1766
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.17...v0.3.18)
1767
+
1768
+ ## [v0.3.17](https://github.com/hatiolab/things-scene/tree/v0.3.17) (2016-03-26)
1769
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.16...v0.3.17)
1770
+
1771
+ ## [v0.3.16](https://github.com/hatiolab/things-scene/tree/v0.3.16) (2016-03-25)
1772
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.15...v0.3.16)
1773
+
1774
+ ## [v0.3.15](https://github.com/hatiolab/things-scene/tree/v0.3.15) (2016-03-25)
1775
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.14...v0.3.15)
1776
+
1777
+ ## [v0.3.14](https://github.com/hatiolab/things-scene/tree/v0.3.14) (2016-03-25)
1778
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.13...v0.3.14)
1779
+
1780
+ **Merged pull requests:**
1781
+
1782
+ - 199 [\#51](https://github.com/hatiolab/things-scene/pull/51) ([Lee-YuMin](https://github.com/Lee-YuMin))
1783
+
1784
+ ## [v0.3.13](https://github.com/hatiolab/things-scene/tree/v0.3.13) (2016-03-24)
1785
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.12...v0.3.13)
1786
+
1787
+ **Merged pull requests:**
1788
+
1789
+ - 텍스트에리어에서 핫키 적용 막기 [\#50](https://github.com/hatiolab/things-scene/pull/50) ([Lee-YuMin](https://github.com/Lee-YuMin))
1790
+ - 193 [\#49](https://github.com/hatiolab/things-scene/pull/49) ([chunseop](https://github.com/chunseop))
1791
+
1792
+ ## [v0.3.12](https://github.com/hatiolab/things-scene/tree/v0.3.12) (2016-03-24)
1793
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.11...v0.3.12)
1794
+
1795
+ ## [v0.3.11](https://github.com/hatiolab/things-scene/tree/v0.3.11) (2016-03-23)
1796
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.10...v0.3.11)
1797
+
1798
+ **Merged pull requests:**
1799
+
1800
+ - 히든 추가, 패턴 정렬 약간 수정 [\#48](https://github.com/hatiolab/things-scene/pull/48) ([Lee-YuMin](https://github.com/Lee-YuMin))
1801
+ - 라운드렉트 수정 [\#47](https://github.com/hatiolab/things-scene/pull/47) ([Lee-YuMin](https://github.com/Lee-YuMin))
1802
+
1803
+ ## [v0.3.10](https://github.com/hatiolab/things-scene/tree/v0.3.10) (2016-03-22)
1804
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.9...v0.3.10)
1805
+
1806
+ ## [v0.3.9](https://github.com/hatiolab/things-scene/tree/v0.3.9) (2016-03-22)
1807
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.8...v0.3.9)
1808
+
1809
+ **Merged pull requests:**
1810
+
1811
+ - 184 [\#45](https://github.com/hatiolab/things-scene/pull/45) ([Lee-YuMin](https://github.com/Lee-YuMin))
1812
+
1813
+ ## [v0.3.8](https://github.com/hatiolab/things-scene/tree/v0.3.8) (2016-03-22)
1814
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.7...v0.3.8)
1815
+
1816
+ **Merged pull requests:**
1817
+
1818
+ - 177 [\#44](https://github.com/hatiolab/things-scene/pull/44) ([chunseop](https://github.com/chunseop))
1819
+
1820
+ ## [v0.3.7](https://github.com/hatiolab/things-scene/tree/v0.3.7) (2016-03-21)
1821
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.6...v0.3.7)
1822
+
1823
+ ## [v0.3.6](https://github.com/hatiolab/things-scene/tree/v0.3.6) (2016-03-21)
1824
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.5...v0.3.6)
1825
+
1826
+ **Merged pull requests:**
1827
+
1828
+ - 184 [\#43](https://github.com/hatiolab/things-scene/pull/43) ([Lee-YuMin](https://github.com/Lee-YuMin))
1829
+ - 177 [\#42](https://github.com/hatiolab/things-scene/pull/42) ([chunseop](https://github.com/chunseop))
1830
+
1831
+ ## [v0.3.5](https://github.com/hatiolab/things-scene/tree/v0.3.5) (2016-03-20)
1832
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.4...v0.3.5)
1833
+
1834
+ ## [v0.3.4](https://github.com/hatiolab/things-scene/tree/v0.3.4) (2016-03-20)
1835
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.3...v0.3.4)
1836
+
1837
+ ## [v0.3.3](https://github.com/hatiolab/things-scene/tree/v0.3.3) (2016-03-19)
1838
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.2...v0.3.3)
1839
+
1840
+ **Merged pull requests:**
1841
+
1842
+ - 184-gradient [\#41](https://github.com/hatiolab/things-scene/pull/41) ([heartyoh](https://github.com/heartyoh))
1843
+ - faye를 이용한 pub/sub [\#40](https://github.com/hatiolab/things-scene/pull/40) ([heartyoh](https://github.com/heartyoh))
1844
+
1845
+ ## [v0.3.2](https://github.com/hatiolab/things-scene/tree/v0.3.2) (2016-03-16)
1846
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.1...v0.3.2)
1847
+
1848
+ **Merged pull requests:**
1849
+
1850
+ - DrawText 패딩 수정 [\#39](https://github.com/hatiolab/things-scene/pull/39) ([Lee-YuMin](https://github.com/Lee-YuMin))
1851
+
1852
+ ## [v0.3.1](https://github.com/hatiolab/things-scene/tree/v0.3.1) (2016-03-15)
1853
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.3.0...v0.3.1)
1854
+
1855
+ **Merged pull requests:**
1856
+
1857
+ - 148 [\#38](https://github.com/hatiolab/things-scene/pull/38) ([Lee-YuMin](https://github.com/Lee-YuMin))
1858
+
1859
+ ## [v0.3.0](https://github.com/hatiolab/things-scene/tree/v0.3.0) (2016-03-15)
1860
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.50...v0.3.0)
1861
+
1862
+ **Merged pull requests:**
1863
+
1864
+ - symmetry for ellipse, donut [\#37](https://github.com/hatiolab/things-scene/pull/37) ([heartyoh](https://github.com/heartyoh))
1865
+
1866
+ ## [v0.2.50](https://github.com/hatiolab/things-scene/tree/v0.2.50) (2016-03-15)
1867
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.49...v0.2.50)
1868
+
1869
+ ## [v0.2.49](https://github.com/hatiolab/things-scene/tree/v0.2.49) (2016-03-15)
1870
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.48...v0.2.49)
1871
+
1872
+ ## [v0.2.48](https://github.com/hatiolab/things-scene/tree/v0.2.48) (2016-03-15)
1873
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.47...v0.2.48)
1874
+
1875
+ **Merged pull requests:**
1876
+
1877
+ - 52 [\#36](https://github.com/hatiolab/things-scene/pull/36) ([chunseop](https://github.com/chunseop))
1878
+
1879
+ ## [v0.2.47](https://github.com/hatiolab/things-scene/tree/v0.2.47) (2016-03-13)
1880
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.46...v0.2.47)
1881
+
1882
+ **Merged pull requests:**
1883
+
1884
+ - 52 [\#35](https://github.com/hatiolab/things-scene/pull/35) ([heartyoh](https://github.com/heartyoh))
1885
+
1886
+ ## [v0.2.46](https://github.com/hatiolab/things-scene/tree/v0.2.46) (2016-03-13)
1887
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.45...v0.2.46)
1888
+
1889
+ **Merged pull requests:**
1890
+
1891
+ - 52 [\#34](https://github.com/hatiolab/things-scene/pull/34) ([heartyoh](https://github.com/heartyoh))
1892
+
1893
+ ## [v0.2.45](https://github.com/hatiolab/things-scene/tree/v0.2.45) (2016-03-11)
1894
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.44...v0.2.45)
1895
+
1896
+ **Merged pull requests:**
1897
+
1898
+ - 52 [\#33](https://github.com/hatiolab/things-scene/pull/33) ([chunseop](https://github.com/chunseop))
1899
+
1900
+ ## [v0.2.44](https://github.com/hatiolab/things-scene/tree/v0.2.44) (2016-03-11)
1901
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.43...v0.2.44)
1902
+
1903
+ ## [v0.2.43](https://github.com/hatiolab/things-scene/tree/v0.2.43) (2016-03-11)
1904
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.42...v0.2.43)
1905
+
1906
+ ## [v0.2.42](https://github.com/hatiolab/things-scene/tree/v0.2.42) (2016-03-11)
1907
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.41...v0.2.42)
1908
+
1909
+ **Merged pull requests:**
1910
+
1911
+ - 131 [\#32](https://github.com/hatiolab/things-scene/pull/32) ([Lee-YuMin](https://github.com/Lee-YuMin))
1912
+
1913
+ ## [v0.2.41](https://github.com/hatiolab/things-scene/tree/v0.2.41) (2016-03-11)
1914
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.40...v0.2.41)
1915
+
1916
+ **Merged pull requests:**
1917
+
1918
+ - barcode, text - override drawText\(\) function [\#31](https://github.com/hatiolab/things-scene/pull/31) ([heartyoh](https://github.com/heartyoh))
1919
+
1920
+ ## [v0.2.40](https://github.com/hatiolab/things-scene/tree/v0.2.40) (2016-03-11)
1921
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.39...v0.2.40)
1922
+
1923
+ **Merged pull requests:**
1924
+
1925
+ - 131 [\#30](https://github.com/hatiolab/things-scene/pull/30) ([Lee-YuMin](https://github.com/Lee-YuMin))
1926
+
1927
+ ## [v0.2.39](https://github.com/hatiolab/things-scene/tree/v0.2.39) (2016-03-10)
1928
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.38...v0.2.39)
1929
+
1930
+ **Merged pull requests:**
1931
+
1932
+ - deselection by clicking with shift-key [\#29](https://github.com/hatiolab/things-scene/pull/29) ([heartyoh](https://github.com/heartyoh))
1933
+
1934
+ ## [v0.2.38](https://github.com/hatiolab/things-scene/tree/v0.2.38) (2016-03-10)
1935
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.37...v0.2.38)
1936
+
1937
+ **Merged pull requests:**
1938
+
1939
+ - 125 incorrect synchronization [\#28](https://github.com/hatiolab/things-scene/pull/28) ([heartyoh](https://github.com/heartyoh))
1940
+ - paste without copy [\#27](https://github.com/hatiolab/things-scene/pull/27) ([heartyoh](https://github.com/heartyoh))
1941
+ - deep clone, deep equals [\#26](https://github.com/hatiolab/things-scene/pull/26) ([heartyoh](https://github.com/heartyoh))
1942
+ - deep clone [\#25](https://github.com/hatiolab/things-scene/pull/25) ([heartyoh](https://github.com/heartyoh))
1943
+ - 131 [\#24](https://github.com/hatiolab/things-scene/pull/24) ([Lee-YuMin](https://github.com/Lee-YuMin))
1944
+ - 133 [\#23](https://github.com/hatiolab/things-scene/pull/23) ([Lee-YuMin](https://github.com/Lee-YuMin))
1945
+
1946
+ ## [v0.2.37](https://github.com/hatiolab/things-scene/tree/v0.2.37) (2016-03-09)
1947
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.36...v0.2.37)
1948
+
1949
+ **Merged pull requests:**
1950
+
1951
+ - shift key를 누르고 이동하는 경우에 수직, 수평 한 방향으로만 이동하도록 함 [\#22](https://github.com/hatiolab/things-scene/pull/22) ([heartyoh](https://github.com/heartyoh))
1952
+
1953
+ ## [v0.2.36](https://github.com/hatiolab/things-scene/tree/v0.2.36) (2016-03-09)
1954
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.35...v0.2.36)
1955
+
1956
+ ## [v0.2.35](https://github.com/hatiolab/things-scene/tree/v0.2.35) (2016-03-09)
1957
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.34...v0.2.35)
1958
+
1959
+ **Merged pull requests:**
1960
+
1961
+ - 141 guidelayer origin rect position [\#21](https://github.com/hatiolab/things-scene/pull/21) ([heartyoh](https://github.com/heartyoh))
1962
+
1963
+ ## [v0.2.34](https://github.com/hatiolab/things-scene/tree/v0.2.34) (2016-03-09)
1964
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.33...v0.2.34)
1965
+
1966
+ **Merged pull requests:**
1967
+
1968
+ - 컴포넌트 컨트롤 좌표 개념 정리 [\#20](https://github.com/hatiolab/things-scene/pull/20) ([heartyoh](https://github.com/heartyoh))
1969
+
1970
+ ## [v0.2.33](https://github.com/hatiolab/things-scene/tree/v0.2.33) (2016-03-08)
1971
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.32...v0.2.33)
1972
+
1973
+ **Merged pull requests:**
1974
+
1975
+ - 이미지 gray화 로직 정리. [\#19](https://github.com/hatiolab/things-scene/pull/19) ([chunseop](https://github.com/chunseop))
1976
+
1977
+ ## [v0.2.32](https://github.com/hatiolab/things-scene/tree/v0.2.32) (2016-03-08)
1978
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.31...v0.2.32)
1979
+
1980
+ ## [v0.2.31](https://github.com/hatiolab/things-scene/tree/v0.2.31) (2016-03-08)
1981
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.30...v0.2.31)
1982
+
1983
+ ## [v0.2.30](https://github.com/hatiolab/things-scene/tree/v0.2.30) (2016-03-08)
1984
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.29...v0.2.30)
1985
+
1986
+ **Merged pull requests:**
1987
+
1988
+ - toDataURL API 추가 [\#18](https://github.com/hatiolab/things-scene/pull/18) ([heartyoh](https://github.com/heartyoh))
1989
+
1990
+ ## [v0.2.29](https://github.com/hatiolab/things-scene/tree/v0.2.29) (2016-03-08)
1991
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.28...v0.2.29)
1992
+
1993
+ **Merged pull requests:**
1994
+
1995
+ - text wrap에서 fontSize에 대하여 scale처리. [\#17](https://github.com/hatiolab/things-scene/pull/17) ([chunseop](https://github.com/chunseop))
1996
+ - polygon, triangle 패스 변경시 도형이 이상해지는 버그 해결 [\#16](https://github.com/hatiolab/things-scene/pull/16) ([chunseop](https://github.com/chunseop))
1997
+
1998
+ ## [v0.2.28](https://github.com/hatiolab/things-scene/tree/v0.2.28) (2016-03-07)
1999
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.27...v0.2.28)
2000
+
2001
+ ## [v0.2.27](https://github.com/hatiolab/things-scene/tree/v0.2.27) (2016-03-07)
2002
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.26...v0.2.27)
2003
+
2004
+ ## [v0.2.26](https://github.com/hatiolab/things-scene/tree/v0.2.26) (2016-03-07)
2005
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.25...v0.2.26)
2006
+
2007
+ ## [v0.2.25](https://github.com/hatiolab/things-scene/tree/v0.2.25) (2016-03-07)
2008
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.24...v0.2.25)
2009
+
2010
+ **Merged pull requests:**
2011
+
2012
+ - 94 [\#15](https://github.com/hatiolab/things-scene/pull/15) ([chunseop](https://github.com/chunseop))
2013
+
2014
+ ## [v0.2.24](https://github.com/hatiolab/things-scene/tree/v0.2.24) (2016-03-07)
2015
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.23...v0.2.24)
2016
+
2017
+ ## [v0.2.23](https://github.com/hatiolab/things-scene/tree/v0.2.23) (2016-03-07)
2018
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.22...v0.2.23)
2019
+
2020
+ ## [v0.2.22](https://github.com/hatiolab/things-scene/tree/v0.2.22) (2016-03-07)
2021
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.21...v0.2.22)
2022
+
2023
+ ## [v0.2.21](https://github.com/hatiolab/things-scene/tree/v0.2.21) (2016-03-07)
2024
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.20...v0.2.21)
2025
+
2026
+ **Merged pull requests:**
2027
+
2028
+ - mode change event [\#14](https://github.com/hatiolab/things-scene/pull/14) ([heartyoh](https://github.com/heartyoh))
2029
+
2030
+ ## [v0.2.20](https://github.com/hatiolab/things-scene/tree/v0.2.20) (2016-03-07)
2031
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.19...v0.2.20)
2032
+
2033
+ **Merged pull requests:**
2034
+
2035
+ - 스페이스키로 좌표이동. 가이드레이어 원점 클릭하면 모델레이어 translate가 원점으로 이동하도록. [\#13](https://github.com/hatiolab/things-scene/pull/13) ([heartyoh](https://github.com/heartyoh))
2036
+
2037
+ ## [v0.2.19](https://github.com/hatiolab/things-scene/tree/v0.2.19) (2016-03-05)
2038
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.18...v0.2.19)
2039
+
2040
+ **Merged pull requests:**
2041
+
2042
+ - 모드 정의 추가 [\#12](https://github.com/hatiolab/things-scene/pull/12) ([heartyoh](https://github.com/heartyoh))
2043
+
2044
+ ## [v0.2.18](https://github.com/hatiolab/things-scene/tree/v0.2.18) (2016-03-05)
2045
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.17...v0.2.18)
2046
+
2047
+ **Merged pull requests:**
2048
+
2049
+ - 117 uaevent bug [\#11](https://github.com/hatiolab/things-scene/pull/11) ([heartyoh](https://github.com/heartyoh))
2050
+
2051
+ ## [v0.2.17](https://github.com/hatiolab/things-scene/tree/v0.2.17) (2016-03-04)
2052
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.16...v0.2.17)
2053
+
2054
+ **Merged pull requests:**
2055
+
2056
+ - 드래깅시에 키를 누르면 오류가 발생하는 문제 [\#10](https://github.com/hatiolab/things-scene/pull/10) ([heartyoh](https://github.com/heartyoh))
2057
+
2058
+ ## [v0.2.16](https://github.com/hatiolab/things-scene/tree/v0.2.16) (2016-03-04)
2059
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.15...v0.2.16)
2060
+
2061
+ ## [v0.2.15](https://github.com/hatiolab/things-scene/tree/v0.2.15) (2016-03-04)
2062
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.14...v0.2.15)
2063
+
2064
+ **Merged pull requests:**
2065
+
2066
+ - 변수타입 자동변환 [\#9](https://github.com/hatiolab/things-scene/pull/9) ([Lee-YuMin](https://github.com/Lee-YuMin))
2067
+
2068
+ ## [v0.2.14](https://github.com/hatiolab/things-scene/tree/v0.2.14) (2016-02-28)
2069
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.13...v0.2.14)
2070
+
2071
+ **Merged pull requests:**
2072
+
2073
+ - variable 모델 개선 [\#8](https://github.com/hatiolab/things-scene/pull/8) ([heartyoh](https://github.com/heartyoh))
2074
+ - 0.2.13 [\#7](https://github.com/hatiolab/things-scene/pull/7) ([heartyoh](https://github.com/heartyoh))
2075
+
2076
+ ## [v0.2.13](https://github.com/hatiolab/things-scene/tree/v0.2.13) (2016-02-28)
2077
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.12...v0.2.13)
2078
+
2079
+ **Merged pull requests:**
2080
+
2081
+ - \#97 variable mapping [\#6](https://github.com/hatiolab/things-scene/pull/6) ([heartyoh](https://github.com/heartyoh))
2082
+
2083
+ ## [v0.2.12](https://github.com/hatiolab/things-scene/tree/v0.2.12) (2016-02-26)
2084
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.11...v0.2.12)
2085
+
2086
+ **Merged pull requests:**
2087
+
2088
+ - variable 기능 추가 [\#5](https://github.com/hatiolab/things-scene/pull/5) ([heartyoh](https://github.com/heartyoh))
2089
+
2090
+ ## [v0.2.11](https://github.com/hatiolab/things-scene/tree/v0.2.11) (2016-02-26)
2091
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.10...v0.2.11)
2092
+
2093
+ **Merged pull requests:**
2094
+
2095
+ - API model 가져오기 개선 [\#4](https://github.com/hatiolab/things-scene/pull/4) ([heartyoh](https://github.com/heartyoh))
2096
+ - Api edit [\#3](https://github.com/hatiolab/things-scene/pull/3) ([heartyoh](https://github.com/heartyoh))
2097
+
2098
+ ## [v0.2.10](https://github.com/hatiolab/things-scene/tree/v0.2.10) (2016-02-26)
2099
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.9...v0.2.10)
2100
+
2101
+ ## [v0.2.9](https://github.com/hatiolab/things-scene/tree/v0.2.9) (2016-02-25)
2102
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.8...v0.2.9)
2103
+
2104
+ ## [v0.2.8](https://github.com/hatiolab/things-scene/tree/v0.2.8) (2016-02-25)
2105
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.7...v0.2.8)
2106
+
2107
+ ## [v0.2.7](https://github.com/hatiolab/things-scene/tree/v0.2.7) (2016-02-24)
2108
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.6...v0.2.7)
2109
+
2110
+ ## [v0.2.6](https://github.com/hatiolab/things-scene/tree/v0.2.6) (2016-02-24)
2111
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.5...v0.2.6)
2112
+
2113
+ ## [v0.2.5](https://github.com/hatiolab/things-scene/tree/v0.2.5) (2016-02-23)
2114
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.4...v0.2.5)
2115
+
2116
+ ## [v0.2.4](https://github.com/hatiolab/things-scene/tree/v0.2.4) (2016-02-23)
2117
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.3...v0.2.4)
2118
+
2119
+ ## [v0.2.3](https://github.com/hatiolab/things-scene/tree/v0.2.3) (2016-02-22)
2120
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.2...v0.2.3)
2121
+
2122
+ ## [v0.2.2](https://github.com/hatiolab/things-scene/tree/v0.2.2) (2016-02-22)
2123
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.1...v0.2.2)
2124
+
2125
+ **Merged pull requests:**
2126
+
2127
+ - add on, once, off to API [\#2](https://github.com/hatiolab/things-scene/pull/2) ([heartyoh](https://github.com/heartyoh))
2128
+
2129
+ ## [v0.2.1](https://github.com/hatiolab/things-scene/tree/v0.2.1) (2016-02-21)
2130
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.2.0...v0.2.1)
2131
+
2132
+ ## [v0.2.0](https://github.com/hatiolab/things-scene/tree/v0.2.0) (2016-02-20)
2133
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.1.4...v0.2.0)
2134
+
2135
+ **Merged pull requests:**
2136
+
2137
+ - Device pixel [\#1](https://github.com/hatiolab/things-scene/pull/1) ([heartyoh](https://github.com/heartyoh))
2138
+
2139
+ ## [v0.1.4](https://github.com/hatiolab/things-scene/tree/v0.1.4) (2016-02-15)
2140
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.1.3...v0.1.4)
2141
+
2142
+ ## [v0.1.3](https://github.com/hatiolab/things-scene/tree/v0.1.3) (2016-02-15)
2143
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.1.2...v0.1.3)
2144
+
2145
+ ## [v0.1.2](https://github.com/hatiolab/things-scene/tree/v0.1.2) (2016-02-15)
2146
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/0.1.2...v0.1.2)
2147
+
2148
+ ## [0.1.2](https://github.com/hatiolab/things-scene/tree/0.1.2) (2016-02-15)
2149
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.1.1...0.1.2)
2150
+
2151
+ ## [v0.1.1](https://github.com/hatiolab/things-scene/tree/v0.1.1) (2016-02-15)
2152
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/v0.1.0...v0.1.1)
2153
+
2154
+ ## [v0.1.0](https://github.com/hatiolab/things-scene/tree/v0.1.0) (2016-02-15)
2155
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/0.1.0...v0.1.0)
2156
+
2157
+ ## [0.1.0](https://github.com/hatiolab/things-scene/tree/0.1.0) (2016-02-15)
2158
+ [Full Changelog](https://github.com/hatiolab/things-scene/compare/0.1...0.1.0)
2159
+
2160
+ ## [0.1](https://github.com/hatiolab/things-scene/tree/0.1) (2016-02-15)
2161
+
2162
+
2163
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*