@lanzorg/commitlint-config-template 0.0.139 → 0.0.141
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 +84 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,56 +1,102 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<p><img src="https://raw.githubusercontent.com/olankens/
|
|
3
|
-
<h1>
|
|
4
|
-
<p>
|
|
5
|
-
<img src="https://raw.githubusercontent.com/olankens/
|
|
6
|
-
<img src="https://raw.githubusercontent.com/olankens/
|
|
7
|
-
<img src="https://raw.githubusercontent.com/olankens/
|
|
2
|
+
<p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/icon.png" align="" width="144"></p>
|
|
3
|
+
<h1>SENCHARD</h1>
|
|
4
|
+
<p>Dart cross-platform library for Hisense U7QF TV automation, edit your picture profiles for SDR, HDR10, HDR+, and DOVI using a tailored MQTT client and a dummy certificate to bypass broker authentication.</p>
|
|
5
|
+
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/dart.svg" width="52">
|
|
6
|
+
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/androidstudio.svg" width="52">
|
|
7
|
+
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/flutter.svg" width="52">
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
## PREVIEWS
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
<p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="" width="100%"></p>
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
## LEARNING
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
### ADD PACKAGE
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Lorem ipsum dolor sit amet adipiscing elit.
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- ✅ Sed vitae diam eu lorem consequat
|
|
24
|
-
- 🚧 Nulla eu nisl non leo efficitur eleifend
|
|
25
|
-
- 🚧 Mauris eleifend nunc non ultricies
|
|
26
|
-
- ❌ Nunc ut velit quis purus vestibulum
|
|
20
|
+
```sh
|
|
21
|
+
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
22
|
+
```
|
|
27
23
|
|
|
28
|
-
|
|
24
|
+
### CREATE CLIENT
|
|
29
25
|
|
|
30
|
-
|
|
26
|
+
Lorem ipsum dolor sit amet adipiscing elit.
|
|
31
27
|
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
--title 'deleteme' \
|
|
35
|
-
--description '...' \
|
|
36
|
-
--private \
|
|
37
|
-
--tailwind
|
|
28
|
+
```dart
|
|
29
|
+
var client = Client('television_ip_address_here', foolish: true);
|
|
38
30
|
```
|
|
39
31
|
|
|
40
|
-
|
|
32
|
+
### UPDATE PICTURE MODE
|
|
41
33
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
34
|
+
Lorem ipsum dolor sit amet adipiscing elit.
|
|
35
|
+
|
|
36
|
+
```dart
|
|
37
|
+
await client
|
|
38
|
+
..attach()
|
|
39
|
+
..changePictureMode(PictureMode.cinemaNight)
|
|
40
|
+
..revertPictureMode()
|
|
41
|
+
..changeApplyPicture(ApplyPicture.all)
|
|
42
|
+
..changeLocalDimming(LocalDimming.off)
|
|
43
|
+
..changeBacklight(40)
|
|
44
|
+
..changeBrightness(50)
|
|
45
|
+
..changeContrast(70)
|
|
46
|
+
..changeColorSaturation(50)
|
|
47
|
+
..changeSharpness(5)
|
|
48
|
+
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
49
|
+
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
50
|
+
..changeNoiseReduction(NoiseReduction.off)
|
|
51
|
+
..changeColorTemperature(ColorTemperature.warm1)
|
|
52
|
+
..changeColorGamut(ColorGamut.native)
|
|
53
|
+
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
54
|
+
..toggleViewingAngle()
|
|
55
|
+
..detach();
|
|
50
56
|
```
|
|
51
57
|
|
|
52
|
-
|
|
58
|
+
<!--
|
|
59
|
+
|
|
60
|
+
# SENCHARD
|
|
61
|
+
|
|
62
|
+
<p><img src=".assets/asset-01.png" align="center" width="100%"></p>
|
|
63
|
+
|
|
64
|
+
Dart cross-platform library for Hisense U7QF TV automation, edit your picture profiles for SDR, HDR10, HDR+, and DOVI using a tailored MQTT client and a dummy certificate to bypass broker authentication.
|
|
65
|
+
|
|
66
|
+
## Add Package
|
|
53
67
|
|
|
54
68
|
```sh
|
|
55
|
-
|
|
56
|
-
```
|
|
69
|
+
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Create Client
|
|
73
|
+
|
|
74
|
+
```dart
|
|
75
|
+
var client = Client('television_ip_address_here', foolish: true);
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## Update Picture Mode
|
|
79
|
+
|
|
80
|
+
```dart
|
|
81
|
+
await client
|
|
82
|
+
..attach()
|
|
83
|
+
..changePictureMode(PictureMode.cinemaNight)
|
|
84
|
+
..revertPictureMode()
|
|
85
|
+
..changeApplyPicture(ApplyPicture.all)
|
|
86
|
+
..changeLocalDimming(LocalDimming.off)
|
|
87
|
+
..changeBacklight(40)
|
|
88
|
+
..changeBrightness(50)
|
|
89
|
+
..changeContrast(70)
|
|
90
|
+
..changeColorSaturation(50)
|
|
91
|
+
..changeSharpness(5)
|
|
92
|
+
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
93
|
+
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
94
|
+
..changeNoiseReduction(NoiseReduction.off)
|
|
95
|
+
..changeColorTemperature(ColorTemperature.warm1)
|
|
96
|
+
..changeColorGamut(ColorGamut.native)
|
|
97
|
+
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
98
|
+
..toggleViewingAngle()
|
|
99
|
+
..detach();
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
-->
|