-
Notifications
You must be signed in to change notification settings - Fork 1.7k
icofx: Add version 1.6.4 #17896
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
base: master
Are you sure you want to change the base?
icofx: Add version 1.6.4 #17896
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| { | ||
| "version": "1.6.4", | ||
| "description": "An icon editor", | ||
| "homepage": "https://icofx.ro/", | ||
| "license": "Unknown", | ||
| "url": "https://portableapps.com/redirect/?a=IcoFXPortable&s=s&d=pa&f=IcoFXPortable_1.6.4_Rev_3.paf.exe#/dl.7z", | ||
| "hash": "a17f11c4b02279b43cbde447b5d25b324baa7611156378174b264adc641f2bbf", | ||
| "extract_dir": "App/IcoFX", | ||
| "bin": "IcoFX.exe", | ||
| "shortcuts": [ | ||
| [ | ||
| "IcoFX.exe", | ||
| "IcoFX" | ||
| ] | ||
| ], | ||
| "persist": "IcoFX", | ||
| "post_install": "Remove-Item \"$dir\\App\" -Force" | ||
| } | ||
|
Comment on lines
+1
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing The manifest lacks Since the download URL uses PortableApps.com, you'll need to configure checkver to monitor the appropriate source for version updates. Here's a starting point: 📝 Suggested autoupdate configuration"checkver": {
"url": "https://portableapps.com/apps/graphics_pictures/icofx_portable",
"regex": "IcoFXPortable[_\\s]([\\d.]+)"
},
"autoupdate": {
"url": "https://portableapps.com/redirect/?a=IcoFXPortable&s=s&d=pa&f=IcoFXPortable_$version_Rev_$preReleaseVersion.paf.exe#/dl.7z"
}Note: You may need to adjust the regex pattern and URL template based on PortableApps' actual naming convention. Test with: .\bin\checkver.ps1 -App icofx -fFor guidance, see: https://github.com/ScoopInstaller/Scoop/wiki/App-Manifests As per coding guidelines: "NEVER allow hardcoded version numbers in the autoupdate block. They must use variables like $version." 🤖 Prompt for AI AgentsMissing package request issue link for new package. This PR adds a new manifest but does not link a package request issue in the PR description or manifest description field. According to the repository's package request policy, new packages must:
Please create a package request issue and link it in the PR description: As per coding guidelines: "If this is a NEWLY ADDED manifest file, check the description field or the PR body for a linked GitHub issue. If missing, warn the contributor to create a package request issue and link it in the description or PR body." 🤖 Prompt for AI Agents |
||
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.
🧩 Analysis chain
🌐 Web query:
What is the license for IcoFX software?💡 Result:
IcoFX is proprietary, commercial software licensed under a trialware model [1]. It is not free software [2][1]. Key details regarding the IcoFX license include: Evaluation/Trial: You can download and use IcoFX as an evaluation version free of charge for up to 30 days [2]. After this period, the save feature is disabled unless a license is purchased [2]. License Tiers: IcoFX offers three types of commercial licenses: - Home License: Intended for individual users for non-commercial purposes [3]. - Business License: Required for companies, organizations, or if you use the software for commercial purposes (including selling icons or using them in commercial applications) [3]. This license also unlocks full features like batch processing [3]. - Site License: Allows installation and use on all computers at a single physical location (a building or set of buildings within 10 km) [3]. General Terms: - Licensing: The software is licensed, not sold [4][5]. - Multi-device use: You can install your license on multiple devices as long as it is for your own use [6]. Each user must own a license [5]. - Updates: Licenses for IcoFX 3.x include free updates within that major version [6]. Historically, older versions of IcoFX (specifically version 1.6.4 and earlier) were released as freeware, but all current versions are commercial trialware [1]. Users are encouraged to consult the specific End-User License Agreement (EULA) presented during the installation process for the most accurate and legally binding terms [2][4].
Citations:
🌐 Web query:
Scoop manifest license field allowed values (e.g., Proprietary, Freeware, Shareware, Trialware)💡 Result:
In Scoop manifests, the license field identifies the software license of the application. The recommended approach depends on whether the license is well-known or custom [1][2]. For well-known licenses, you should use the official identifier from the SPDX License List [1][2][3]. For licenses not covered by SPDX or when the specific license is unclear, the Scoop documentation specifies the following fallback values: - Freeware: Software that is free to use indefinitely [1][2]. - Proprietary: Software that requires payment or has restrictive, non-open terms [1][2]. - Shareware: Software that is free to try, but typically requires payment after a trial period [1][2]. - Public Domain: Software with no copyright restrictions [1][2]. - Unknown: Used when the license cannot be determined [1][2]. The license field can accept a string or a hash [1][2]. When using a hash, you can specify the license identifier and include a URL to the license text for clarity [1][2]. Additionally, if an application has multiple licenses, you can separate them with a comma (,) for a list or a pipe symbol (|) for dual-licensed software [1][2].
Citations:
Set IcoFX license correctly (replace
"Unknown")bucket/icofx.jsonsets"license": "Unknown", but IcoFX is proprietary commercial trialware/evaluation (free trial with features disabled unless a paid license is purchased). Use Scoop’s"Shareware"(or include a license URL to the official EULA/license terms).https://icofx.ro/help2/intro.html
https://github.com/ScoopInstaller/Scoop/wiki/App-Manifests
🤖 Prompt for AI Agents