@capturebridge/sdk 0.22.3 → 0.22.4
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.
- package/CHANGELOG.html +43 -1
- package/README.md +2 -2
- package/Version.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.html
CHANGED
|
@@ -1,4 +1,43 @@
|
|
|
1
|
-
<
|
|
1
|
+
<html>
|
|
2
|
+
<head>
|
|
3
|
+
<title>CaptureBridge JavaScript SDK v0.22.4 Changelog</title>
|
|
4
|
+
<style>
|
|
5
|
+
body {
|
|
6
|
+
font-family: sans-serif;
|
|
7
|
+
background: #fff;
|
|
8
|
+
color: #111;
|
|
9
|
+
padding: 1em;
|
|
10
|
+
margin:auto;
|
|
11
|
+
max-width:720px;
|
|
12
|
+
}
|
|
13
|
+
pre {
|
|
14
|
+
border: 1px solid #fff;
|
|
15
|
+
padding: 1em;
|
|
16
|
+
background:#333;
|
|
17
|
+
color:#fff;
|
|
18
|
+
}
|
|
19
|
+
code {
|
|
20
|
+
font-family: "Courier New", monospace;
|
|
21
|
+
}
|
|
22
|
+
@media (prefers-color-scheme: dark) {
|
|
23
|
+
body {
|
|
24
|
+
background: #111;
|
|
25
|
+
color: #eee;
|
|
26
|
+
}
|
|
27
|
+
a {
|
|
28
|
+
color: #5959F4;
|
|
29
|
+
}
|
|
30
|
+
a:visited {
|
|
31
|
+
color: #916AB4;
|
|
32
|
+
}
|
|
33
|
+
a:active {
|
|
34
|
+
color: #FF5959;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
</style>
|
|
38
|
+
</head>
|
|
39
|
+
<body>
|
|
40
|
+
<h1>Changelog</h1>
|
|
2
41
|
<p>All notable changes to this project will be documented in this file.</p>
|
|
3
42
|
<p>The format is based on <a href="https://keepachangelog.com/en/1.1.0/">Keep a Changelog</a>,
|
|
4
43
|
and this project adheres to <a href="https://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p>
|
|
@@ -165,3 +204,6 @@ use the plugin's default image format.)</li>
|
|
|
165
204
|
<ul>
|
|
166
205
|
<li>Fix bug where <code>null</code> would be sent for some URL parameters.</li>
|
|
167
206
|
</ul>
|
|
207
|
+
|
|
208
|
+
</body>
|
|
209
|
+
</html>
|
package/README.md
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
<!--
|
|
4
4
|
Not until: INF-3147
|
|
5
|
-
[SDK Documentation for v0.22.
|
|
6
|
-
[CHANGELOG](https://docs.capturebridge.net/client/sdk/javascript/0.22.
|
|
5
|
+
[SDK Documentation for v0.22.4](https://docs.capturebridge.net/client/sdk/javascript/0.22.4)
|
|
6
|
+
[CHANGELOG](https://docs.capturebridge.net/client/sdk/javascript/0.22.4/CHANGELOG.html)
|
|
7
7
|
-->
|
package/Version.js
CHANGED