Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions bucket/cudatext.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"version": "1.234.0.2",
"description": "Text editor",
"description": "A cross-platform, open-source text editor written in Object Pascal, available free of charge for both personal and commercial use, featuring fast startup and extensibility through Python-based add-ons.",
"homepage": "https://cudatext.github.io",
"license": "MPL-2.0",
"license": {
"identifier": "MPL-2.0",
"url": "https://github.com/Alexey-T/CudaText/blob/HEAD/LICENSE"
},
"architecture": {
"64bit": {
"url": "https://sourceforge.net/projects/cudatext/files/release/1.234.0.2/cudatext-windows-amd64-1.234.0.2.zip",
Expand All @@ -14,14 +17,26 @@
}
},
"extract_dir": "cudatext",
"post_install": [
"'py', 'data' | ForEach-Object {",
" if (Test-Path -Path \"$dir\\$_.original\" -PathType Container) {",
" Copy-Item -Path \"$dir\\$_.original\\*\" -Destination \"$dir\\$_\" -Force -Recurse",
" Remove-Item -Path \"$dir\\$_.original\" -Recurse -Force -ErrorAction SilentlyContinue",
" }",
"}"
],
Comment thread
SorYoshino marked this conversation as resolved.
"bin": "cudatext.exe",
"shortcuts": [
[
"cudatext.exe",
"CudaText"
]
],
"persist": "settings",
"persist": [
"py",
"data",
"settings"
],
"checkver": {
"sourceforge": "cudatext/release"
},
Expand Down
Loading