Skip to content

Commit 072f829

Browse files
committed
Merge branch 'release/1.1.0'
2 parents 413e199 + 8b40aec commit 072f829

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+16658
-5032
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.1.0] - 2021-08-12
10+
11+
### Changed
12+
- Deprecated the `binarySearchThreshold` configuration option, as every search of sorted data always uses binary search. (#791)
13+
14+
### Added
15+
- Added support for the array arithmetic mode in the `calculateFormula()` method. (#782)
16+
- Added a new `CellType` returned by `getCellType`: `CellType.ARRAYFORMULA`. It's assigned to the top-left corner of an array, and is recognized by the `isCellPartOfArray()` and `doesCellHaveFormula()` methods. (#781)
17+
18+
### Fixed
19+
- Fixed an issue with searching sorted data. (#787)
20+
- Fixed the `destroy` method to properly destroy HyperFormula instances. (#788)
21+
22+
923
## [1.0.0] - 2021-07-15
1024

1125
### Changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,9 @@ Your help is much appreciated in any of the following topics:
116116

117117
## License
118118

119-
HyperFormula is a double-licensed software. In all your non-commercial projects, you can use it under the
120-
open source [GPLv3 license](https://github.com/handsontable/hyperformula/blob/master/gpl-3.0.txt). Additionally, there is also a [commercial license](https://handsontable.github.io/hyperformula/guide/contact.html), and support services available.
119+
HyperFormula is available under the [GPLv3 license](https://github.com/handsontable/hyperformula/blob/master/gpl-3.0.txt).
120+
121+
If you need a commercial license or support and maintenance services, [contact our Sales Team](https://handsontable.com/get-a-quote).
121122

122123
## Acknowledgments
123124

docs/guide/advanced-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ console.log(winningTeam)
122122
## Demo
123123

124124
<iframe
125-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/advanced-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
125+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/advanced-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
126126
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
127127
title="handsontable/hyperformula-demos: advanced-usage"
128128
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/basic-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ This demo presents several basic operations integrated with a
391391
sample UI.
392392

393393
<iframe
394-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
394+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/basic-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
395395
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
396396
title="handsontable/hyperformula-demos: basic-operations"
397397
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/basic-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ works. It's time to move on to a more
6666
## Demo
6767

6868
<iframe
69-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/basic-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
69+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/basic-usage?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
7070
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
7171
title="handsontable/hyperformula-demos: basic-usage"
7272
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/batch-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ can be sent as a single one.
118118
## Demo
119119

120120
<iframe
121-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/batch-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
121+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/batch-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
122122
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
123123
title="handsontable/hyperformula-demos: batch-operations"
124124
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/built-in-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ lets you design your own [custom functions](custom-functions).
5151
## Demo
5252

5353
<iframe
54-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/built-in-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
54+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/built-in-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
5555
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
5656
title="handsontable/hyperformula-demos: built-in-functions"
5757
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/clipboard-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ inside the clipboard: `isClipboardEmpty` .
107107
## Demo
108108

109109
<iframe
110-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/clipboard-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
110+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/clipboard-operations?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
111111
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
112112
title="handsontable/hyperformula-demos: clipboard-operations"
113113
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/custom-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ console.log(A1Value);
428428
## Demo
429429
430430
<iframe
431-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/custom-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
431+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/custom-functions?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
432432
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
433433
title="handsontable/hyperformula-demos: custom-functions"
434434
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

docs/guide/date-and-time-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ recognizes them as proper dates:
112112
## Demo
113113

114114
<iframe
115-
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.0.x/date-time?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
115+
src="https://codesandbox.io/embed/github/handsontable/hyperformula-demos/tree/1.1.x/date-time?autoresize=1&fontsize=11&hidenavigation=1&theme=light&view=preview"
116116
style="width:100%; height:500px; border:0; border-radius: 4px; overflow:hidden;"
117117
title="handsontable/hyperformula-demos: date-time"
118118
allow="accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking"

0 commit comments

Comments
 (0)