You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,18 @@
24
24
"default": false,
25
25
"description": "Enables collection of Game launch statistics. (Game Launches)"
26
26
},
27
+
"com.analytics.php-reporting": {
28
+
"title": "PHP Reporting",
29
+
"description": "Helps with repacking Legacy Games into zips. Listens for Games trying to load files from the PHP server and reports the ID and URL pair.",
30
+
"type": "boolean",
31
+
"default": false
32
+
},
33
+
"com.analytics.hardware": {
34
+
"title": "Simplified Hardware Info",
35
+
"description": "Sends back simplified hardware info, includes Operating System version and Total System Memory",
36
+
"type": "boolean",
37
+
"default": false
38
+
},
27
39
"com.analytics.delete-button": {
28
40
"title": "Submit Deletion Request",
29
41
"description": "Opens the deletion form in browser, disables all analytics and randomizes a new User ID.",
@@ -20,7 +24,8 @@ export async function activate(context: flashpoint.ExtensionContext) {
20
24
'When you launch Flashpoint',
21
25
'How long you use Flashpoint for',
22
26
'The version of Flashpoint you are running',
23
-
'What games you launch'
27
+
'What games you launch',
28
+
'Which URLs games request, to help with repacking legacy games',
24
29
];
25
30
constres=awaitflashpoint.dialogs.showMessageBox({
26
31
message: `Enable the collection of Flashpoint Analytics?\nThese are listed below and configurable on the Config page.\n\n - ${trackingInfoHuman.join('\n - ')}\n\nThis information is tied to a randomized User ID, no personally identifitable information is collected however you can request deletion via the Config page.\n\nAbsolutely NOTHING will be tracked if you click Disable All.\nIf you want to delete this extension to be sure, go to /Data/Extensions and delete the Analytics folder.`,
@@ -29,12 +34,16 @@ export async function activate(context: flashpoint.ExtensionContext) {
0 commit comments