Skip to content

Commit

Permalink
AU: 3 updated - flashpoint-launcher vscode-jupyter vscode-maven
Browse files Browse the repository at this point in the history
  • Loading branch information
dgalbraith committed Jul 26, 2022
1 parent b026fbb commit 8b0559b
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion automatic/flashpoint-launcher/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![GitHub license](https://img.shields.io/badge/license-MIT-green)](https://github.com/FlashpointProject/launcher/blob/master/LICENSE)
[![Maintenance status](https://img.shields.io/badge/maintained%3F-yes-green.svg)](https://github.com/dgalbraith/chocolatey-packages/graphs/commit-activity)
[![AppVeyor build](https://img.shields.io/appveyor/ci/dgalbraith/chocolatey-packages)](https://ci.appveyor.com/project/dgalbraith/chocolatey-packages)
[![Software version](https://img.shields.io/badge/Source-v10.1.2-blue)](https://github.com/FlashpointProject/launcher/releases/tag/10.1.2)
[![Software version](https://img.shields.io/badge/Source-v10.1.3-blue)](https://github.com/FlashpointProject/launcher/releases/tag/10.1.3)
[![Chocolatey package version](https://img.shields.io/chocolatey/v/flashpoint-launcher?label=Chocolatey)](https://chocolatey.org/packages/flashpoint-launcher)

The Flashpoint Launcher (FPL) is a desktop application made for browsing, storing and launching other applications
Expand Down
2 changes: 1 addition & 1 deletion automatic/flashpoint-launcher/flashpoint-launcher.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>flashpoint-launcher</id>
<version>10.1.2</version>
<version>10.1.3</version>
<packageSourceUrl>https://github.com/dgalbraith/chocolatey-packages/tree/master/automatic/flashpoint-launcher</packageSourceUrl>
<owners>dgalbraith</owners>
<title>Flashpoint Launcher - Launcher for BlueMaxima's Flashpoint</title>
Expand Down
24 changes: 12 additions & 12 deletions automatic/flashpoint-launcher/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,30 @@ be verified by:

1. Go to the binary distribution page

https://github.com/FlashpointProject/launcher/releases/tag/10.1.2
https://github.com/FlashpointProject/launcher/releases/tag/10.1.3

and download the binaries Flashpoint-10.1.2_win-ia32.7z or Flashpoint-10.1.2_win-x64.7z
and download the binaries Flashpoint-10.1.3_win-ia32.7z or Flashpoint-10.1.3_win-x64.7z
using the relevant links in the asset section of the distribution page.

Alternatively the distribution can be downloaded directly from

https://github.com/FlashpointProject/launcher/releases/download/10.1.2/Flashpoint-10.1.2_win-ia32.7z
https://github.com/FlashpointProject/launcher/releases/download/10.1.2/Flashpoint-10.1.2_win-x64.7z
https://github.com/FlashpointProject/launcher/releases/download/10.1.3/Flashpoint-10.1.3_win-ia32.7z
https://github.com/FlashpointProject/launcher/releases/download/10.1.3/Flashpoint-10.1.3_win-x64.7z

2. The installer can be validated by comparing checksums
- Use powershell function 'Get-Filehash' - Get-Filehash Flashpoint-10.1.2_win-ia32.7z
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f Flashpoint-10.1.2_win-ia32.7z
- Use powershell function 'Get-Filehash' - Get-Filehash Flashpoint-10.1.3_win-ia32.7z
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f Flashpoint-10.1.3_win-ia32.7z

File32: Flashpoint-10.1.2_win-ia32.7z
File32: Flashpoint-10.1.3_win-ia32.7z
ChecksumType32: sha256
Checksum32: 5E545EB4B5729E2E8DBE59D5A098915BCCA3A32A1648F5B8FB43CCBB4BAF54CC
Checksum32: 98F5B39A98B34A02CCBC42DFD6C741E35BC2D8BD028AE88E831F1762172324F8

- Use powershell function 'Get-Filehash' - Get-Filehash Flashpoint-10.1.2_win-x64.7z
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f Flashpoint-10.1.2_win-x64.7z
- Use powershell function 'Get-Filehash' - Get-Filehash Flashpoint-10.1.3_win-x64.7z
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f Flashpoint-10.1.3_win-x64.7z

File64: Flashpoint-10.1.2_win-x64.7z
File64: Flashpoint-10.1.3_win-x64.7z
ChecksumType64: sha256
Checksum64: E1B7681A317782137DA4562DF9AA018BDBAB774488FFCC9286D351D67C258B52
Checksum64: 27F2F3D73A27D121B88E0494B565C744462652682149D8EB92C84BDB2F01A347

Contents of file LICENSE.txt is obtained from https://github.com/FlashpointProject/launcher/blob/master/LICENSE

4 changes: 2 additions & 2 deletions automatic/flashpoint-launcher/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ $toolsDir = (Split-Path -parent $MyInvocation.MyCommand.Definition)
$installDir = Join-Path (Get-ToolsLocation) $env:ChocolateyPackageName

if ((Get-ProcessorBits 32) -or $env:ChocolateyForceX86 -eq 'true') {
$fileName = 'Flashpoint-10.1.2_win-ia32.7z'
$fileName = 'Flashpoint-10.1.3_win-ia32.7z'
} else {
$fileName = 'Flashpoint-10.1.2_win-x64.7z'
$fileName = 'Flashpoint-10.1.3_win-x64.7z'
}

$archive = Join-Path $toolsDir $fileName
Expand Down
2 changes: 1 addition & 1 deletion automatic/vscode-jupyter/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$ErrorActionPreference = 'Stop'

Install-VsCodeExtension -extensionId 'ms-toolsai.jupyter@2022.7.1002051049'
Install-VsCodeExtension -extensionId 'ms-toolsai.jupyter@2022.7.1002081042'
2 changes: 1 addition & 1 deletion automatic/vscode-jupyter/vscode-jupyter.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>vscode-jupyter</id>
<version>2022.7.1002051049</version>
<version>2022.7.1002081042</version>
<packageSourceUrl>https://github.com/dgalbraith/chocolatey-packages/tree/master/automatic/vscode-jupyter</packageSourceUrl>
<owners>dgalbraith</owners>
<title>Visual Studio Jupyter VSCode Extension</title>
Expand Down
10 changes: 5 additions & 5 deletions automatic/vscode-maven/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ and can be verified by:

https://marketplace.visualstudio.com/items?itemName=vscjava.maven

and download the extension vscjava.vscode-maven-0.36.2022072203.vsix using the Download Extension link
and download the extension vscjava.vscode-maven-0.37.2022072603.vsix using the Download Extension link
in the Resources section of the sidebar.

Alternatively the package can be downloaded directly from

https://marketplace.visualstudio.com/_apis/public/gallery/publishers/vscjava/vsextensions/vscode-maven/0.36.2022072203/vspackage
https://marketplace.visualstudio.com/_apis/public/gallery/publishers/vscjava/vsextensions/vscode-maven/0.37.2022072603/vspackage

2. The package can be validated by comparing checksums
- Use powershell function 'Get-Filehash' - Get-Filehash vscjava.vscode-maven-0.36.2022072203.vsix
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f vscjava.vscode-maven-0.36.2022072203.vsix
- Use powershell function 'Get-Filehash' - Get-Filehash vscjava.vscode-maven-0.37.2022072603.vsix
- Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f vscjava.vscode-maven-0.37.2022072603.vsix

Type: sha256
Checksum: 96F54E33E6E061FAD7C0A798BA57A430616682A43C9C6D9D51E72DF618A43010
Checksum: 39402F2B449928ABCCF365DB7BC54E82F44C9403E9ABE5B9C0756861F395B2B7

File LICENSE.txt is obtained from https://marketplace.visualstudio.com/items/vscjava.vscode-maven/license
2 changes: 1 addition & 1 deletion automatic/vscode-maven/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

Install-VsCodeExtension -extensionId "$toolsDir\vscjava.vscode-maven-0.36.2022072203.vsix"
Install-VsCodeExtension -extensionId "$toolsDir\vscjava.vscode-maven-0.37.2022072603.vsix"
4 changes: 2 additions & 2 deletions automatic/vscode-maven/vscode-maven.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>vscode-maven</id>
<version>0.36.2022072203</version>
<version>0.37.2022072603</version>
<packageSourceUrl>https://github.com/dgalbraith/chocolatey-packages/tree/master/automatic/vscode-maven</packageSourceUrl>
<owners>dgalbraith</owners>
<title>Maven for Java VSCode Extension</title>
Expand All @@ -14,7 +14,7 @@
<licenseUrl>https://marketplace.visualstudio.com/items/vscjava.vscode-maven/license</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/microsoft/vscode-maven/</projectSourceUrl>
<docsUrl>https://github.com/Microsoft/vscode-maven/blob/v0.36.2022072203/README.md</docsUrl>
<docsUrl>https://github.com/Microsoft/vscode-maven/blob/v0.37.2022072603/README.md</docsUrl>
<bugTrackerUrl>https://github.com/microsoft/vscode-maven/issues</bugTrackerUrl>
<tags>maven java vscode-maven vscode microsoft</tags>
<summary>Maven extension for VS Code</summary>
Expand Down

0 comments on commit 8b0559b

Please sign in to comment.