Skip to content

Commit c721d75

Browse files
Change specified required patch update level from specified patch to Convinience Rollup for Windows 7 (KB3125574)
1 parent 6bdd72d commit c721d75

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
- name: Apply patch
137137
run: |
138138
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/unified-1-26-patch.diff | patch --verbose -p 1
139-
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB2533623-1-26.diff | patch --verbose -p 1
139+
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB3125574-1-26.diff | patch --verbose -p 1
140140
141141
- name: Copy License
142142
run: |
@@ -146,20 +146,20 @@ jobs:
146146
- name: Upload package to Artifacts
147147
uses: actions/upload-artifact@v7
148148
with:
149-
name: source-pre-KB2533623
149+
name: source-pre-KB3125574
150150
path: |
151151
./*
152152
153153
- name: create ZIP archive
154154
if: github.event_name == 'release'
155155
shell: bash
156156
run: |
157-
zip -9vr ./source-pre-KB2533623.zip . -x "./.*" "./.*/*" "./**/.*" "./**/.*/*" "./**/*_test.go"
157+
zip -9vr ./source-pre-KB3125574.zip . -x "./.*" "./.*/*" "./**/.*" "./**/.*/*" "./**/*_test.go"
158158
159159
- name: Compute hashes for file
160160
if: github.event_name == 'release'
161161
run: |
162-
FILE=./source-pre-KB2533623.zip
162+
FILE=./source-pre-KB3125574.zip
163163
DGST=$FILE.dgst
164164
for METHOD in {"md5","sha1","sha256","sha512"}
165165
do
@@ -171,7 +171,7 @@ jobs:
171171
if: github.event_name == 'release'
172172
with:
173173
repo_token: ${{ secrets.GITHUB_TOKEN }}
174-
file: ./source-pre-KB2533623.zip*
174+
file: ./source-pre-KB3125574.zip*
175175
tag: ${{ github.ref }}
176176
file_glob: true
177177

.github/workflows/test-go1_26.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,12 @@ jobs:
112112
- name: Apply patch
113113
run: |
114114
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/unified-1-26-patch.diff | patch --verbose -p 1
115-
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB2533623-1-26.diff | patch --verbose -p 1
115+
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB3125574-1-26.diff | patch --verbose -p 1
116116
117117
- name: Upload package to Artifacts
118118
uses: actions/upload-artifact@v7
119119
with:
120-
name: source-pre-KB2533623
120+
name: source-pre-KB3125574
121121
path: |
122122
./*
123123

.github/workflows/test-go_master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ jobs:
108108
- name: Apply patch
109109
run: |
110110
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/patchmaster/unified-master.diff | patch --verbose -p 1
111-
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/patchmaster/pre-KB2533623-master.diff | patch --verbose -p 1
111+
curl -L -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://github.com/XTLS/go-win7/raw/refs/heads/build/patchmaster/pre-KB3125574-master.diff | patch --verbose -p 1
112112
113113
- name: Upload package to Artifacts
114114
uses: actions/upload-artifact@v7
115115
with:
116-
name: source-pre-KB2533623-master
116+
name: source-pre-KB3125574-master
117117
path: |
118118
./*

README-eng.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ These patches must be applied from up to down:
116116
1. https://github.com/XTLS/go-win7/commit/c3e5e430625ba7ab5d638c753f94cc52253793f5 / [Git diff](https://github.com/XTLS/go-win7/commit/c3e5e430625ba7ab5d638c753f94cc52253793f5.diff)
117117
1. https://github.com/XTLS/go-win7/commit/0d36c60d2c0754fde7e4e7e4773e0349527cff08 / [Git diff](https://github.com/XTLS/go-win7/commit/0d36c60d2c0754fde7e4e7e4773e0349527cff08.diff)
118118

119-
For Windows 7 SP1/Windows Server 2008 R2 SP1 without KB2533623 installed, these patches are also needed:
119+
For Windows 7 SP1/Windows Server 2008 R2 SP1 without KB2533623 or KB3125574 installed, these patches are also needed:
120120

121-
1. https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB2533623-1-26.diff
121+
1. https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB3125574-1-26.diff
122122

123123
For Windows 7/Windows Server 2008 R2 without SP1 installed, these patches are also needed:
124124

README-zho-hans.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@
116116
1. https://github.com/XTLS/go-win7/commit/c3e5e430625ba7ab5d638c753f94cc52253793f5 / [Git diff](https://github.com/XTLS/go-win7/commit/c3e5e430625ba7ab5d638c753f94cc52253793f5.diff)
117117
1. https://github.com/XTLS/go-win7/commit/0d36c60d2c0754fde7e4e7e4773e0349527cff08 / [Git diff](https://github.com/XTLS/go-win7/commit/0d36c60d2c0754fde7e4e7e4773e0349527cff08.diff)
118118

119-
对于没有安装 KB2533623 的 Windows 7 SP1/Windows Server 2008 R2 SP1,应该同时添加以下补丁:
119+
对于没有安装 KB2533623 或 KB3125574 的 Windows 7 SP1/Windows Server 2008 R2 SP1,应该同时添加以下补丁:
120120

121-
1. https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB2533623-1-26.diff
121+
1. https://github.com/XTLS/go-win7/raw/refs/heads/build/pre-KB3125574-1-26.diff
122122

123123
对于没有安装 SP1 的 Windows 7/Windows Server 2008 R2,应该同时添加以下补丁:
124124

0 commit comments

Comments
 (0)