Downloads:
2,976
Downloads of v 10.5.0:
88
Last Update:
22 Apr 2024
Package Maintainer(s):
Software Author(s):
- Artúr Kovács
Tags:
images photos gui programmable rust foss- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Emulsion
- 1
- 2
- 3
10.5.0 | Updated: 22 Apr 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,976
Downloads of v 10.5.0:
88
Maintainer(s):
Software Author(s):
- Artúr Kovács
Emulsion 10.5.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Artúr Kovács. The inclusion of Artúr Kovács trademark(s), if any, upon this webpage is solely to identify Artúr Kovács goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Emulsion, run the following command from the command line or from PowerShell:
To upgrade Emulsion, run the following command from the command line or from PowerShell:
To uninstall Emulsion, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download emulsion --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade emulsion -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade emulsion -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install emulsion
win_chocolatey:
name: emulsion
version: '10.5.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'emulsion' do
action :install
source 'INTERNAL REPO URL'
version '10.5.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller emulsion
{
Name = "emulsion"
Version = "10.5.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'emulsion':
ensure => '10.5.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 22 Apr 2024.
Package Parameters
/DesktopShortcut
- Place a shortcut to the application on the desktop./AddToPath
- Add the application's install folder to System PATH.
About
Emulsion is a image viewer with the focus on the following features:
- Fast
- Light and Dark interface modes
- Cursor Anchored Zoom
- Pixel Art Friendly
- Seconds To Install
Refer to the website for a more in-depth overview.
Emulsion is targeting Windows, Mac, and Linux although it is currently only being tested on Linux and Windows. A note for Linux users: Wayland support is limited, so for example expect high CPU usage and the title text not being shown. However X is fully supported.
To build the software, obtain the latest stable release of Rust and after navigating to the source directory simply run the command cargo build --release
using your preferred command line interface.
Contribution is welcome. Feel free to post feature requests, bug reports, and make pull requests.
Notes on cargo features
All packages on the website come with avif support; however it is not a default feature as the dependecies are not trivial to set up. If you are bulding from source (eg using cargo install
) and would like emulsion to open avif files, I recommend taking a look at the release workflow for steps to install the avif development dependencies.
When installing Emulsion through the Windows installer, Emulsion will have networking enabled and will by default check for updates. However none of the other versions have networking and neither does the default feature-set. This also means that Emulsion will not have networking dependent capabilities when invoking
cargo install emulsion
To enable such features when installing with cargo, run
cargo install emulsion --features=networking
Reporting bugs
If Emulsion closed unexpectedly please locate the "panic.txt"
file at %localappdata%\emulsion\data
When posting a bug report please upload the contents of this file to GitHub. If you deem it too large just paste the last panic entry between the rows of equal signs. If there's no "panic.txt"
file, describe the scenario in which you experienced the faulty behaviour, and steps to reproduce it if you believe that could help.
MIT License
Copyright (c) 2020 The Emulsion Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/ArturKovacs/emulsion, enter to releases and download from there.
x86_64: https://github.com/ArturKovacs/emulsion/releases/download/v10.5/Emulsion-Windows-v10.5.exe
to download the installer. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum64: b7f3386c89b7b5396b9bd3c9d5592d7024cd38d1b5a2818039249d092d1925fe4cf9a4f621f1a94a730f525416081805cd00fd0ff2577bc42949ef1b7e92046e
File 'LICENSE.txt' obtained from:
https://github.com/ArturKovacs/emulsion/blob/v10.5/LICENSE.txt
$ErrorActionPreference = 'Stop';
$PackageName = $env:ChocolateyPackageName;
$Desktop = [System.Environment]::GetFolderPath("Desktop");
[array] $key = Get-UninstallRegistryKey "PackageName*";
if ($key.Count -eq 1) {
$key | ForEach-Object {
$PackageArgs = @{
PackageName = $PackageName
SilentArgs = '/S'
FileType = 'EXE'
ValidExitCodes = @(0,3010)
File = "$($_.UninstallString.Replace(' /x86=0', ''))"
};
Uninstall-ChocolateyPackage @PackageArgs;
};
}
elseif ($key.Count -eq 0) {
Write-Warning "$PackageName has already been uninstalled by other means.";
}
elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!";
Write-Warning "To prevent accidental data loss, no programs will be uninstalled.";
Write-Warning "Please alert package maintainer the following keys were matched:";
$key | ForEach-Object {Write-Warning "- $($_.DisplayName)"};
};
Remove-Item "$Desktop\Emulsion.lnk" -ErrorAction SilentlyContinue -Force | Out-Null
md5: 0F107C585DF6C496702C5764D8FAD242 | sha1: 7FCAF0F4FBA25A37E8D2869AAC4CFA77BBEB8B51 | sha256: D60AD36DB6B74B14A6251E82D22B8744D193BA51A0F15FA344B90E20538F25F6 | sha512: B7F3386C89B7B5396B9BD3C9D5592D7024CD38D1B5A2818039249D092D1925FE4CF9A4F621F1A94A730F525416081805CD00FD0FF2577BC42949EF1B7E92046E
Log in or click on link to see number of positives.
- emulsion.10.5.0.nupkg (df80859abc89) - ## / 57
- Emulsion-Windows-v10.5.exe (d60ad36db6b7) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Emulsion 10.5.0 | 88 | Monday, April 22, 2024 | Approved | |
Emulsion 10.4.0 | 121 | Monday, October 23, 2023 | Approved | |
Emulsion 9.0 | 485 | Thursday, April 29, 2021 | Approved | |
Emulsion 8.0 | 198 | Wednesday, January 6, 2021 | Approved | |
Emulsion 7.2 | 122 | Wednesday, December 16, 2020 | Approved | |
Emulsion 6.0 | 169 | Wednesday, October 28, 2020 | Approved | |
Emulsion 5.0 | 136 | Wednesday, October 28, 2020 | Approved | |
Emulsion 4.0 | 116 | Wednesday, October 28, 2020 | Approved | |
Emulsion 3.0 | 133 | Wednesday, October 28, 2020 | Approved | |
Emulsion 2.1 | 130 | Tuesday, October 27, 2020 | Approved | |
Emulsion 2.0 | 128 | Monday, October 19, 2020 | Approved | |
Emulsion 1.9 | 127 | Monday, October 19, 2020 | Approved | |
Emulsion 1.8 | 136 | Monday, October 19, 2020 | Approved | |
Emulsion 1.6 | 164 | Monday, October 19, 2020 | Approved | |
Emulsion 1.5 | 119 | Monday, October 12, 2020 | Approved | |
Emulsion 1.4 | 142 | Monday, October 12, 2020 | Approved | |
Emulsion 1.3 | 104 | Friday, October 9, 2020 | Approved | |
Emulsion 1.2 | 109 | Friday, October 9, 2020 | Approved | |
Emulsion 1.1 | 120 | Friday, October 9, 2020 | Approved | |
Emulsion 1.0 | 129 | Friday, October 2, 2020 | Approved |
Copyright © 2018-2024 Artúr Kovács; Copyright © 2020-2024 The Emulsion Contributors
-
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about Emulsion and the Emulsion package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Emulsion, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.