-
Notifications
You must be signed in to change notification settings - Fork 1.6k
eventghost: Add version 0.4.1.r1722 #17145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
aaronpinch
wants to merge
17
commits into
ScoopInstaller:master
Choose a base branch
from
aaronpinch:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+56
−0
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
e151bbd
Create EventGhost.json
aaronpinch 496db29
Rename EventGhost.json to eventghost.json
aaronpinch ef85482
Update eventghost.json
aaronpinch ea91269
Update eventghost.json
aaronpinch 258b299
Update eventghost.json
aaronpinch ebc6976
Update eventghost.json
aaronpinch 35c9132
Update eventghost.json
aaronpinch be34d58
Update eventghost.json
aaronpinch 212bc7f
Fix JSON formatting in eventghost.json
aaronpinch 4bcb25b
Update eventghost.json
aaronpinch 5ab38e5
Update eventghost.json
aaronpinch da7277b
Update eventghost.json
aaronpinch 591d92b
Update eventghost.json
aaronpinch 0bab4b3
Update installer script in eventghost.json
aaronpinch 39baa5b
Update checkver configuration for EventGhost
aaronpinch 1672ae6
Corrected syntax
aaronpinch f51e309
General fixes
aaronpinch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| { | ||
| "version": "0.4.1.r1722", | ||
| "description": "EventGhost is an advanced, event-driven automation tool for Windows.", | ||
| "homepage": "https://eventghost.net/", | ||
| "license": "GPL-2.0", | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://github.com/EventGhost/EventGhost/releases/download/v0.4.1.r1722/EventGhost_0.4.1.r1722_Setup.exe", | ||
| "hash": "43824b90ccd778ba9b1780e0916548896a0287ce110aa98aecee0aa9d3cdcfb2" | ||
| } | ||
| }, | ||
| "installer": { | ||
| "script": [ | ||
| "# 1. Run the installer and wait for it to finish", | ||
| "Start-Process -FilePath \"$dir\\$fname\" -ArgumentList @('/VERYSILENT', '/SUPPRESSMSGBOXES', '/NORESTART', \"/DIR=`\"$dir`\"\") -Wait", | ||
| "", | ||
| "# 2. Flatten directory if installer created a subdirectory", | ||
| "if (Test-Path \"$dir\\EventGhost\\EventGhost.exe\") {", | ||
| " Get-ChildItem \"$dir\\EventGhost\\*\" | Move-Item -Destination \"$dir\" -Force", | ||
| " Remove-Item \"$dir\\EventGhost\" -Recurse -Force", | ||
| "}", | ||
| "", | ||
| "# 3. Wait 3 seconds for file locks to release", | ||
| "Start-Sleep -Seconds 3" | ||
| ] | ||
| }, | ||
| "uninstaller": { | ||
| "file": "unins000.exe", | ||
| "args": [ | ||
| "/VERYSILENT", | ||
| "/SUPPRESSMSGBOXES", | ||
| "/NORESTART" | ||
| ] | ||
| }, | ||
| "bin": "EventGhost.exe", | ||
| "shortcuts": [ | ||
| [ | ||
| "EventGhost.exe", | ||
| "EventGhost" | ||
| ] | ||
| ], | ||
| "persist": [ | ||
| "config" | ||
| ], | ||
| "checkver": { | ||
| "github": "EventGhost/EventGhost", | ||
| "regex": "v([\\d.]+\\.r\\d+)$" | ||
| }, | ||
| "autoupdate": { | ||
| "architecture": { | ||
| "64bit": { | ||
| "url": "https://github.com/EventGhost/EventGhost/releases/download/v$version/EventGhost_$version_Setup.exe" | ||
| } | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix
checkverURL to resolve CI failure (missing scheme).CI reports
EventGhost/EventGhost/releases/latestas an invalid URL. Add an explicitcheckver.urlwithhttps://so the WebClient call is valid and checkver can fetch the latest tag.🔧 Proposed fix
"checkver": { - "github": "EventGhost/EventGhost", - "regex": "v([\\d.]+\\.r\\d+)$" + "url": "https://github.com/EventGhost/EventGhost/releases/latest", + "regex": "v([\\d.]+\\.r\\d+)$" }🤖 Prompt for AI Agents