Skip to content

Commit b999b3d

Browse files
authored
Merge pull request #1679 from GetStream/develop
Next release (docs only)
2 parents 2b41cde + d02154b commit b999b3d

File tree

3 files changed

+86
-14
lines changed

3 files changed

+86
-14
lines changed

docs/index.html

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,47 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>Stream Chat React Native - Docs</title>
7+
<title>DEPRECATED Stream Chat React Native - Docs DEPRECATED</title>
88
<link rel="icon" type="image/x-icon" href="https://getstream.imgix.net/images/favicons/favicon-96x96.png">
9+
<style>
10+
.deprecationBanner {
11+
position: fixed;
12+
right: 0;
13+
left: 210px;
14+
display: flex;
15+
flex-direction: column;
16+
align-items: center;
17+
justify-content: center;
18+
background-color: #ae423f;
19+
}
20+
21+
.deprecationText, a {
22+
color: #fff;
23+
font-weight: bold;
24+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
25+
}
26+
27+
a {
28+
color: #78d4fc;
29+
font-size: 1.5rem;
30+
padding: 20px 0;
31+
}
32+
33+
34+
@media only screen and (max-width: 600px){
35+
.deprecationBanner {
36+
left: 0;
37+
}
38+
39+
}
40+
</style>
941
</head>
1042
<body>
43+
<div class='deprecationBanner'>
44+
<h1 class='deprecationText'>⚠️ This Documentation is Deprecated ⚠️</h1>
45+
<a href='https://getstream.io/chat/docs/sdk/reactnative/'>Click here to consult our new docs</a>
46+
</div>
1147
<div id="rsg-root"></div>
1248
<script src="build/bundle.38535de9.js"></script>
1349
</body>
14-
</html>
50+
</html>

docs/v3/index.html

Lines changed: 47 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,50 @@
11
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7-
<title>Stream Chat React Native - Docs</title>
8-
<link rel="icon" type="image/x-icon" href="https://getstream.imgix.net/images/favicons/favicon-96x96.png">
9-
</head>
10-
<body>
11-
<div id="rsg-root"></div>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<meta http-equiv="X-UA-Compatible" content="ie=edge">
7+
<title>DEPRECATED Stream Chat React Native - Docs DEPRECATED</title>
8+
<link rel="icon" type="image/x-icon" href="https://getstream.imgix.net/images/favicons/favicon-96x96.png">
9+
<style>
10+
.deprecationBanner {
11+
position: fixed;
12+
right: 0;
13+
left: 210px;
14+
display: flex;
15+
flex-direction: column;
16+
align-items: center;
17+
justify-content: center;
18+
background-color: #ae423f;
19+
}
20+
21+
.deprecationText, a {
22+
color: #fff;
23+
font-weight: bold;
24+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
25+
}
26+
27+
a {
28+
color: #78d4fc;
29+
font-size: 1.5rem;
30+
padding: 20px 0;
31+
}
32+
33+
34+
@media only screen and (max-width: 600px){
35+
.deprecationBanner {
36+
left: 0;
37+
}
38+
39+
}
40+
</style>
41+
</head>
42+
<body>
43+
<div class='deprecationBanner'>
44+
<h1 class='deprecationText'>⚠️ This Documentation is Deprecated ⚠️</h1>
45+
<a href='https://getstream.io/chat/docs/sdk/reactnative/'>Click here to consult our new docs</a>
46+
</div>
47+
<div id="rsg-root"></div>
1248
<script src="build/bundle.a39375a1.js"></script>
1349
</body>
14-
</html>
50+
</html>

docusaurus/docs/reactnative/basics/upgrade_helper.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ To enable offline support please follow the given steps:
5555
If you have installed `stream-chat` dependency explicitly on your application, then upgrade it to v7
5656

5757
```bash
58-
yarn add [email protected]-offline-support.4
58+
5959
```
6060

6161
- **Add `react-native-quick-sqlite` dependency**

0 commit comments

Comments
 (0)