Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit cd924e2

Browse files
Merge branch 'release/v2025.25'
2 parents 9439df8 + 9e9af6c commit cd924e2

File tree

345 files changed

+4988
-3759
lines changed

Some content is hidden

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

345 files changed

+4988
-3759
lines changed

‎.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ indent_style = space
1212
indent_size = 4
1313
dotnet_style_operator_placement_when_wrapping = beginning_of_line
1414
tab_width = 4
15-
end_of_line = crlf
1615
dotnet_style_coalesce_expression = true:suggestion
1716
dotnet_style_null_propagation = true:suggestion
1817
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion

‎.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
matrix:
88
include:
99
- name : Windows x64
10-
os: windows-2019
10+
os: windows-2022
1111
runtime: win-x64
1212
- name : Windows ARM64
13-
os: windows-2019
13+
os: windows-2022
1414
runtime: win-arm64
1515
- name : macOS (Intel)
1616
os: macos-13
@@ -31,7 +31,7 @@ jobs:
3131
container: ${{ matrix.container || '' }}
3232
steps:
3333
- name: Install common CLI tools
34-
if: ${{ startsWith(matrix.runtime, 'linux-') }}
34+
if: startsWith(matrix.runtime, 'linux-')
3535
run: |
3636
export DEBIAN_FRONTEND=noninteractive
3737
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime
@@ -45,7 +45,7 @@ jobs:
4545
with:
4646
dotnet-version: 9.0.x
4747
- name: Configure arm64 packages
48-
if: ${{ matrix.runtime == 'linux-arm64' }}
48+
if: matrix.runtime == 'linux-arm64'
4949
run: |
5050
sudo dpkg --add-architecture arm64
5151
echo 'deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ focal main restricted
@@ -55,7 +55,7 @@ jobs:
5555
sudo sed -i -e 's/^deb http/deb [arch=amd64] http/g' /etc/apt/sources.list
5656
sudo sed -i -e 's/^deb mirror/deb [arch=amd64] mirror/g' /etc/apt/sources.list
5757
- name: Install cross-compiling dependencies
58-
if: ${{ matrix.runtime == 'linux-arm64' }}
58+
if: matrix.runtime == 'linux-arm64'
5959
run: |
6060
sudo apt-get update
6161
sudo apt-get install -y llvm gcc-aarch64-linux-gnu
@@ -64,10 +64,10 @@ jobs:
6464
- name: Publish
6565
run: dotnet publish src/SourceGit.csproj -c Release -o publish -r ${{ matrix.runtime }}
6666
- name: Rename executable file
67-
if: ${{ startsWith(matrix.runtime, 'linux-') }}
67+
if: startsWith(matrix.runtime, 'linux-')
6868
run: mv publish/SourceGit publish/sourcegit
6969
- name: Tar artifact
70-
if: ${{ startsWith(matrix.runtime, 'linux-') || startsWith(matrix.runtime, 'osx-') }}
70+
if: startsWith(matrix.runtime, 'linux-') || startsWith(matrix.runtime, 'osx-')
7171
run: |
7272
tar -cvf "sourcegit.${{ matrix.runtime }}.tar" -C publish .
7373
rm -r publish/*

‎.github/workflows/format-check.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Format Check
2+
on:
3+
push:
4+
branches: [ develop ]
5+
workflow_dispatch:
6+
workflow_call:
7+
8+
jobs:
9+
format-check:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Set up .NET
17+
uses: actions/setup-dotnet@v4
18+
with:
19+
dotnet-version: 9.0.x
20+
21+
- name: Run formatting check
22+
run: dotnet format --verify-no-changes

‎.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
windows:
1111
name: Package Windows
12-
runs-on: windows-2019
12+
runs-on: windows-2022
1313
strategy:
1414
matrix:
1515
runtime: [ win-x64, win-arm64 ]

‎README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ This app supports open repository in external tools listed in the table below.
152152
| Visual Studio Code | YES | YES | YES |
153153
| Visual Studio Code - Insiders | YES | YES | YES |
154154
| VSCodium | YES | YES | YES |
155+
| Cursor | YES | YES | YES |
155156
| Fleet | YES | YES | YES |
156157
| Sublime Text | YES | YES | YES |
157158
| Zed | NO | YES | YES |

‎SourceGit.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{
1818
.github\workflows\package.yml = .github\workflows\package.yml
1919
.github\workflows\release.yml = .github\workflows\release.yml
2020
.github\workflows\localization-check.yml = .github\workflows\localization-check.yml
21+
.github\workflows\format-check.yml = .github\workflows\format-check.yml
2122
EndProjectSection
2223
EndProject
2324
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{49A7C2D6-558C-4FAA-8F5D-EEE81497AED7}"

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /