Skip to content

Commit b899b2e

Browse files
authored
April Release
This is an automated PR to promote changes from `rc` to `master`. Please review and test before merging. See [TESTING.md](./TESTING.md) for complete testing instructions. According to our release policy, this PR is expected to be merged on: **1st or 3rd Friday of the month** Testers are encouraged to test the changes before merging. Please note that this schedule may be adjusted based on the needs of the project. --- * chore Update CHANGELOG for v26.4.5 release (3d9d1d8) by Khing * chore chore: Release - dev → rc (#1718) (a42707c) by Khing * chore Merge branch 'rc' into dev (44976b1) by Khing * fix: Deprecate dontkillsteam (#1710) (7295838) by Shiba * chore chore: Release - dev → rc (#1702) (05bfe84) by Khing * fix issues on fresh install (16e2897) by kRHYME7 * chore Merge branch 'master' into rc (645f15c) by Khing * chore try to fix errors on fresh install (5aff210) by kRHYME7 * chore cleanup (92ed1f4) by kRHYME7 * chore See Changelog (8d34ef9) by kRHYME7 * chore Merge branch 'rc' into dev (0b3559d) by Khing * chore Merge branch 'master' into rc (663789f) by Khing * chore Merge branch 'rc' into dev (06f6f11) by Khing * chore Merge branch 'master' into rc (7fd0274) by Khing * fix: Fix hyprquery package install hangs restore (#1706) (265937d) by Khing * fix: Fix hyprquery package install hangs restore (364bc93) by PureFallen * chore pr (1a06650) by Khing * feat: Update `rofi.websearch` and `websearch.lst` to concatenate query url and query string dynamically (#1703) (e42e77b) by Khing * chore refactor: use `printf` instead of `echo` in rofi.websearch.sh (a18f9c7) by l-bloodstone * chore update: remove duplicate entry from websearch.lst (1b1a5d2) by l-bloodstone * chore refactor: rofi.websearch.sh to use url encoded query string (1965253) by l-bloodstone * chore update!: rofi.websearch.sh in order to make query URL dynamic (c2ce11d) by l-bloodstone * chore Merge branch 'HyDE-Project:dev' into dev (1047f2f) by l-bloodstone * chore update!: websearch.lst for new query url syntax (ecbf690) by l-bloodstone * chore Support heif/heic and other image thumbnails in dolphin. (#1470) (29dfac6) by Khing * chore Merge branch 'dev' into patch-1 (c06308f) by Khing * feat: waybar app launcher module (#1557) (8927f07) by Khing * chore Merge branch 'dev' into waybar-app-launcher (705fb43) by Khing * chore Windowrules blender (#1698) (7b3a8eb) by Khing * chore Merge branch 'dev' into windowrules_blender (07db31c) by Khing * chore Merge branch 'rc' into dev (641e88a) by Khing * chore chores: add precommit (#1694) (2d1f562) by Khing * chore Merge branch 'dev' into precommit (0851430) by Khing * chore Added experimental lua support in our scripts. (b0bcf58) by kRHYME7 * chore Merge branch 'dev' into windowrules_blender (1a199fc) by Khing * chore Merge branch 'dev' into precommit (7c1d73f) by Khing * chore Merge upstream/dev into windowrules_blender (835517a) by Kminek42 * feat: add floating rules for Blender Render window (01d9a05) by Kminek42 * feat: add opacity rule for blender to disable transparency (d4b181a) by Kminek42 * chore Update CONTRIBUTING.md (8c4ee77) by Rubin Bhandari * chore Update CONTRIBUTING.md (1437b21) by Rubin Bhandari * chore Merge branch 'dev' into precommit (d15dc20) by Rubin Bhandari * chore chores: add precommit (bd0c6b2) by Rubin Bhandari * chore Merge branch 'dev' into waybar-app-launcher (5955c7f) by Khing * chore Merge branch 'dev' into patch-1 (f17cd4c) by Khing * fix: dont use `shift` in default case (7032544) by Ilya Bogdanov * feat: rename waybar module `custom/applauncher` -> `custom/app-launcher` (3208d23) by Ilya Bogdanov * fix: add quotes as suggested by @coderabbitai (69e069e) by Ilya Bogdanov * feat: new `applauncher` module for waybar (58322e7) by Ilya Bogdanov * fix: change border to one prop (4a3b428) by Ilya Bogdanov * chore Merge branch 'dev' into patch-1 (51ef10b) by Khing * chore Merge branch 'dev' into patch-1 (039d3ed) by Khing * chore Merge branch 'dev' into patch-1 (1eb5776) by Khing * chore Merge branch 'dev' into patch-1 (13b33fb) by Khing * chore move kimageformats to pkg_extra (3bb632e) by JunaidQrysh * chore Merge branch 'dev' into patch-1 (efc8af6) by Khing * chore Merge branch 'dev' into patch-1 (0819935) by Khing --- Please review the changes carefully before merging.
2 parents 6993715 + 3d9d1d8 commit b899b2e

40 files changed

Lines changed: 1508 additions & 949 deletions

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,8 @@ jobs:
335335
per_page: 2
336336
});
337337
338-
const previousTag = allReleases.data.length > 1 ?
339-
allReleases.data[1].tag_name :
338+
const previousTag = allReleases.data.length > 1 ?
339+
allReleases.data[1].tag_name :
340340
'HEAD~20'; // Fallback to last 20 commits if no previous release
341341
342342
// Get commits between the two tags
@@ -355,15 +355,15 @@ jobs:
355355
const features = commitList.split('\n')
356356
.filter(line => line.includes('feat:') || line.includes('feat('))
357357
.join('\n');
358-
358+
359359
const fixes = commitList.split('\n')
360360
.filter(line => line.includes('fix:') || line.includes('fix('))
361361
.join('\n');
362-
362+
363363
const docs = commitList.split('\n')
364364
.filter(line => line.includes('docs:') || line.includes('docs('))
365365
.join('\n');
366-
366+
367367
const other = commitList.split('\n')
368368
.filter(line => !line.includes('feat:') && !line.includes('fix:') && !line.includes('docs:') &&
369369
!line.includes('feat(') && !line.includes('fix(') && !line.includes('docs('))

