Skip to content

Commit 7622527

Browse files
committed
Change author names
1 parent b64b5de commit 7622527

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

website/blog/2018-04-06-react-navigation-2.0-rc.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The documentation for 2.0 is available at https://reactnavigation.org/
1414

1515
We’re bumping the major version because some of the changes in this release are backwards incompatible. That said, this should be a fairly easy upgrade. We are improving React Navigation incrementally because we don't want to leave developers feeling stranded in an old version. If you use React Navigation in a conventional way and don't have any custom navigators, I can't imagine this update would take you more than an hour.
1616

17-
This blog post is not a comprehensive changelog - that will come with the 2.0 proper release; the following is a list of the breaking changes, suggestions for how you can update your app to accommodate them, notice of deprecations, and some of my favourite new features.
17+
This blog post is not a comprehensive changelog - that will come with the 2.0 proper release; the following is a list of the breaking changes, suggestions for how you can update your app to accommodate them, notice of deprecations, and some of my favourite new features.
1818

1919
## Breaking changes
2020

@@ -46,7 +46,7 @@ Rather than opening a drawer with `navigation.navigate(‘DrawerOpen’)`, you c
4646

4747
### Navigation actions API overhaul
4848

49-
In 1.x, functions on the `navigation` were not contextual - they would be the same regardless of whether your screen was inside of a drawer, a stack, a tab navigator, etc. In 2.0 the functions that are available to you on the `navigation` prop depend on the navigators that it corresponds to. If your screen is inside of both a stack and a drawer navigator, you will have helpers for both -- `push` and `openDrawer`, for example.
49+
In 1.x, functions on the `navigation` were not contextual - they would be the same regardless of whether your screen was inside of a drawer, a stack, a tab navigator, etc. In 2.0 the functions that are available to you on the `navigation` prop depend on the navigators that it corresponds to. If your screen is inside of both a stack and a drawer navigator, you will have helpers for both -- `push` and `openDrawer`, for example.
5050

5151
Given that we only exposed generic helpers (`navigate`, `goBack`) and helpers specific to the stack in 1.x, this would only impact you if you attempted to use the stack helpers from outside of a stack. For example, if you had a tab navigator with a stack in tab A and just a plain screen in tab B, then tried to `push` a route from the screen in tab B, `push` would not be available. Keep this in mind when you update your app if it follows this type of structure.
5252

website/blog/2018-05-07-react-navigation-2.0.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: Core Team
44
authorURL: https://twitter.com/reactnavigation
55
---
66

7-
The documentation is now live at https://reactnavigation.org, and v1 lives [here](/docs/en/1.x/getting-started.html).
7+
The documentation is now live at https://reactnavigation.org, and v1 lives [here](/docs/en/1.x/getting-started.html).
88

99
## Significant breaking changes
1010

@@ -38,7 +38,7 @@ It is now easier to create and maintain custom navigators. The new `createNaviga
3838

3939
Custom navigators can now provide actions helpers for their screens. For example, the new drawer navigator now allows `props.navigation.openDrawer()` within its screen components.
4040

41-
This does not impact most users - you won't need to make any changes for this unless you use custom navigators in your app. Read more about the changes in [RFC 2](https://github.com/react-navigation/rfcs/blob/master/text/0002-navigator-view-api.md). Also read the [custom navigators documentation](/docs/en/custom-navigators.html). You can also watch the ["Creating a navigator" section in this talk](https://youtu.be/wJJZ9Od8MjM?t=1215) to learn more.
41+
This does not impact most users - you won't need to make any changes for this unless you use custom navigators in your app. Read more about the changes in [RFC 2](https://github.com/react-navigation/rfcs/blob/master/text/0002-navigator-view-api.md). Also read the [custom navigators documentation](/docs/en/custom-navigators.html). You can also watch the ["Creating a navigator" section in this talk](https://youtu.be/wJJZ9Od8MjM?t=1215) to learn more.
4242

4343
## Trivial breaking changes
4444

@@ -52,7 +52,7 @@ Rather than opening a drawer with `navigation.navigate(‘DrawerOpen’)`, you c
5252

5353
In practice, this change is unlikely to impact your app at all except for one case that is mentioned below.
5454

55-
In 1.x, functions on the `navigation` were not contextual - they would be the same regardless of whether your screen was inside of a drawer, a stack, a tab navigator, etc. In 2.0 the functions that are available to you on the `navigation` prop depend on the navigators that it corresponds to. If your screen is inside of both a stack and a drawer navigator, you will have helpers for both -- `push` and `openDrawer`, for example.
55+
In 1.x, functions on the `navigation` were not contextual - they would be the same regardless of whether your screen was inside of a drawer, a stack, a tab navigator, etc. In 2.0 the functions that are available to you on the `navigation` prop depend on the navigators that it corresponds to. If your screen is inside of both a stack and a drawer navigator, you will have helpers for both -- `push` and `openDrawer`, for example.
5656

5757
Given that we only exposed generic helpers (`navigate`, `goBack`) and helpers specific to the stack in 1.x, this would only impact you if you attempted to use the stack helpers from outside of a stack. For example, if you had a tab navigator with a stack in tab A and just a plain screen in tab B, then tried to `push` a route from the screen in tab B, `push` would not be available. Keep this in mind when you update your app if it follows this type of structure.
5858

@@ -66,11 +66,11 @@ This change was intended to simplify the implementation of actions. We may go ba
6666

6767
If you are using `NavigationActions.push` or other stack-specific actions, you’ll need to import `StackActions` and use `StackActions.push` instead.
6868

69-
## Deprecations
69+
## Deprecations
7070

7171
### XNavigator(...) is now createXNavigator(...)
7272

73-
`StackNavigator`, `TabNavigator` and `DrawerNavigator` are now deprecated in favour of `createStackNavigator`, `createTabNavigator`, and `createDrawerNavigator`, which are functionally identical but more clearly communicate that they are functions and that they return a component. The `XNavigator` style will removed in 3.0.
73+
`StackNavigator`, `TabNavigator` and `DrawerNavigator` are now deprecated in favour of `createStackNavigator`, `createTabNavigator`, and `createDrawerNavigator`, which are functionally identical but more clearly communicate that they are functions and that they return a component. The `XNavigator` style will removed in 3.0.
7474

7575
### Tab navigator split into separate components
7676

website/blog/2019-09-16-react-navigation-4.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: React Navigation 4.0
3-
author: Core Team
4-
authorURL: https://twitter.com/reactnavigation
3+
author: Satyajit Sahoo
4+
authorURL: https://twitter.com/satya164
55
---
66

77
The documentation is now live at https://reactnavigation.org, and v3 lives [here](/docs/en/3.x/getting-started.html).

website/blog/2019-10-17-react-navigation-native.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: React Navigation meets native
3-
author: Core Team
4-
authorURL: https://twitter.com/reactnavigation
3+
author: Michał Osadnik
4+
authorURL: https://twitter.com/mosdnk
55
---
66

77
React Navigation steps firmly into the next level and we’re very excited to announce to you something great happening in React Navigation codebase.

0 commit comments

Comments
 (0)