@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.
Files changed (2) hide show
  1. package/README.md +84 -38
  2. 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/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="" 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
- [//]: # (## PREVIEWS)
10
+ ## PREVIEWS
11
11
 
12
- ## Project Previews
12
+ <p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="" 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
+ Lorem ipsum dolor sit amet adipiscing elit.
19
19
 
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
20
+ ```sh
21
+ flutter pub add senchard --git-url https://github.com/olankens/senchard
22
+ ```
27
23
 
28
- [//]: # (## LEARNING)
24
+ ### CREATE CLIENT
29
25
 
30
- ## With Default Runtime
26
+ Lorem ipsum dolor sit amet adipiscing elit.
31
27
 
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
28
+ ```dart
29
+ var client = Client('television_ip_address_here', foolish: true);
38
30
  ```
39
31
 
40
- ## With Custom Runtime
32
+ ### UPDATE PICTURE MODE
41
33
 
42
- ```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
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
- ## Delete GitHub Project
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
- gh repo delete olankens/deleteme --yes
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
+ -->
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.141",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [