Skip to content

Commit 70cb5a2

Browse files
committed
Update docs to 4.0.0
1 parent ce59356 commit 70cb5a2

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const config = {
3737
lastVersion: 'current',
3838
versions: {
3939
current: {
40-
label: '3.2.3',
40+
label: '4.0.0',
4141
},
4242
},
4343
sidebarPath: require.resolve('./sidebars.js'),

docs/versioned_docs/version-3.2.3/get-started/6-verify-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $ ./gradlew app:screenshotTest
2323

2424
## Test failures
2525

26-
By default, Testify will use a strict binary comparison. This means that any difference in the binary value used for any of the pixels will be considered a failure. You may wish to adjust the matching tolerance through the use of the `exactness` tolerance. A value of less than `1.0f` will result in a more leniant comparison which will exclude visually similar pixels. For more information on Testify's tolerance implementation, please read the blog post [_Accounting for platform differences_](../../blog/platform-differences).
26+
By default, Testify will use a strict binary comparison. This means that any difference in the binary value used for any of the pixels will be considered a failure. You may wish to adjust the matching tolerance through the use of the `exactness` tolerance. A value of less than `1.0f` will result in a more leniant comparison which will exclude visually similar pixels. For more information on Testify's tolerance implementation, please read the blog post [_Accounting for platform differences_](../../../blog/platform-differences).
2727

2828
### Tolerance
2929

docs/versioned_docs/version-3.2.3/recipes/13-software-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Please read more about [Hardware acceleration](https://developer.android.com/gui
1010
:::caution
1111
**Software rendering is not recommended.**
1212

13-
The software rendering pipeline on Android does not produce the same results as the default hardware rendering and can omit shadows, elevation and other advanced features. If you're having difficulty with flaky or inconsistent rendering, it is recommended that you consider the options presented in [Accounting for platform differences](../../blog/platform-differences).
13+
The software rendering pipeline on Android does not produce the same results as the default hardware rendering and can omit shadows, elevation and other advanced features. If you're having difficulty with flaky or inconsistent rendering, it is recommended that you consider the options presented in [Accounting for platform differences](../../../blog/platform-differences).
1414
:::
1515

1616
<Tabs>

docs/versioned_docs/version-3.2.3/recipes/17-custom-compare.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ typealias CompareMethod = (baselineBitmap: Bitmap, currentBitmap: Bitmap) -> Boo
2222

2323
Before writing your own comparison method, consider that Testify provides multiple built-in mechanisms to customize the comparison of bitmaps. You can easily [_increase the matching tolerance_](tolerance) or [_exclude a region from the comparison_](exclude-regions).
2424

25-
Please also see [_Accounting for platform differences_](../../blog/platform-differences) for more insight into handling unintended differences in your rendering.
25+
Please also see [_Accounting for platform differences_](../../../blog/platform-differences) for more insight into handling unintended differences in your rendering.
2626

2727
:::
2828

docs/versioned_docs/version-3.2.3/recipes/4-tolerance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ By providing a value less than 1 to `exactness`, a test will be more tolerant to
1111

1212
:::tip
1313

14-
Please also see [_Accounting for platform differences_](../../blog/platform-differences) for more insight into handling unintended differences in your rendering.
14+
Please also see [_Accounting for platform differences_](../../../blog/platform-differences) for more insight into handling unintended differences in your rendering.
1515

1616
:::
1717

0 commit comments

Comments
 (0)