glimmer-dsl-gtk 0.0.3 → 0.0.7

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: 908b538188d1ca4fd8c7b96bcc1a890febf29a55d2f37d09a81fa1849b15e7fa
4
- data.tar.gz: c88057203f02fed224707cf1ee12f5b66f71d6b9b4632986f0ac3b7f973fd59c
3
+ metadata.gz: c811aaa03169f5bb7754c7c07721bea6c1084d652878d55c75a9aa28f0fa6e56
4
+ data.tar.gz: 5c4ef408d97778f9defaa1f2fdd0df2f83e2d218fa0147317f8d3a68f69205f4
5
5
  SHA512:
6
- metadata.gz: ec820ca1c3782e2b7311bf917bf97f2369da65fff6cf110f887a60e164775ad2b41df9f25a9c904beffd67f3ebd9b6e7decd57f6a222f1a24a5725c5f396d8c1
7
- data.tar.gz: 759f1b973090ed6df0ef78daee7a4220b0261090b300a4a9164fcda5a3779d3a831048fa25d9936848903e639358d5942fec4694e6174bb950f908b7abaeec0b
6
+ metadata.gz: 95e9f024283b4cb606f766f5230436d0caef9b55733ad7347cb45f3ef10e1d7d9555d375b177fe0d5d08091414572804f20b3ba9856f7946df7ccfc894b3428b
7
+ data.tar.gz: 0f381c56c69281dcd1bb9e6ec0391f58f101169da99e1c72ef14193425c7c3728b51cdd1b13169ac418d38ea3197c8adcc2c486b9586cd09aff4e07af2f86315
data/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.0.7
4
+
5
+ - samples/cairo/text.rb
6
+ - Support for `path` nested `show_text`, `text_path`, `show_glyphs`, `glyph_path`, `new_sub_path` operations
7
+
8
+ ## 0.0.6
9
+
10
+ - samples/cairo/clip_image.rb
11
+ - samples/cairo/curve_to.rb
12
+ - samples/cairo/dashes.rb
13
+ - samples/cairo/fill_and_stroke2.rb
14
+ - samples/cairo/fill_style.rb
15
+ - samples/cairo/gradient.rb
16
+ - samples/cairo/image.rb
17
+ - samples/cairo/image_gradient.rb
18
+ - samples/cairo/multi_segment_caps.rb
19
+ - samples/cairo/rounded_rectangle.rb
20
+ - samples/cairo/set_line_cap.rb
21
+ - samples/cairo/set_line_join.rb
22
+ - Supported nested sub-paths (nesting `path` within another `path`)
23
+ - Support declarative `fill`/`paint` of `image, x, y` in cairo graphics
24
+ - Support declarative transforms on cairo graphics shapes: `translate`, `scale`, `rotate`
25
+ - Support applying transform on `drawing_area` `paint`
26
+ - Support for `path` nested `rectangle`, `rounded_rectangle`, and `arc_negative` operations
27
+
28
+ ## 0.0.5
29
+
30
+ - Support `drawing_area#paint(red, green, blue)` operation to set the initial `drawing_area` paint color base
31
+ - Support `arc` as an operation inside `path` in Cairo declarative shape syntax
32
+ - Support `arc_negative` cairo graphics shape
33
+ - Support cairo graphics shape `clip`
34
+
35
+ ## 0.0.4
36
+
37
+ - Tetris Menu Bar
38
+ - Tetris Score Board
39
+ - Tetris Next Tetromino Preview
40
+
3
41
  ## 0.0.3
4
42
 
5
43
  - samples/elaborate/tetris.rb (basic Tetris implementation)