Skip to content

Commit 99c07e9

Browse files
committed
Merge branch 'release/v2026.01'
2 parents af96284 + dd7941e commit 99c07e9

File tree

85 files changed

+945
-613
lines changed

Some content is hidden

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

85 files changed

+945
-613
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2025 sourcegit
3+
Copyright (c) 2026 sourcegit
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -171,19 +171,24 @@ This app supports open repository in external tools listed in the table below.
171171
| Visual Studio Code - Insiders | YES | YES | YES |
172172
| VSCodium | YES | YES | YES |
173173
| Cursor | YES | YES | YES |
174-
| Fleet | YES | YES | YES |
175174
| Sublime Text | YES | YES | YES |
176175
| Zed | YES | YES | YES |
177176
| Visual Studio | YES | NO | NO |
178177

179178
> [!NOTE]
180-
> This app will try to find those tools based on some pre-defined or expected locations automatically. If you are using one portable version of these tools, it will not be detected by this app.
181-
> To solve this problem you can add a file named `external_editors.json` in app data storage directory and provide the path directly. For example:
179+
> This app will try to find those tools based on some pre-defined or expected locations automatically. If you are using one portable version of these tools, it will not be detected by this app.
180+
> To solve this problem you can add a file named `external_editors.json` in app data storage directory and provide the path directly.
181+
> User can also exclude some editors by using `external_editors.json`.
182+
183+
The format of `external_editors.json`:
182184
```json
183185
{
184186
"tools": {
185187
"Visual Studio Code": "D:\\VSCode\\Code.exe"
186-
}
188+
},
189+
"excludes": [
190+
"Visual Studio Community 2019"
191+
]
187192
}
188193
```
189194

@@ -200,7 +205,8 @@ You can define your own conventional commit types (per-repository) by following
200205
{
201206
"Name": "New Feature",
202207
"Type": "Feature",
203-
"Description": "Adding a new feature"
208+
"Description": "Adding a new feature",
209+
"PrefillShortDesc": "this is a test"
204210
},
205211
{
206212
"Name": "Bug Fixes",

0 commit comments

Comments
 (0)