Skip to content

Commit eab7004

Browse files
Merge branch 'noctalia-dev:main' into osk2
2 parents 97a6b57 + 565e9fe commit eab7004

15 files changed

Lines changed: 3384 additions & 2055 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ jobs:
257257
else
258258
if echo "$line" | grep -E "^\+" >/dev/null; then
259259
# Only new lines should be auto checked for this type of code quality
260-
if echo "$line" | grep -E "(border(\.width)?|spacing|pointSize|radius|margin(s)?): [0-9]+" >/dev/null; then
260+
if echo "$line" | grep -E "(border(\.width)?|spacing|pointSize|radius|margin(s)?): [1-9]+[0-9]*" >/dev/null; then
261261
print_line "$h_priority" "$line_index" 'Do not use hardcoded values, always prefer to use the `Style` singleton instead' "$line"
262262
issues=$((issues + 1))
263263
fi
@@ -279,7 +279,7 @@ jobs:
279279
print_line "$l_priority" "$line_index" 'When it comes to translations there is no need for fallback values. From: `pluginApi?.tr("example") || "value"`. To: `pluginApi?.tr("example")`' "$line"
280280
issues=$((issues + 1))
281281
fi
282-
if echo "$line" | grep -E "(text|label|description): *(\"|').*(\"|')" >/dev/null; then
282+
if echo "$line" | grep -E "(text|label|description): *(\"|').+(\"|')" >/dev/null; then
283283
print_line "$h_priority" "$line_index" 'Use translations instead of hardcoded text. Instead of: `"Example Label"`. To: `pluginApi?.tr("panel.example-label")`' "$line"
284284
issues=$((issues + 1))
285285
fi

registry.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@
12521252
{
12531253
"id": "screen-toolkit",
12541254
"name": "Screen Toolkit",
1255-
"version": "1.0.7",
1255+
"version": "1.1.1",
12561256
"official": false,
12571257
"author": "ycf-anon",
12581258
"description": "A set of screen tools: color picker, annotate, record, pin, OCR, QR scanner, palette, measure, and webcam mirror.",
@@ -1265,7 +1265,7 @@
12651265
"Utility",
12661266
"System"
12671267
],
1268-
"lastUpdated": "2026-04-04T16:57:23+07:00"
1268+
"lastUpdated": "2026-04-14T00:53:21+01:00"
12691269
},
12701270
{
12711271
"id": "screenshot",

0 commit comments

Comments
 (0)