vscode: update to 1.54.1.
This commit is contained in:
parent
8d4f0e5e2f
commit
a58cc2ae38
3 changed files with 13 additions and 13 deletions
|
@ -1,11 +1,11 @@
|
|||
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
|
||||
index d046aa71ed2f..0740fc225b3f 100644
|
||||
index e3ca3514bb62..f9157b7cbc6c 100644
|
||||
--- a/build/gulpfile.vscode.js
|
||||
+++ b/build/gulpfile.vscode.js
|
||||
@@ -263,7 +263,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
||||
let result = all
|
||||
@@ -285,7 +285,7 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
||||
.pipe(util.skipDirectories())
|
||||
.pipe(util.fixWin32DirectoryPermissions())
|
||||
.pipe(filter(['**', '!**/.github/**'], { dot: true })) // https://github.com/microsoft/vscode/issues/116523
|
||||
- .pipe(electron(_.extend({}, config, { platform, arch: arch === 'armhf' ? 'arm' : arch, ffmpegChromium: true })))
|
||||
+ .pipe(electron(_.extend({}, config, { platform, arch: arch === 'armhf' ? 'arm' : arch, ffmpegChromium: false })))
|
||||
.pipe(filter(['**', '!LICENSE', '!LICENSES.chromium.html', '!version'], { dot: true }));
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js
|
||||
index 93a943aba0be..5ab9be8c4bb5 100644
|
||||
index e3ca3514bb62..b0942f2b9b89 100644
|
||||
--- a/build/gulpfile.vscode.js
|
||||
+++ b/build/gulpfile.vscode.js
|
||||
@@ -258,7 +258,15 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
||||
'resources/win32/code_150x150.png'
|
||||
], { base: '.' }));
|
||||
} else if (platform === 'linux') {
|
||||
@@ -273,7 +273,15 @@ function packageTask(platform, arch, sourceFolderName, destinationFolderName, op
|
||||
'resources/win32/code_150x150.png'
|
||||
], { base: '.' }));
|
||||
} else if (platform === 'linux') {
|
||||
- all = es.merge(all, gulp.src('resources/linux/code.png', { base: '.' }));
|
||||
+ const icon = gulp.src('resources/linux/code.png', { base: '.' });
|
||||
+
|
||||
|
@ -16,6 +16,6 @@ index 93a943aba0be..5ab9be8c4bb5 100644
|
|||
+ .pipe(replace('@@ICON@@', `code-oss`));
|
||||
+
|
||||
+ all = es.merge(all, icon, desktop);
|
||||
} else if (platform === 'darwin') {
|
||||
const shortcut = gulp.src('resources/darwin/bin/code.sh')
|
||||
.pipe(rename('bin/code'));
|
||||
} else if (platform === 'darwin') {
|
||||
const shortcut = gulp.src('resources/darwin/bin/code.sh')
|
||||
.pipe(rename('bin/code'));
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'vscode'
|
||||
pkgname=vscode
|
||||
version=1.53.2
|
||||
version=1.54.1
|
||||
revision=1
|
||||
_electronver=9.4.1
|
||||
hostmakedepends="pkg-config python nodejs yarn tar git"
|
||||
|
@ -11,7 +11,7 @@ maintainer="shizonic <realtiaz@gmail.com>"
|
|||
license="MIT"
|
||||
homepage="https://code.visualstudio.com/"
|
||||
distfiles="https://github.com/Microsoft/vscode/archive/${version}.tar.gz"
|
||||
checksum=d83ec31b76815aaccb52ed10eb26a134563871f413ed21e8fe456ed89de500aa
|
||||
checksum=0afd83b04b5ab0c9f7b4cae6d10abc16ca2d36b9dabc3080734cf48a41ce5f7e
|
||||
patch_args="-Np1"
|
||||
|
||||
if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then
|
||||
|
|
Loading…
Reference in a new issue