This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Chocolatey NuSpec. * Implemented Chocolatey AppVeyor deploy on demand. * Removed Architecture Dependent Builds because due to the Prefer32Bit option, only 32 bit dlls of BASS are required.
- Loading branch information
1 parent
bddada1
commit 66ae7d5
Showing
6 changed files
with
51 additions
and
22 deletions.
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 |
---|---|---|
|
@@ -6,4 +6,5 @@ temp/ | |
Output/ | ||
.vs/ | ||
*.suo | ||
*.user | ||
*.user | ||
*.nupkg |
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,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> | ||
<metadata> | ||
<id>captura</id> | ||
<version>3.0.0</version> | ||
<title>Captura</title> | ||
<authors>Mathew Sachin</authors> | ||
<projectUrl>https://github.com/MathewSachin/Captura</projectUrl> | ||
<tags>captura screen capture recording loopback screenshot screencast</tags> | ||
<summary>Capture Screen/Audio/Cursor/Clicks/Keystrokes</summary> | ||
<description> | ||
Captura is an application to capture Screen/Audio/Cursor/Clicks/Keystrokes. | ||
|
||
## Features | ||
- Take ScreenShots | ||
- Capture ScreenCasts (Avi/Gif/Mp4) | ||
- Capture with/without Mouse Cursor | ||
- Capture Specific Regions or Windows | ||
- Capture Mouse Clicks or Keystrokes | ||
- Record Audio from Microphone **AND/OR** Speaker Output (Wasapi Loopback) | ||
|
||
Download ffmpeg.exe and add to path for even more features. | ||
</description> | ||
</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 @@ | ||
Install-ChocolateyZipPackage 'Captura' -Url "https://github.com/MathewSachin/Captura/releases/download/$tag/Captura-Release.zip" -UnzipLocation "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" |
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