.markdownlint-strict.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
default: true
2+
3+
# Keep repository-specific HTML conventions compatible.
4+
MD033: false
5+
MD041: false
6+
MD045: false
7+
MD013: false
8+
MD025: false

.markdownlint.yaml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
default: true
2+
3+
# This repository uses HTML in Markdown for badges, image grids, and centered blocks.
4+
MD033: false
5+
6+
# Banner-style READMEs start with HTML wrappers instead of an H1.
7+
MD041: false
8+
9+
# Long lines are common in image links and localized docs.
10+
MD013: false
11+
12+
# HTML <img> tags are used without markdown alt text fields.
13+
MD045: false
14+
15+
# Intentional blank lines inside complex blockquote sections.
16+
MD028: false
17+
18+
# Intentional multiple blank lines in some translated docs.
19+
MD012: false
20+
21+
# Existing link text like "here" is currently accepted.
22+
MD059: false
23+
24+
# Existing docs contain repeated translated section headings.
25+
MD024: false
26+
27+
# Existing heading hierarchies are not strictly incremental.
28+
MD001: false
29+
30+
# Existing docs mix setext and atx headings.
31+
MD003: false
32+
33+
# Existing docs use emphasis as pseudo-headings.
34+
MD036: false
35+
36+
# Existing docs include bare links.
37+
MD034: false
38+
39+
# Existing docs often omit blank lines around fences/headings/lists.
40+
MD031: false
41+
MD022: false
42+
MD032: false
43+
44+
# Existing docs use non-sequential ordered list numbers.
45+
MD029: false
46+
47+
# Existing docs include heading punctuation.
48+
MD026: false
49+
50+
# Existing docs have many table style/alignment inconsistencies.
51+
MD060: false
52+
53+
# Existing docs include unlabeled fences.
54+
MD040: false
55+
56+
# Existing docs include multiple H1 headings and nonstandard table shapes.
57+
MD025: false
58+
MD056: false
59+
MD058: false
60+
61+
# Existing docs may include hard tabs in markdown tables/schemas.
62+
MD010: false

.pre-commit-config.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v5.0.0
4+
hooks:
5+
- id: check-added-large-files
6+
- id: check-merge-conflict
7+
- id: check-symlinks
8+
- id: check-json
9+
- id: check-yaml
10+
- id: check-toml
11+
- id: check-xml
12+
- id: end-of-file-fixer
13+
- id: trailing-whitespace
14+
15+
- repo: https://github.com/igorshubovych/markdownlint-cli
16+
rev: v0.48.0
17+
hooks:
18+
- id: markdownlint
19+
- id: markdownlint
20+
name: markdownlint-strict
21+
args: [--config, .markdownlint-strict.yaml]
22+
stages: [manual]

0 commit comments

Comments
 (0)