diff --git a/out/static/style.css b/out/static/style.css index 357f551..f370395 100644 --- a/out/static/style.css +++ b/out/static/style.css @@ -24,12 +24,11 @@ header h1 { font-family: "Raleway", sans-serif; font-size: 1.4em; font-weight: 900; - text-transform: uppercase; letter-spacing: .9px; color: #fff; margin-top: 0; } -header h1 span { font-size: .7em; color: silver; } +header h1 span { font-size: .7em; color: silver; text-transform: uppercase; } header ul { padding: 0; } main { padding: .1em 2em 1.5em; diff --git a/src/analyze_stats.py b/src/analyze_stats.py index ba032c4..2230d08 100755 --- a/src/analyze_stats.py +++ b/src/analyze_stats.py @@ -72,7 +72,7 @@ def write_temporary_lists(): }]}, pretty=True) mylib.json_write(two, { "name": "iOS 14 Study: Selected Apps", - "apps": ["com.google.chrome.ios", "com.google.chrome.ios.2", "com.ingka.ikea.app", "com.ingka.ikea.app.2", "com.microsoft.skype.teams", "com.microsoft.skype.teams.2", "com.Atinon.PassOver", "com.Atinon.PassOver.2", "com.Celltop.SpiralRoll", "com.Celltop.SpiralRoll.2", "com.redforcegames.stack.colors", "com.redforcegames.stack.colors.2"] + "apps": ["com.google.chrome.ios", "com.google.chrome.ios.2", "com.ingka.ikea.app", "com.ingka.ikea.app.2", "com.mcdonalds.mobileapp", "com.mcdonalds.mobileapp.2", "com.microsoft.skype.teams", "com.microsoft.skype.teams.2", "com.Atinon.PassOver", "com.Atinon.PassOver.2", "com.Celltop.SpiralRoll", "com.Celltop.SpiralRoll.2", "com.redforcegames.stack.colors", "com.redforcegames.stack.colors.2"] }, pretty=True) @@ -116,10 +116,11 @@ def move_ios14(): for fname, json in mylib.enum_jsons(bid): fiil = os.path.basename(fname) try: - if json['ios'].split('.')[0] == '14': - mylib.mv(fname, mylib.path_add(diir, '2', fiil)) + ios = json['ios'].split('.')[0] except KeyError: - pass + ios = '14' + if ios == '14' and os.path.getmtime(fname) > 1600258000: + mylib.mv(fname, mylib.path_add(diir, '2', fiil)) write_temporary_lists() # move_ios14() diff --git a/src/html_root.py b/src/html_root.py index 81c310e..02c22b0 100755 --- a/src/html_root.py +++ b/src/html_root.py @@ -85,7 +85,7 @@ def gen_results(base_dir, c_apps, c_domains, title): print(' {} logs'.format(c_logs)) HTML.write(base_dir, '''

{}

-

The AppCheck database currently contains {:,} apps with a total of {:,} unique domains.

+

The appchk database currently contains {:,} apps with a total of {:,} unique domains.

Collected through {:,} recordings with {:,} individual requests.