Skip to content

Commit 21d1bb5

Browse files
committed
removed google analytics
1 parent 9748c3f commit 21d1bb5

2 files changed

Lines changed: 27 additions & 9 deletions

File tree

flex2.idea

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,30 @@ create new file | newFactory={(path)=>{}}
1212
art offset loading / arbitrary data loader tab
1313
mark sonmaped as obsolete
1414
add flex.json to sonic 2 disassembly join #repo
15+
http://sonicresearch.org/community/index.php?threads/flex-2.5177/#post-78014
16+
17:27:19 <%MainMemory> do you think you could add an option to export a sprite sheet in the future?
17+
17:28:38 <%MainMemory> as much as I like people using my programs, it would be more convenient if they didn't have to set up a separate project file just to use SpriteSheetGen
18+
17:17:46 <%MainMemory> I think you'll have to change the definition format
19+
17:18:01 <%snkenjoi> why
20+
17:19:20 <%snkenjoi> I just needs extending if anything
21+
17:19:34 <%MainMemory> well I consider that a change to the format
22+
17:20:19 <%snkenjoi> well yeah, it is
23+
17:20:36 <%MainMemory> S1 and S2 DPLC header is number of requests, S3K non-player DPLC header is number of requests minus one
24+
17:20:47 <%snkenjoi> I think it already supports N-1 and N
25+
17:20:52 <%snkenjoi> you just need to use a different letter
26+
17:22:01 <%MainMemory> I'm talking about headerSize(2)
27+
17:22:54 <%MainMemory> you need to be able to add one when reading and subtract one when writing
28+
17:23:04 <%snkenjoi> ah, to the header
29+
17:23:08 <%MainMemory> instead of just writing the entry count as-is
30+
17:23:17 <%snkenjoi> header(2, -1) would work
31+
17:23:23 <%snkenjoi> I mean
32+
17:23:25 <%snkenjoi> not atm
33+
17:23:29 <%snkenjoi> when I support it
34+
17:23:29 <%snkenjoi> lol
35+
17:23:35 <%MainMemory> sure
36+
17:23:43 <%snkenjoi> or headerMutation(-1)
37+
17:23:48 <%snkenjoi> as an addition
38+
17:24:20 <%MainMemory> and the rest is just swapping the order of the N and A lines
39+
17:24:28 <%snkenjoi> yeah which it already supports
40+
41+
17:47:50 <MainMemory> if you're interested, you can set a webhook in the repository settings with a URL like http://mmbot.reimuhakurei.net/github?key=secrethackingtools&network=BadnikZONE&channel=%23SSRG

modules/root.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
import React from 'react';
22
import { render } from 'react-dom';
33
import { Layout } from '#components/layout';
4-
import packageJson from '../package.json';
54

65
import './controls/keyboard';
76
import './components/import';
87

9-
import Analytics from 'electron-google-analytics';
10-
const devMode = /node_modules[\\/]electron[\\/]/.test(process.execPath);
11-
if (!devMode) {
12-
(new Analytics('UA-109903721-1'))
13-
.pageview('http://flex2.kirjava.xyz', `/${packageJson.version}`, 'Main View')
14-
.then((response) => { }).catch((err) => { });
15-
}
16-
178
render(
189
<Layout/>,
1910
document.body.appendChild(document.createElement('div'))

0 commit comments

Comments
 (0)