@lanzorg/commitlint-config-template 0.0.110 → 0.0.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +70 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,76 @@
|
|
|
2
2
|
|
|
3
3
|
<p><img src="https://placehold.co/900x325/888/888" align="center" width="100%"></p>
|
|
4
4
|
|
|
5
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam varius auctor enim, a bibendum nulla. Ut aliquam dictum nunc id viverra. In condimentum id orci a maximus. Ut ornare, quam id lobortis efficitur, elit nisl pulvinar dui, et est.
|
|
6
|
+
|
|
7
|
+
## Supported Platforms
|
|
8
|
+
|
|
9
|
+
<table>
|
|
10
|
+
<tbody><tr>
|
|
11
|
+
<td align="center" width="99999"><samp>AND</samp></td>
|
|
12
|
+
<td align="center" width="99999"><samp>IOS</samp></td>
|
|
13
|
+
<td align="center" width="99999"><samp>LIN</samp></td>
|
|
14
|
+
<td align="center" width="99999"><samp>MAC</samp></td>
|
|
15
|
+
<td align="center" width="99999"><samp>WIN</samp></td>
|
|
16
|
+
<td align="center" width="99999"><samp>WEB</samp></td>
|
|
17
|
+
</tr></tbody>
|
|
18
|
+
<tbody><tr>
|
|
19
|
+
<td align="center" height="64"><p>✅</p></td>
|
|
20
|
+
<td align="center"><p>✅</p></td>
|
|
21
|
+
<td align="center"><p>✅</p></td>
|
|
22
|
+
<td align="center"><p>✅</p></td>
|
|
23
|
+
<td align="center"><p>✅</p></td>
|
|
24
|
+
<td align="center"><p>❌</p></td>
|
|
25
|
+
</tr></tbody>
|
|
26
|
+
</table>
|
|
27
|
+
|
|
28
|
+
# GUIDANCE
|
|
29
|
+
|
|
30
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam varius auctor enim, a bibendum nulla. Ut aliquam dictum nunc id viverra. In condimentum id orci a maximus. Ut ornare, quam id lobortis efficitur, elit nisl pulvinar dui, et est.
|
|
31
|
+
|
|
32
|
+
## Installing Pub Package
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Instantiating the Client
|
|
39
|
+
|
|
40
|
+
```dart
|
|
41
|
+
var client = Client('television_ip_address_here', foolish: true);
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Updating Picture Mode
|
|
45
|
+
|
|
46
|
+
```dart
|
|
47
|
+
await client
|
|
48
|
+
..attach()
|
|
49
|
+
..changePictureMode(PictureMode.cinemaNight)
|
|
50
|
+
..revertPictureMode()
|
|
51
|
+
..changeApplyPicture(ApplyPicture.all)
|
|
52
|
+
..changeLocalDimming(LocalDimming.off)
|
|
53
|
+
..changeBacklight(40)
|
|
54
|
+
..changeBrightness(50)
|
|
55
|
+
..changeContrast(70)
|
|
56
|
+
..changeColorSaturation(50)
|
|
57
|
+
..changeSharpness(5)
|
|
58
|
+
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
59
|
+
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
60
|
+
..changeNoiseReduction(NoiseReduction.off)
|
|
61
|
+
..changeColorTemperature(ColorTemperature.warm1)
|
|
62
|
+
..changeColorGamut(ColorGamut.native)
|
|
63
|
+
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
64
|
+
..toggleViewingAngle()
|
|
65
|
+
..detach();
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
# OVERVIEW
|
|
72
|
+
|
|
73
|
+
<p><img src="https://placehold.co/900x325/888/888" align="center" width="100%"></p>
|
|
74
|
+
|
|
5
75
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sed leo quam. Aliquam feugiat diam mauris, ac efficitur nunc luctus in. Cras auctor efficitur luctus. In vitae laoreet sem, ac eleifend lectus. Nulla eu ipsum nec enim pharetra.
|
|
6
76
|
|
|
7
77
|
|