github-actions[bot] 1 месяц назад
Родитель
Сommit
d1a71dda0f

+ 0 - 5
.changeset/chilled-candles-beg.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": patch
----
-
-Fixed example code in tsdoc comments of translation functions

+ 0 - 5
.changeset/cuddly-goats-pump.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added function `isDomLoaded()` to check if the DOM is queryable, regardless of `@run-at` setting

+ 0 - 5
.changeset/eleven-hounds-lick.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added parameter `withDecimals` to `digitCount()` (true by default)

+ 0 - 5
.changeset/flat-yaks-nail.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added function `roundFixed()` to round a floating-point number to the given amount of decimals. Can also round to the given power of 10.

+ 0 - 5
.changeset/light-pans-double.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added `probeElementStyle()` to probe the computed style of a temporary element, allowing to resolve CSS variables and default style values, etc.

+ 0 - 5
.changeset/metal-ravens-call.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added function `onDomLoad()` to call a callback and/or resolve a Promise when the DOM is loaded, even retroactively

+ 0 - 5
.changeset/mighty-lamps-hug.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added function `bitSetHas()` to check if a given value is present in a [bitset](https://www.geeksforgeeks.org/cpp-bitset-and-its-application/)

+ 0 - 5
.changeset/nervous-pets-scream.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Replaced a bunch of generic `Error`s with the new custom error class instances

+ 0 - 5
.changeset/sour-candles-clean.md

@@ -1,5 +0,0 @@
----
-"@sv443-network/userutils": patch
----
-
-Fixed `digitCount()` not counting decimals by default

+ 0 - 6
.changeset/tender-actors-lie.md

@@ -1,6 +0,0 @@
----
-"@sv443-network/userutils": minor
----
-
-Added custom error classes `ChecksumMismatchError`, `DataMigrationError` and `PlatformError`, extending from the base class `UUError`  
-  The base class has the additional property `date` which is the time of the error creation

+ 19 - 0
CHANGELOG.md

@@ -1,5 +1,24 @@
 # @sv443-network/userutils
 
+## 9.2.0
+
+### Minor Changes
+
+- 905fea4: Added function `isDomLoaded()` to check if the DOM is queryable, regardless of `@run-at` setting
+- 4264154: Added parameter `withDecimals` to `digitCount()` (true by default)
+- 4264154: Added function `roundFixed()` to round a floating-point number to the given amount of decimals. Can also round to the given power of 10.
+- 7e492cf: Added `probeElementStyle()` to probe the computed style of a temporary element, allowing to resolve CSS variables and default style values, etc.
+- 905fea4: Added function `onDomLoad()` to call a callback and/or resolve a Promise when the DOM is loaded, even retroactively
+- 4264154: Added function `bitSetHas()` to check if a given value is present in a [bitset](https://www.geeksforgeeks.org/cpp-bitset-and-its-application/)
+- bf55335: Replaced a bunch of generic `Error`s with the new custom error class instances
+- bf55335: Added custom error classes `ChecksumMismatchError`, `DataMigrationError` and `PlatformError`, extending from the base class `UUError`
+  The base class has the additional property `date` which is the time of the error creation
+
+### Patch Changes
+
+- 157dacb: Fixed example code in tsdoc comments of translation functions
+- 4264154: Fixed `digitCount()` not counting decimals by default
+
 ## 9.1.0
 
 ### Minor Changes

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
   "name": "@sv443-network/userutils",
   "libName": "UserUtils",
-  "version": "9.1.0",
+  "version": "9.2.0",
   "description": "General purpose DOM/GreaseMonkey library that allows you to register listeners for when CSS selectors exist, intercept events, create persistent & synchronous data stores, modify the DOM more easily and much more",
   "main": "dist/index.js",
   "module": "dist/index.js",