Skip to content

Commit 1d1db68

Browse files
committed
Update app metadata
1 parent d4b93b6 commit 1d1db68

File tree

6 files changed

+135
-134
lines changed

6 files changed

+135
-134
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
.DS_Store

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
gem "github-pages", group: :jekyll_plugins
22
gem "jekyll-remote-theme"
3-
3+

PALSource.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
],
2626
"versions": [
2727
{
28-
"version": "1.0",
28+
"version": "1.6.1",
2929
"buildVersion": "1",
3030
"date": "2022-09-25T09:00:00-08:00",
3131
"size": 20000000,
3232
"downloadURL": "https://raw.githubusercontent.com/AppsFlyerSDK/appsflyer.analytics-app.io/main/manifest.json",
3333
"localizedDescription": "New features and bug fixes.",
34-
"minOSVersion": "12.0"
34+
"minOSVersion": "13.0"
3535
}
3636
],
3737
"appPermissions": {

index.html

Lines changed: 2 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -5,136 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1" />
66
<title>AppsFlyer Analytics</title>
77
<meta name="description" content="AppsFlyer Analytics — download the Analytics app." />
8-
<style>
9-
:root{
10-
--bg: #0b1020;
11-
--text: #0f172a; /* slate-900 */
12-
--muted: #475569; /* slate-600 */
13-
--accent-start:#0ea5e9; /* sky-500 */
14-
--accent-end:#10b981; /* emerald-500 */
15-
--btn-bg:#0ea5e9;
16-
--btn-bg-hover:#0b9bdc;
17-
--btn-text:#ffffff;
18-
--radius: 9999px;
19-
--shadow-sm: 0 6px 14px rgba(2, 6, 23, 0.12);
20-
--shadow-md: 0 10px 24px rgba(2, 6, 23, 0.16);
21-
--maxw: 1000px;
22-
}
23-
24-
* { box-sizing: border-box; }
25-
html, body { height: 100%; }
26-
27-
body{
28-
margin:0;
29-
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
30-
color: var(--text);
31-
background: #f8fafc; /* slate-50 */
32-
line-height: 1.5;
33-
-webkit-font-smoothing: antialiased;
34-
-moz-osx-font-smoothing: grayscale;
35-
}
36-
37-
/* Header with gradient */
38-
.site-header{
39-
background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
40-
color: white;
41-
padding: 56px 24px 80px;
42-
text-align: center;
43-
position: relative;
44-
overflow: hidden;
45-
}
46-
47-
/* Subtle decorative gradient blur */
48-
.site-header::after{
49-
content:"";
50-
position:absolute;
51-
inset:auto -20% -40% -20%;
52-
height: 240px;
53-
background: radial-gradient(60% 60% at 50% 0%,
54-
rgba(255,255,255,0.35) 0%,
55-
rgba(255,255,255,0.10) 40%,
56-
transparent 70%);
57-
filter: blur(24px);
58-
pointer-events: none;
59-
}
60-
61-
.site-title{
62-
margin:0;
63-
font-size: clamp(28px, 4vw, 40px);
64-
font-weight: 800;
65-
letter-spacing: 0.2px;
66-
text-shadow: 0 2px 10px rgba(0,0,0,0.15);
67-
}
68-
69-
main{
70-
max-width: var(--maxw);
71-
margin: -48px auto 80px; /* pull content up slightly over the header */
72-
padding: 0 24px;
73-
}
74-
75-
.card{
76-
background: white;
77-
border-radius: 24px;
78-
padding: 32px 28px;
79-
box-shadow: var(--shadow-md);
80-
}
81-
82-
h1{
83-
margin: 0 0 18px;
84-
font-size: clamp(24px, 3.2vw, 32px);
85-
letter-spacing: 0.2px;
86-
}
87-
88-
p.subtitle{
89-
margin: 0 0 22px;
90-
color: var(--muted);
91-
font-size: 16px;
92-
}
93-
94-
.actions{
95-
display: flex;
96-
flex-wrap: wrap;
97-
gap: 14px;
98-
align-items: center;
99-
}
100-
101-
.btn{
102-
display: inline-flex;
103-
align-items: center;
104-
justify-content: center;
105-
gap: 10px;
106-
padding: 14px 22px;
107-
background: var(--btn-bg);
108-
color: var(--btn-text);
109-
text-decoration: none;
110-
border-radius: var(--radius); /* fully rounded */
111-
box-shadow: var(--shadow-sm);
112-
font-weight: 700;
113-
transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
114-
will-change: transform;
115-
}
116-
117-
.btn:hover{ background: var(--btn-bg-hover); box-shadow: var(--shadow-md); }
118-
.btn:active{ transform: translateY(1px) scale(0.99); }
119-
120-
.btn .icon{
121-
width: 18px; height: 18px; display: inline-block;
122-
}
123-
124-
/* Make everything friendly on very small screens */
125-
@media (max-width: 420px){
126-
.card{ padding: 24px 20px; border-radius: 20px; }
127-
.btn{ width: 100%; justify-content: center; }
128-
}
129-
130-
/* Footer (optional, minimal) */
131-
footer{
132-
text-align: center;
133-
color: #94a3b8; /* slate-400 */
134-
font-size: 14px;
135-
padding: 28px 16px 48px;
136-
}
137-
</style>
8+
<link rel="stylesheet" href="styles.css" />
1389
</head>
13910
<body>
14011
<header class="site-header" role="banner" aria-label="Site header">
@@ -168,4 +39,4 @@ <h1 id="download-title">Download Analytics app</h1>
16839
document.getElementById('year').textContent = new Date().getFullYear();
16940
</script>
17041
</body>
171-
</html>
42+
</html>

styles.css

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
:root{
2+
--bg: #0b1020;
3+
--text: #0f172a; /* slate-900 */
4+
--muted: #475569; /* slate-600 */
5+
--accent-start:#0ea5e9; /* sky-500 */
6+
--accent-end:#10b981; /* emerald-500 */
7+
--btn-bg:#0ea5e9;
8+
--btn-bg-hover:#0b9bdc;
9+
--btn-text:#ffffff;
10+
--radius: 9999px;
11+
--shadow-sm: 0 6px 14px rgba(2, 6, 23, 0.12);
12+
--shadow-md: 0 10px 24px rgba(2, 6, 23, 0.16);
13+
--maxw: 1000px;
14+
}
15+
16+
* { box-sizing: border-box; }
17+
html, body { height: 100%; }
18+
19+
body{
20+
margin:0;
21+
font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
22+
color: var(--text);
23+
background: #f8fafc; /* slate-50 */
24+
line-height: 1.5;
25+
-webkit-font-smoothing: antialiased;
26+
-moz-osx-font-smoothing: grayscale;
27+
}
28+
29+
/* Header with gradient */
30+
.site-header{
31+
background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
32+
color: white;
33+
padding: 56px 24px 80px;
34+
text-align: center;
35+
position: relative;
36+
overflow: hidden;
37+
}
38+
39+
/* Subtle decorative gradient blur */
40+
.site-header::after{
41+
content:"";
42+
position:absolute;
43+
inset:auto -20% -40% -20%;
44+
height: 240px;
45+
background: radial-gradient(60% 60% at 50% 0%,
46+
rgba(255,255,255,0.35) 0%,
47+
rgba(255,255,255,0.10) 40%,
48+
transparent 70%);
49+
filter: blur(24px);
50+
pointer-events: none;
51+
}
52+
53+
.site-title{
54+
margin:0;
55+
font-size: clamp(28px, 4vw, 40px);
56+
font-weight: 800;
57+
letter-spacing: 0.2px;
58+
text-shadow: 0 2px 10px rgba(0,0,0,0.15);
59+
}
60+
61+
main{
62+
max-width: var(--maxw);
63+
margin: -48px auto 80px; /* pull content up slightly over the header */
64+
padding: 0 24px;
65+
}
66+
67+
.card{
68+
background: white;
69+
border-radius: 24px;
70+
padding: 32px 28px;
71+
box-shadow: var(--shadow-md);
72+
}
73+
74+
h1{
75+
margin: 0 0 18px;
76+
font-size: clamp(24px, 3.2vw, 32px);
77+
letter-spacing: 0.2px;
78+
}
79+
80+
p.subtitle{
81+
margin: 0 0 22px;
82+
color: var(--muted);
83+
font-size: 16px;
84+
}
85+
86+
.actions{
87+
display: flex;
88+
flex-wrap: wrap;
89+
gap: 14px;
90+
align-items: center;
91+
}
92+
93+
.btn{
94+
display: inline-flex;
95+
align-items: center;
96+
justify-content: center;
97+
gap: 10px;
98+
padding: 14px 22px;
99+
background: var(--btn-bg);
100+
color: var(--btn-text);
101+
text-decoration: none;
102+
border-radius: var(--radius); /* fully rounded */
103+
box-shadow: var(--shadow-sm);
104+
font-weight: 700;
105+
transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
106+
will-change: transform;
107+
}
108+
109+
.btn:hover{ background: var(--btn-bg-hover); box-shadow: var(--shadow-md); }
110+
.btn:active{ transform: translateY(1px) scale(0.99); }
111+
112+
.btn .icon{
113+
width: 18px; height: 18px; display: inline-block;
114+
}
115+
116+
/* Make everything friendly on very small screens */
117+
@media (max-width: 420px){
118+
.card{ padding: 24px 20px; border-radius: 20px; }
119+
.btn{ width: 100%; justify-content: center; }
120+
}
121+
122+
/* Footer (optional, minimal) */
123+
footer{
124+
text-align: center;
125+
color: #94a3b8; /* slate-400 */
126+
font-size: 14px;
127+
padding: 28px 16px 48px;
128+
}

0 commit comments

Comments
 (0)