@lanzorg/commitlint-config-template 0.0.138 → 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 +79 -37
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,54 +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
- <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>
12
+ <p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="center" width="100%"></p>
13
13
 
14
- [//]: # (## FEATURES)
14
+ ## LEARNING
15
15
 
16
- ## Main Features
16
+ ### ADD PACKAGE
17
17
 
18
- - ✅&nbsp;&nbsp;Vestibulum in arcu porttitor ante
19
- - ✅&nbsp;&nbsp;Sed iaculis dolor in egestas pulvinar
20
- - ✅&nbsp;&nbsp;Mauris vitae odio sed nisl maximus
21
- - ✅&nbsp;&nbsp;Sed vitae diam eu lorem consequat
22
- - 🚧&nbsp;&nbsp;Nulla eu nisl non leo efficitur eleifend
23
- - 🚧&nbsp;&nbsp;Mauris eleifend nunc non ultricies
24
- - ❌&nbsp;&nbsp;Nunc ut velit quis purus vestibulum
18
+ ```sh
19
+ flutter pub add senchard --git-url https://github.com/olankens/senchard
20
+ ```
25
21
 
26
- [//]: # (## LEARNING)
22
+ ### CREATE CLIENT
27
23
 
28
- ## With Default Runtime
24
+ ```dart
25
+ var client = Client('television_ip_address_here', foolish: true);
26
+ ```
29
27
 
30
- ```sh
31
- curl -fsSL https://raw.githubusercontent.com/olankens/wowastro/HEAD/scripts/wowastro.sh | bash -s -- \
32
- --title 'deleteme' \
33
- --description '...' \
34
- --private \
35
- --tailwind
28
+ ### UPDATE PICTURE MODE
29
+
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();
36
50
  ```
37
51
 
38
- ## 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
39
61
 
40
62
  ```sh
41
- curl -fsSL https://raw.githubusercontent.com/olankens/wowastro/HEAD/scripts/wowastro.sh | bash -s -- \
42
- --title 'deleteme' \
43
- --description '...' \
44
- --runtime '/Applications/Chromium.app/Contents/MacOS/Chromium' \
45
- --datadir '${env:HOME}/Library/Application Support/Chromium Debug' \
46
- --gh-pages \
47
- --tailwind
63
+ flutter pub add senchard --git-url https://github.com/olankens/senchard
48
64
  ```
49
65
 
50
- ## Delete GitHub Project
66
+ ## Create Client
51
67
 
52
- ```sh
53
- gh repo delete olankens/deleteme --yes
54
- ```
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.138",
3
+ "version": "0.0.140",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [