Skip to content

Commit f11d146

Browse files
authored
Add files via upload
Signed-off-by: Andrew Poženel - SloDevTeam <[email protected]>
1 parent fe0edcb commit f11d146

File tree

3 files changed

+94
-23
lines changed

3 files changed

+94
-23
lines changed

bucket/jedit.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "5.7.0",
3+
"description": "jEdit is a mature, open-source programmer's text editor with hundreds of person-years of development behind it.",
4+
"homepage": "https://www.jedit.org/",
5+
"license": "GPL-2.0-only",
6+
"url": "https://unlimited.dl.sourceforge.net/project/jedit/jedit/5.7.0/jedit5.7.0install.exe",
7+
"hash": "sha256:e3144406a581a155ced242544d4d0d53515e05e0696cfd2969062c27adfbb521",
8+
"innosetup": true,
9+
"bin": "jedit.exe",
10+
"shortcuts": [
11+
[
12+
"jedit.exe",
13+
"jEdit"
14+
]
15+
],
16+
"checkver": {
17+
"url": "https://www.jedit.org/index.php?page=download",
18+
"regex": "jedit([\\d.]+)install\\.exe"
19+
},
20+
"autoupdate": {
21+
"url": "https://unlimited.dl.sourceforge.net/project/jedit/jedit/$version/jedit$versioninstall.exe",
22+
"hash": {
23+
"mode": "download"
24+
}
25+
}
26+
}

bucket/revo-registry-cleaner.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"version": "2.0.5",
3+
"description": "A free and portable registry cleaner tool that helps find and fix problems in the Windows registry. Scans for invalid entries, leftover files, and other issues.",
4+
"homepage": "https://www.revouninstaller.com/products/revo-registry-cleaner-free/",
5+
"license": "Freeware",
6+
"url": "https://download.revouninstaller.com/download/revoregistrycleaner/RRC_FreePortable.zip",
7+
"hash": "sha256:7e009ca545fb9fe358d4ebadbe71b692183036701146fc66bce04b62ae722aed",
8+
"bin": "Revo Registry Cleaner Portable\\Revo Registry Cleaner.exe",
9+
"shortcuts": [
10+
[
11+
"Revo Registry Cleaner Portable\\Revo Registry Cleaner.exe",
12+
"Revo Registry Cleaner Free"
13+
]
14+
],
15+
"checkver": {
16+
"url": "https://www.revouninstaller.com/products/revo-registry-cleaner-free/",
17+
"regex": "Latest Version:\\s*([\\d.]+)"
18+
},
19+
"autoupdate": {
20+
"url": "https://download.revouninstaller.com/download/revoregistrycleaner/RRC_FreePortable.zip",
21+
"hash": {
22+
"mode": "download"
23+
}
24+
},
25+
"notes": "⚠️ This is a registry cleaning tool. Use with caution and create a system restore point before making significant changes to your registry."
26+
}

bucket/textadept.json

Lines changed: 42 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,42 @@
1-
{
2-
"version": "12.6",
3-
"description": "A fast, minimalist, and remarkably extensible cross-platform text editor",
4-
"homepage": "https://orbitalquark.github.io/textadept/",
5-
"license": "MIT",
6-
"url": "https://github.com/orbitalquark/textadept/releases/download/textadept_12.6/textadept_12.6.win.zip",
7-
"hash": "a4503fba92f96f41e807a23d4d7c468b672391d23c1ffa02fec91a01a5f59d25",
8-
"extract_dir": "textadept",
9-
"bin": [
10-
"textadept.exe",
11-
"textadept-curses.exe"
12-
],
13-
"shortcuts": [
14-
[
15-
"textadept.exe",
16-
"Textadept"
17-
]
18-
],
19-
"checkver": "Stable Release.*?\\(([\\d.]+)\\)",
20-
"autoupdate": {
21-
"url": "https://github.com/orbitalquark/textadept/releases/download/textadept_$version/textadept_$version.win.zip"
22-
}
23-
}
1+
{
2+
"version": "12.9",
3+
"description": "A fast, minimalist, and remarkably extensible cross-platform text editor for programmers.",
4+
"homepage": "https://github.com/orbitalquark/textadept",
5+
"license": "MIT",
6+
"url": "https://github.com/orbitalquark/textadept/releases/download/textadept_12.9/textadept_12.9.win.zip",
7+
"hash": "sha256:cac909a614be575d29e748dcb866ebb16cef551644b99d736b8e189f2081e688",
8+
"installer": {
9+
"script": [
10+
"# Move files from 'textadept' subdirectory to root",
11+
"$taDir = Get-ChildItem \"$dir\" -Filter 'textadept' -Directory | Select-Object -First 1",
12+
"if ($taDir) {",
13+
" Get-ChildItem \"$taDir\" | Move-Item -Destination \"$dir\" -Force",
14+
" Remove-Item \"$taDir\" -Recurse -Force",
15+
"}"
16+
]
17+
},
18+
"bin": [
19+
"textadept.exe",
20+
"textadept-curses.exe"
21+
],
22+
"shortcuts": [
23+
[
24+
"textadept.exe",
25+
"Textadept"
26+
],
27+
[
28+
"textadept-curses.exe",
29+
"Textadept Curses"
30+
]
31+
],
32+
"checkver": {
33+
"github": "https://github.com/orbitalquark/textadept",
34+
"regex": "/releases/tag/textadept_([\\d.]+)"
35+
},
36+
"autoupdate": {
37+
"url": "https://github.com/orbitalquark/textadept/releases/download/textadept_$version/textadept_$version.win.zip",
38+
"hash": {
39+
"mode": "download"
40+
}
41+
}
42+
}

0 commit comments

Comments
 (0)