-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -259,3 +259,6 @@ paket-files/ | |
# Python Tools for Visual Studio (PTVS) | ||
__pycache__/ | ||
*.pyc | ||
|
||
# Custom | ||
*.msi |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. --> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<!-- == PACKAGE SPECIFIC SECTION == --> | ||
<id>pinwin</id> | ||
<version>0.2.2</version> | ||
<owners>alxnull</owners> | ||
<!-- ============================== --> | ||
|
||
<!-- == SOFTWARE SPECIFIC SECTION == --> | ||
<title>PinWin</title> | ||
<authors>alxnull</authors> | ||
<projectUrl>https://sf.net/p/pinwin</projectUrl> | ||
<iconUrl>https://gitcdn.xyz/repo/Bluegrams/PinWin/master/img/icon.png</iconUrl> | ||
<copyright>© 2020 Bluegrams</copyright> | ||
<licenseUrl>https://github.com/Bluegrams/PinWin/blob/master/LICENSE.txt</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<projectSourceUrl>https://github.com/Bluegrams/PinWin</projectSourceUrl> | ||
<bugTrackerUrl>https://github.com/Bluegrams/PinWin/issues</bugTrackerUrl> | ||
<tags>pinwin windows always-on-top ontop pin desktop</tags> | ||
<summary>Pin any window to be always on top of the screen.</summary> | ||
<description>PinWin is a minimal Windows system tray application that allows you to pin any windows to the top of the screen with one click.</description> | ||
<releaseNotes>https://github.com/Bluegrams/PinWin/blob/master/Changelog.md</releaseNotes> | ||
<!-- =============================== --> | ||
|
||
<dependencies> | ||
<dependency id="dotnetfx" version="4.6.2.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</package> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
$ErrorActionPreference = 'Stop'; | ||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" | ||
$fileLocation = Join-Path $toolsDir 'PinWinSetup.msi' | ||
|
||
$packageArgs = @{ | ||
packageName = $env:ChocolateyPackageName | ||
fileType = 'msi' | ||
file = $fileLocation | ||
softwareName = 'PinWin*' | ||
silentArgs = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:chocolateyPackageVersion).MsiInstall.log`"" | ||
validExitCodes= @(0, 3010, 1641) | ||
} | ||
|
||
Install-ChocolateyInstallPackage @packageArgs |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.