write_xlsx 1.12.0 → 1.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Changes +30 -0
- data/lib/write_xlsx/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1635db5db3b473587d463688e71ba65bea7af4d8509b1fdf494e8ea0272449f
|
4
|
+
data.tar.gz: ce2fe9f2b245cf39b1fdba9a40136e81fd5ce1bae6a40b18947bfad4fbbb24c8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 284486f2dc12475d785db789f441a9dc3055576c4868aba245a21c3e962d9677430333e3dc7516bc02174062af6e39c8b5f7aec546019e7fd3f968c92adb5bb0
|
7
|
+
data.tar.gz: 9396ea7ad6514b6ae2b24976e8fae95460439e084839481eabff928b18eecab9996a406866e493a69675f60f96c370312168ad9db9986a1bb0a072f4fca853f3
|
data/Changes
CHANGED
@@ -1,5 +1,35 @@
|
|
1
1
|
Change history of write_xlsx rubygem.
|
2
2
|
|
3
|
+
2024-04-12 v1.12.1
|
4
|
+
Added support for embedding images into worksheets with
|
5
|
+
worksheet `embed_image()`.
|
6
|
+
|
7
|
+
This can be useful if you are building up a spreadsheet of products with
|
8
|
+
a column of images for each product. Embedded images move with the cell
|
9
|
+
so they can be used in worksheet tables or data ranges that will be
|
10
|
+
sorted or filterd.
|
11
|
+
|
12
|
+
This functionality is the equivalent of Excel's menu option to insert an
|
13
|
+
image using the option to "Place in Cell" which is available in Excel
|
14
|
+
3t5 versions from 2023 onwardsd.
|
15
|
+
|
16
|
+
Added support for Excel 365 `IMAGE()` future.
|
17
|
+
|
18
|
+
Added trendline equation formatting for Charts.
|
19
|
+
|
20
|
+
Added support for leader lines to all chart types.
|
21
|
+
|
22
|
+
Added chart option to display `N/A` as empty cells.
|
23
|
+
|
24
|
+
Add support for `invert_if_negative` color option in Charts.
|
25
|
+
|
26
|
+
Added worksheet `very_hidden` method to hide a worksheet in a way that
|
27
|
+
it can only be unhidden by VBA.
|
28
|
+
|
29
|
+
Fixed indentation and alignment property mismatch.
|
30
|
+
Fix issue where a horizontal alignment format was ignored if the
|
31
|
+
indentation was also set.
|
32
|
+
|
3
33
|
2023-12-26 v1.11.2
|
4
34
|
Fix issue where header images in chartsheets weren't displayed.
|
5
35
|
Add support for custom table total functions.
|
data/lib/write_xlsx/version.rb
CHANGED