Skip to content

Commit 177da1a

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/dev' into prerelease
# Conflicts: # Flow.Launcher.Core/Updater.cs
2 parents dd29b4a + 3e1f962 commit 177da1a

File tree

635 files changed

+36321
-14073
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

635 files changed

+36321
-14073
lines changed

.cm/gitstream.cm

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,19 @@ manifest:
55
version: 1.0
66

77

8+
triggers:
9+
exclude:
10+
branch:
11+
- l10n_dev
12+
- dev
13+
- r/([Dd]ependabot|[Rr]enovate)/
14+
15+
816
automations:
917
# Add a label that indicates how many minutes it will take to review the PR.
1018
estimated_time_to_review:
19+
on:
20+
- commit
1121
if:
1222
- true
1323
run:
@@ -23,21 +33,12 @@ automations:
2333
- action: explain-code-experts@v1
2434
args:
2535
gt: 10
26-
# Post a comment that indicates what percentage of the PR is new code.
27-
percent_new_code:
28-
if:
29-
- true
30-
run:
31-
- action: add-comment@v1
32-
args:
33-
comment: |
34-
This PR is {{ changes.ratio }}% new code.
35-
# Post a comment that request changes for a PR that contains a TODO statement.
36+
# Post a comment notifying that the PR contains a TODO statement.
3637
review_todo_comments:
3738
if:
38-
- {{ source.diff.files | matchDiffLines(regex=r/^[+].*(TODO)|(todo)/) | some }}
39+
- {{ source.diff.files | matchDiffLines(regex=r/^[+].*\b(TODO|todo)\b/) | some }}
3940
run:
40-
- action: request-changes@v1
41+
- action: add-comment@v1
4142
args:
4243
comment: |
4344
This PR contains a TODO statement. Please check to see if they should be removed.
@@ -76,4 +77,4 @@ changes:
7677

7778
has:
7879
screenshot_link: {{ pr.description | includes(regex=r/!\[.*\]\(.*(jpg|svg|png|gif|psd).*\)/) }}
79-
image_uploaded: {{ pr.description | includes(regex=r/<img.*src.*(jpg|svg|png|gif|psd).*>/) }}
80+
image_uploaded: {{ pr.description | includes(regex=r/(<img.*src.*(jpg|svg|png|gif|psd).*>)|!\[image\]\(.*github\.com.*\)/) }}

.github/ISSUE_TEMPLATE/bug-report.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ body:
1616
I have checked that this issue has not already been reported.
1717
- label: >
1818
I am using the latest version of Flow Launcher.
19+
- label: >
20+
I am using the prerelease version of Flow Launcher.
1921
2022
- type: textarea
2123
attributes:

.github/actions/spelling/expect.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file should contain names of products, companies, or individuals that aren't in a standard dictionary (e.g., GitHub, Keptn, VSCode).
2+
13
crowdin
24
DWM
35
workflows
@@ -34,7 +36,6 @@ mscorlib
3436
pythonw
3537
dotnet
3638
winget
37-
jjw24
3839
wolframalpha
3940
gmail
4041
duckduckgo
@@ -49,15 +50,13 @@ srchadmin
4950
EWX
5051
dlgtext
5152
CMD
52-
appref-ms
5353
appref
5454
TSource
5555
runas
5656
dpi
5757
popup
5858
ptr
5959
pluginindicator
60-
TobiasSekan
6160
img
6261
resx
6362
bak
@@ -68,9 +67,6 @@ dlg
6867
ddd
6968
dddd
7069
clearlogfolder
71-
ACCENT_ENABLE_TRANSPARENTGRADIENT
72-
ACCENT_ENABLE_BLURBEHIND
73-
WCA_ACCENT_POLICY
7470
HGlobal
7571
dopusrt
7672
firefox
@@ -91,22 +87,29 @@ keyevent
9187
KListener
9288
requery
9389
vkcode
94-
čeština
9590
Polski
9691
Srpski
97-
Português
98-
Português (Brasil)
9992
Italiano
100-
Slovenský
10193
quicklook
102-
Tiếng Việt
10394
Droplex
10495
Preinstalled
10596
errormetadatafile
10697
noresult
10798
pluginsmanager
10899
alreadyexists
109-
JsonRPC
110-
JsonRPCV2
111100
Softpedia
112101
img
102+
Reloadable
103+
metadatas
104+
WMP
105+
VSTHRD
106+
CJK
107+
XiaoHe
108+
ZiRanMa
109+
WeiRuan
110+
ZhiNengABC
111+
ZiGuangPinYin
112+
PinYinJiaJia
113+
XingKongJianDao
114+
DaNiu
115+
XiaoLang

.github/actions/spelling/patterns.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# See https://github.com/check-spelling/check-spelling/wiki/Configuration-Examples:-patterns
2+
# This file should contain strings that contain a mix of letters and numbers, or specific symbols
3+
24

35
# Questionably acceptable forms of `in to`
46
# Personally, I prefer `log into`, but people object
@@ -121,3 +123,14 @@
121123

122124
# version suffix <word>v#
123125
(?:(?<=[A-Z]{2})V|(?<=[a-z]{2}|[A-Z]{2})v)\d+(?:\b|(?=[a-zA-Z_]))
126+
127+
\bjjw24\b
128+
\bappref-ms\b
129+
\bTobiasSekan\b
130+
\bJsonRPC\b
131+
\bJsonRPCV2\b
132+
\bTiếng Việt\b
133+
\bPortuguês (Brasil)\b
134+
\bčeština\b
135+
\bPortuguês\b
136+
\bIoc\b

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ updates:
88
- package-ecosystem: "nuget" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
11-
interval: "weekly"
11+
interval: "daily"
12+
open-pull-requests-limit: 3
1213
ignore:
1314
- dependency-name: "squirrel-windows"
1415
reviewers:

0 commit comments

Comments
 (0)