pebble-scalable 1.2.0 → 1.3.0

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.
Files changed (3) hide show
  1. package/README.md +8 -8
  2. package/dist.zip +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # pebble-scalable
2
2
 
3
3
  Package aiming to make it easy to make scaling layouts for different display
4
- sizes by defining their dimension only one.
4
+ sizes by defining their dimension only once.
5
5
 
6
6
  - [Setting up](#setting-up)
7
7
  - [Dimensions](#dimensions)
@@ -29,19 +29,19 @@ Add the includes at the top of your source.
29
29
  Get values for layout dimensions based on display size:
30
30
 
31
31
  ```c
32
- // Get a percentage of the display width and height
33
- const int half_w = scalable_x(50);
34
- const int half_h = scalable_y(50);
32
+ // Get a percentage (thousands) of the display width and height
33
+ const int half_w = scalable_x(500);
34
+ const int half_h = scalable_y(500);
35
35
 
36
36
  // Get a GRect based only on percentage width/height
37
- const GRect center_rect = scalable_grect(33, 33, 33, 33);
37
+ const GRect center_rect = scalable_grect(330, 330, 330, 330);
38
38
  ```
39
39
 
40
40
  If a percentage isn't precise enough, the x/y or w/h can be nudged by some pixels:
41
41
 
42
42
  ```c
43
43
  // A rect nudged by 5px in x and 2px in y
44
- const GRect precise = scalable_nudge_xy(scalable_grect(10, 10, 20, 20), 5, 2);
44
+ const GRect precise = scalable_nudge_xy(scalable_grect(100, 100, 200, 200), 5, 2);
45
45
  ```
46
46
 
47
47
  ## Centering
@@ -49,7 +49,7 @@ const GRect precise = scalable_nudge_xy(scalable_grect(10, 10, 20, 20), 5, 2);
49
49
  A GRect can be centered in either the X or Y axis, or both:
50
50
 
51
51
  ```c
52
- const GRect r = scalable_grect(10, 50, 20, 20);
52
+ const GRect r = scalable_grect(100, 500, 200, 200);
53
53
 
54
54
  // Center horizontally
55
55
  const GRect centered_h = scalable_center_x(r);
@@ -96,7 +96,7 @@ graphics_draw_text(
96
96
  ctx,
97
97
  "This text should appear in the middle third on any platform or display size",
98
98
  scalable_get_font(FONT_ID_SMALL),
99
- scalable_grect(0, 33, 100, 33),
99
+ scalable_grect(0, 330, 1000, 330),
100
100
  GTextOverflowModeTrailingEllipsis,
101
101
  GTextAlignmentCenter,
102
102
  NULL
package/dist.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pebble-scalable",
3
3
  "author": "Chris Lewis",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "files": [
6
6
  "dist.zip"
7
7
  ],