@lanzorg/commitlint-config-template 0.0.142 → 0.0.144

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 +57 -85
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,94 +1,66 @@
1
1
  <div align="center">
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">
2
+ <p><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/icon.png" align="center" width="128"></p>
3
+ <h1>MSGSTYLE</h1>
8
4
  </div>
9
5
 
10
- ## PREVIEWS
11
-
12
- <p><img src="https://raw.githubusercontent.com/olankens/senchard/HEAD/.assets/asset-01.png" align="" width="100%"></p>
13
-
14
- ## ADD PACKAGE
15
-
16
- ```sh
17
- flutter pub add senchard --git-url https://github.com/olankens/senchard
18
- ```
19
-
20
- ## CREATE CLIENT
21
-
22
- ```dart
23
- var client = Client('television_ip_address_here', foolish: true);
24
- ```
25
-
26
- ## UPDATE PICTURE MODE
27
-
28
- ```dart
29
- await client
30
- ..attach()
31
- ..changePictureMode(PictureMode.cinemaNight)
32
- ..revertPictureMode()
33
- ..changeApplyPicture(ApplyPicture.all)
34
- ..changeLocalDimming(LocalDimming.off)
35
- ..changeBacklight(40)
36
- ..changeBrightness(50)
37
- ..changeContrast(70)
38
- ..changeColorSaturation(50)
39
- ..changeSharpness(5)
40
- ..changeAdaptiveContrast(AdaptiveContrast.off)
41
- ..changeUltraSmoothMotion(UltraSmoothMotion.off)
42
- ..changeNoiseReduction(NoiseReduction.off)
43
- ..changeColorTemperature(ColorTemperature.warm1)
44
- ..changeColorGamut(ColorGamut.native)
45
- ..changeGammaAdjustment(GammaAdjustment.gamma22)
46
- ..toggleViewingAngle()
47
- ..detach();
48
- ```
49
-
50
- <!--
51
-
52
- # SENCHARD
53
-
54
- <p><img src=".assets/asset-01.png" align="center" width="100%"></p>
55
-
56
- 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.
57
-
58
- ## Add Package
6
+ <table><tr><td align="center" width="9999"><div>
7
+ <a href="https://olankens.com">WEBSITE</a> ·
8
+ <a href="https://ko-fi.com/olankens">FUNDING</a>
9
+ </div></td></tr></table>
10
+
11
+ <table><tr><td align="center" width="9999">&nbsp;<div>
12
+ Enforce a strict Git commit message style by validating each message against a defined set of opinionated rules. This script improves consistency and clarity in your commit history by checking structure, length, formatting, and overall content quality.
13
+ </div>&nbsp;</td></tr></table>
14
+
15
+ <table><tr><td align="center" width="99999"><div>
16
+ <picture><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/git.svg" align="center" width="52"></picture>
17
+ <picture><img src="https://raw.githubusercontent.com/olankens/msgstyle/HEAD/.assets/bash.svg" align="center" width="52"></picture>
18
+ </div></td></tr></table>
19
+
20
+ ### FEATURES
21
+
22
+ <div>
23
+ <table>
24
+ <tbody><tr>
25
+ <td width="99999">Length between 20 and 100</td>
26
+ <td>✅</td>
27
+ </tr></tbody>
28
+ <tbody><tr>
29
+ <td width="99999">No scope or type</td>
30
+ <td>✅</td>
31
+ </tr></tbody>
32
+ <tbody><tr>
33
+ <td width="99999">No trailing punctuation</td>
34
+ <td>✅</td>
35
+ </tr></tbody>
36
+ <tbody><tr>
37
+ <td width="99999">No weird characters</td>
38
+ <td>✅</td>
39
+ </tr></tbody>
40
+ <tbody><tr>
41
+ <td width="99999">Start with a capital letter</td>
42
+ <td>✅</td>
43
+ </tr></tbody>
44
+ <tbody><tr>
45
+ <td width="99999">Start with a verb (still very naive)</td>
46
+ <td>✅</td>
47
+ </tr></tbody>
48
+ </table>
49
+ </div>
59
50
 
60
- ```sh
61
- flutter pub add senchard --git-url https://github.com/olankens/senchard
62
- ```
51
+ ### LEARNING
63
52
 
64
- ## Create Client
53
+ #### Installing Globally
65
54
 
66
- ```dart
67
- var client = Client('television_ip_address_here', foolish: true);
55
+ ```shell
56
+ git config --global core.hooksPath "$HOME/.githooks"
57
+ curl "https://raw.githubusercontent.com/olankens/msgstyle/HEAD/scripts/msgstyle.sh" -o "$HOME/.githooks/commit-msg"
58
+ chmod +x "$HOME/.githooks/commit-msg"
68
59
  ```
69
60
 
70
- ## Update Picture Mode
71
-
72
- ```dart
73
- await client
74
- ..attach()
75
- ..changePictureMode(PictureMode.cinemaNight)
76
- ..revertPictureMode()
77
- ..changeApplyPicture(ApplyPicture.all)
78
- ..changeLocalDimming(LocalDimming.off)
79
- ..changeBacklight(40)
80
- ..changeBrightness(50)
81
- ..changeContrast(70)
82
- ..changeColorSaturation(50)
83
- ..changeSharpness(5)
84
- ..changeAdaptiveContrast(AdaptiveContrast.off)
85
- ..changeUltraSmoothMotion(UltraSmoothMotion.off)
86
- ..changeNoiseReduction(NoiseReduction.off)
87
- ..changeColorTemperature(ColorTemperature.warm1)
88
- ..changeColorGamut(ColorGamut.native)
89
- ..changeGammaAdjustment(GammaAdjustment.gamma22)
90
- ..toggleViewingAngle()
91
- ..detach();
92
- ```
61
+ #### Installing Locally
93
62
 
94
- -->
63
+ ```shell
64
+ curl "https://raw.githubusercontent.com/olankens/msgstyle/HEAD/scripts/msgstyle.sh" -o ".git/hooks/commit-msg"
65
+ chmod +x ".git/hooks/commit-msg"
66
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lanzorg/commitlint-config-template",
3
- "version": "0.0.142",
3
+ "version": "0.0.144",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [