@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.
Files changed (2) hide show
  1. package/README.md +78 -38
  2. 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/readbase/HEAD/source/wowastro/.assets/icon.png" align="" width="112"></p>
3
- <h1>WOWASTRO</h1>
4
- <p>Bootstrap any Astro project with a formatted README, advanced linting using ESLint and Prettier, fully configured Tailwind, and proper debugging configurations for IntelliJ IDEA and Visual Studio Code.</p>
5
- <img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/logo-github.svg" width="56">
6
- <img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/logo-bash.svg" width="56">
7
- <img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/logo-typescript.svg" width="56">
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
- [//]: # (## PREVIEWS)
10
+ ## PREVIEWS
11
11
 
12
- ## Project Previews
12
+ <p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="center" width="100%"></p>
13
13
 
14
- <p><img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/asset-01.png" align="center" width="49.21875%"><picture><img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/blank.gif" align="center" width="1.5625%"/></picture><img src="https://raw.githubusercontent.com/olankens/readbase/HEAD/source/wowastro/.assets/asset-02.png" align="center" width="49.21875%"></p>
14
+ ## LEARNING
15
15
 
16
- [//]: # (## FEATURES)
16
+ ### ADD PACKAGE
17
17
 
18
- ## Main Features
18
+ ```sh
19
+ flutter pub add senchard --git-url https://github.com/olankens/senchard
20
+ ```
19
21
 
20
- - ✅&nbsp;&nbsp;Vestibulum in arcu porttitor ante
21
- - ✅&nbsp;&nbsp;Sed iaculis dolor in egestas pulvinar
22
- - ✅&nbsp;&nbsp;Mauris vitae odio sed nisl maximus
23
- - ✅&nbsp;&nbsp;Sed vitae diam eu lorem consequat
24
- - 🚧&nbsp;&nbsp;Nulla eu nisl non leo efficitur eleifend
25
- - 🚧&nbsp;&nbsp;Mauris eleifend nunc non ultricies
26
- - ❌&nbsp;&nbsp;Nunc ut velit quis purus vestibulum
22
+ ### CREATE CLIENT
27
23
 
28
- [//]: # (## LEARNING)
24
+ ```dart
25
+ var client = Client('television_ip_address_here', foolish: true);
26
+ ```
29
27
 
30
- ## With Default Runtime
28
+ ### UPDATE PICTURE MODE
31
29
 
32
- ```sh
33
- curl -fsSL https://raw.githubusercontent.com/olankens/wowastro/HEAD/scripts/wowastro.sh | bash -s -- \
34
- --title 'deleteme' \
35
- --description '...' \
36
- --private \
37
- --tailwind
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
- ## With Custom Runtime
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
- curl -fsSL https://raw.githubusercontent.com/olankens/wowastro/HEAD/scripts/wowastro.sh | bash -s -- \
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
- ## Delete GitHub Project
66
+ ## Create Client
53
67
 
54
- ```sh
55
- gh repo delete olankens/deleteme --yes
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
+ -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lanzorg/commitlint-config-template",
3
- "version": "0.0.139",
3
+ "version": "0.0.140",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [