glimmer-dsl-gtk 0.0.4 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 13f25c4ca569b9dd667c4d87e2e175d9c953f9e613ab572cffda63f8cb181fb1
4
- data.tar.gz: 4b28c418c1957467b0eaa9de2dbbd03cf9e63542a3e3d6425c6d101c04f90c09
3
+ metadata.gz: f22243974881af0d6bfc0e94582efedfdfaab615b1e803773c071004e338a758
4
+ data.tar.gz: 94ceb10514f79d1b725007ceb7047920e440f0822541cc60c8478f648576c23e
5
5
  SHA512:
6
- metadata.gz: 62541e82fbb67f300bee346c685942a24c98a93662830021d75b4c4fe6b4e0eba0ca4ad048f745f54b051d52e990d9d3220c551d47cb33f163d9c3c9812d3bce
7
- data.tar.gz: 7a0af395ce5e7ed8da206052341dc98ef7a4eb0d967413bdb9deb21f15647a07713fea1b0fca1296acc6bff46d96251ff2a9fb0a9962f34383328f36e041560a
6
+ metadata.gz: 32b587f511b83e138ef64dcf89ec1d23dcd0aec8fdb9b022564eff1deb8bf8c94b5b164734f3d1138413f4e1cb7639c7c919c988754c271f2b1716a738b5fd23
7
+ data.tar.gz: f7351e8a6dcf653a697e57f24bbd1e37da71a6ab389b6fa1189e5ddba8e9c0f521f2962ccdda2ca0d37b2ec8a22a9d7b8768bd7975cd55a59fe21e48827a84a7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.8
4
+
5
+ - Download `images/breaking-blue-wave.png` from web in Cairo examples that use it (`image.rb`, `clip_image.rb`, `image_gradient.rb`) to avoid bloating Ruby gem
6
+
7
+ ## 0.0.7
8
+
9
+ - samples/cairo/text.rb
10
+ - Support for `path` nested `show_text`, `text_path`, `show_glyphs`, `glyph_path`, `new_sub_path` operations
11
+
12
+ ## 0.0.6
13
+
14
+ - samples/cairo/clip_image.rb
15
+ - samples/cairo/curve_to.rb
16
+ - samples/cairo/dashes.rb
17
+ - samples/cairo/fill_and_stroke2.rb
18
+ - samples/cairo/fill_style.rb
19
+ - samples/cairo/gradient.rb
20
+ - samples/cairo/image.rb
21
+ - samples/cairo/image_gradient.rb
22
+ - samples/cairo/multi_segment_caps.rb
23
+ - samples/cairo/rounded_rectangle.rb
24
+ - samples/cairo/set_line_cap.rb
25
+ - samples/cairo/set_line_join.rb
26
+ - Supported nested sub-paths (nesting `path` within another `path`)
27
+ - Support declarative `fill`/`paint` of `image, x, y` in cairo graphics
28
+ - Support declarative transforms on cairo graphics shapes: `translate`, `scale`, `rotate`
29
+ - Support applying transform on `drawing_area` `paint`
30
+ - Support for `path` nested `rectangle`, `rounded_rectangle`, and `arc_negative` operations
31
+
32
+ ## 0.0.5
33
+
34
+ - Support `drawing_area#paint(red, green, blue)` operation to set the initial `drawing_area` paint color base
35
+ - Support `arc` as an operation inside `path` in Cairo declarative shape syntax
36
+ - Support `arc_negative` cairo graphics shape
37
+ - Support cairo graphics shape `clip`
38
+
3
39
  ## 0.0.4
4
40
 
5
41
  - Tetris Menu Bar