This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From 3215d7c56dfba2c7284e7dae306e773eda79c1ad Mon Sep 17 00:00:00 2001 | |
| Date: Sun, 24 Aug 2025 11:40:45 +0100 | |
| Subject: [PATCH] v25.10_2194696-1.24.04 | |
| --- | |
| .SRCINFO | 68 ++++++++++++++++++++++++++++---------------------------- | |
| PKGBUILD | 45 ++++++++++++++++++------------------- | |
| 2 files changed, 56 insertions(+), 57 deletions(-) | |
| diff --git a/.SRCINFO b/.SRCINFO |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $LocalTempDir = $env:TEMP; | |
| $EdgeInstaller = "MSEdgeInstaller.exe"; | |
| (new-object System.Net.WebClient).DownloadFile('https://c2rsetup.officeapps.live.com/c2r/downloadEdge.aspx?ProductreleaseID=Edge&platform=Default&version=Edge&source=EdgeStablePage&Channel=Stable&language=en', "$LocalTempDir\$EdgeInstaller"); | |
| & "$LocalTempDir\$EdgeInstaller" /silent /install; | |
| $Process2Monitor = "MSEdgeInstaller"; | |
| Do { | |
| $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; | |
| If ($ProcessesFound) { | |
| "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 | |
| } else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import argparse | |
| import subprocess | |
| import json | |
| from pathlib import Path | |
| CODEC_TO_EXT = { | |
| 'MPEG-H/HEVC/h.265': 'h265', | |
| 'VC-1': 'vc1', |