Skip to content

Commit 55f9cef

Browse files
committed
Move from Google Analytics to EndTRACKER
EndTRACKER is my own site analytics software (that I created as an experiment, based it on EndBASIC's cloud service codebase) and serves to remove the dependency on Google Analytics.
1 parent a9ac635 commit 55f9cef

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ for the time being.**
2424
history doesn't leave old characters behind when the cursor is in the middle
2525
of a line (not at the end).
2626

27+
* Replaced the use of Google Analytics in the web interface with EndTRACKER,
28+
my own experiment at site statistics. If you are curious, this service's
29+
code is a direct fork of EndBASIC's cloud service--hence the name.
30+
2731
## Changes in version 0.8.0
2832

2933
**Released on 2021-11-11.**

web/src/index.html

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@
44
<meta charset="utf-8">
55
<title>EndBASIC</title>
66
<link rel="stylesheet" href="style.css" />
7-
8-
<!-- Global site tag (gtag.js) - Google Analytics -->
9-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TMFTHF01XS"></script>
10-
<script>
11-
window.dataLayer = window.dataLayer || [];
12-
function gtag(){dataLayer.push(arguments);}
13-
gtag('js', new Date());
14-
gtag('config', 'G-TMFTHF01XS');
15-
</script>
167
</head>
178

189
<body>
@@ -41,5 +32,10 @@
4132
<a id="report-issue" href="https://github.com/endbasic/endbasic/issues/new">Report
4233
an issue</a>
4334
</footer>
35+
36+
<script type="module">
37+
import { RequestsClient } from "https://www.endbasic.dev/js/main-exported.js";
38+
new RequestsClient("6a633c2c-7fda-11ec-86e4-1cfd087199c2").saveRequest();
39+
</script>
4440
</body>
4541
</html>

0 commit comments

Comments
 (0)