Skip to content

Commit 92f684d

Browse files
New bundle (#456)
* new bundle * read * is * reordered countly * count.ly to countly * re order features * seperated elses * function gap * linter * reverse linter * gap * more * increased test robustness * reminified * removed mapping * Update CHANGELOG.md --------- Co-authored-by: Artūrs Kadiķis <[email protected]>
1 parent 95de72c commit 92f684d

Some content is hidden

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

59 files changed

+601
-680
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
lib/countly.min.js
1+
lib
22
plugin/boomerang/boomerang.min.js
33
examples/
44
node_modules

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
## X.X.X
1+
## 23.12.0
22
- You can now provide custom storage methods to the SDK
3+
- You can now use the SDK in web workers
4+
- From this version on the SDK is bundled from the Countly JavaScript SDK
35

46
## 23.6.3
57
- You can now add segmentation while presenting a widget with 'present_feedback_widget'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
# Countly Web SDK
66

7+
This SDK is bundled from the modular [Countly JavaScript SDK](https://github.com/Countly/countly-sdk-js).
8+
79
This repository contains the Countly Web SDK, which can be integrated into websites and web applications. The Countly Web SDK is intended to be used with [Countly Lite](https://countly.com/lite), [Countly Flex](https://countly.com/flex) [Countly Enterprise](https://countly.com/enterprise).
810

911
## What is Countly?

cypress/fixtures/click_test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
var domEl = queryExtractor(window.location.search).dom;
2020
Countly.init({
2121
app_key: "YOUR_APP_KEY",
22-
url: "https://your.domain.count.ly",
22+
url: "https://your.domain.countly",
2323
debug: true,
2424
test_mode: true
2525
})

cypress/fixtures/multi_instance.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
//initializing first instance, which will be global Countly
2323
Countly.init({
2424
app_key: "YOUR_APP_KEY1",
25-
url: "https://your.domain.count.ly",
25+
url: "https://your.domain.countly",
2626
test_mode: true
2727
})
2828
Countly.remove_consent();
@@ -57,7 +57,7 @@
5757
//initialize second instance for another app synchronously
5858
var Countly2 = Countly.init({
5959
app_key: "YOUR_APP_KEY2", //must have different APP key
60-
url: "https://your.domain.count.ly",
60+
url: "https://your.domain.countly",
6161
test_mode: true
6262

6363
});
@@ -94,7 +94,7 @@
9494
//initialize third instance for another app asynchronously
9595
Countly.q.push(["init", {
9696
app_key: "YOUR_APP_KEY3", //must have different APP key
97-
url: "https://your.domain.count.ly",
97+
url: "https://your.domain.countly",
9898
test_mode: true
9999

100100
}])
@@ -128,7 +128,7 @@
128128
//initialize fourth instance for another app asynchronously
129129
Countly.q.push(["init", {
130130
app_key: "YOUR_APP_KEY4", //must have different APP key
131-
url: "https://your.domain.count.ly",
131+
url: "https://your.domain.countly",
132132
test_mode: true
133133

134134
}])

cypress/fixtures/referrer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script type='text/javascript'>
55
Countly.init({
66
app_key: "YOUR_APP_KEY",
7-
url: "https://your.domain.count.ly",
7+
url: "https://your.domain.countly",
88
utm: { aa: true },
99
test_mode: true,
1010
test_mode_eq: true,

cypress/fixtures/scroll_test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
console.error("cleared the storage");
1717
Countly.init({
1818
app_key: "YOUR_APP_KEY",
19-
url: "https://your.domain.count.ly",
19+
url: "https://your.domain.countly",
2020
debug:true,
2121
test_mode: true
2222
})

cypress/fixtures/scroll_test_2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script type='text/javascript'>
55
Countly.init({
66
app_key: "YOUR_APP_KEY",
7-
url: "https://your.domain.count.ly",
7+
url: "https://your.domain.countly",
88
debug:true,
99
test_mode: true
1010
})

cypress/fixtures/scroll_test_3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
console.error("cleared the storage");
1717
Countly.init({
1818
app_key: "YOUR_APP_KEY",
19-
url: "https://your.domain.count.ly",
19+
url: "https://your.domain.countly",
2020
debug:true,
2121
test_mode: true
2222
})

cypress/fixtures/session_test_auto.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
//initializing countly with params
2525
Countly.init({
2626
app_key: "YOUR_APP_KEY",
27-
url: "https://your.domain.count.ly",
27+
url: "https://your.domain.countly",
2828
device_id: "auto",
29-
session_update: 5,
29+
session_update: 4,
3030
test_mode: true,
3131
use_session_cookie: confObj.use_session_cookie || false,
3232
debug:true

0 commit comments

Comments
 (0)