@lanzorg/commitlint-config-template 0.0.139 → 0.0.140
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 +78 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,56 +1,96 @@
|
|
|
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="center" width="156"></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="64">
|
|
6
|
+
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/androidstudio.svg" width="64">
|
|
7
|
+
<img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/flutter.svg" width="64">
|
|
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="center" width="100%"></p>
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
## LEARNING
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
### ADD PACKAGE
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
```sh
|
|
19
|
+
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
20
|
+
```
|
|
19
21
|
|
|
20
|
-
|
|
21
|
-
- ✅ Sed iaculis dolor in egestas pulvinar
|
|
22
|
-
- ✅ Mauris vitae odio sed nisl maximus
|
|
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
|
|
22
|
+
### CREATE CLIENT
|
|
27
23
|
|
|
28
|
-
|
|
24
|
+
```dart
|
|
25
|
+
var client = Client('television_ip_address_here', foolish: true);
|
|
26
|
+
```
|
|
29
27
|
|
|
30
|
-
|
|
28
|
+
### UPDATE PICTURE MODE
|
|
31
29
|
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
```dart
|
|
31
|
+
await client
|
|
32
|
+
..attach()
|
|
33
|
+
..changePictureMode(PictureMode.cinemaNight)
|
|
34
|
+
..revertPictureMode()
|
|
35
|
+
..changeApplyPicture(ApplyPicture.all)
|
|
36
|
+
..changeLocalDimming(LocalDimming.off)
|
|
37
|
+
..changeBacklight(40)
|
|
38
|
+
..changeBrightness(50)
|
|
39
|
+
..changeContrast(70)
|
|
40
|
+
..changeColorSaturation(50)
|
|
41
|
+
..changeSharpness(5)
|
|
42
|
+
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
43
|
+
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
44
|
+
..changeNoiseReduction(NoiseReduction.off)
|
|
45
|
+
..changeColorTemperature(ColorTemperature.warm1)
|
|
46
|
+
..changeColorGamut(ColorGamut.native)
|
|
47
|
+
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
48
|
+
..toggleViewingAngle()
|
|
49
|
+
..detach();
|
|
38
50
|
```
|
|
39
51
|
|
|
40
|
-
|
|
52
|
+
<!--
|
|
53
|
+
|
|
54
|
+
# SENCHARD
|
|
55
|
+
|
|
56
|
+
<p><img src=".assets/asset-01.png" align="center" width="100%"></p>
|
|
57
|
+
|
|
58
|
+
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.
|
|
59
|
+
|
|
60
|
+
## Add Package
|
|
41
61
|
|
|
42
62
|
```sh
|
|
43
|
-
|
|
44
|
-
--title 'deleteme' \
|
|
45
|
-
--description '...' \
|
|
46
|
-
--runtime '/Applications/Chromium.app/Contents/MacOS/Chromium' \
|
|
47
|
-
--datadir '${env:HOME}/Library/Application Support/Chromium Debug' \
|
|
48
|
-
--gh-pages \
|
|
49
|
-
--tailwind
|
|
63
|
+
flutter pub add senchard --git-url https://github.com/olankens/senchard
|
|
50
64
|
```
|
|
51
65
|
|
|
52
|
-
##
|
|
66
|
+
## Create Client
|
|
53
67
|
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
```
|
|
68
|
+
```dart
|
|
69
|
+
var client = Client('television_ip_address_here', foolish: true);
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
## Update Picture Mode
|
|
73
|
+
|
|
74
|
+
```dart
|
|
75
|
+
await client
|
|
76
|
+
..attach()
|
|
77
|
+
..changePictureMode(PictureMode.cinemaNight)
|
|
78
|
+
..revertPictureMode()
|
|
79
|
+
..changeApplyPicture(ApplyPicture.all)
|
|
80
|
+
..changeLocalDimming(LocalDimming.off)
|
|
81
|
+
..changeBacklight(40)
|
|
82
|
+
..changeBrightness(50)
|
|
83
|
+
..changeContrast(70)
|
|
84
|
+
..changeColorSaturation(50)
|
|
85
|
+
..changeSharpness(5)
|
|
86
|
+
..changeAdaptiveContrast(AdaptiveContrast.off)
|
|
87
|
+
..changeUltraSmoothMotion(UltraSmoothMotion.off)
|
|
88
|
+
..changeNoiseReduction(NoiseReduction.off)
|
|
89
|
+
..changeColorTemperature(ColorTemperature.warm1)
|
|
90
|
+
..changeColorGamut(ColorGamut.native)
|
|
91
|
+
..changeGammaAdjustment(GammaAdjustment.gamma22)
|
|
92
|
+
..toggleViewingAngle()
|
|
93
|
+
..detach();
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
-->
|