Downloads:
2,976
Downloads of v 1.4:
142
Last Update:
12 Oct 2020
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
This is not the latest version of Emulsion available.
- 1
- 2
- 3
1.4 | Updated: 12 Oct 2020
- 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 1.4:
142
Maintainer(s):
Software Author(s):
- Artúr Kovács
Emulsion 1.4
This is not the latest version of Emulsion available.
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 Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
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 --version=1.4 --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'" --version="'1.4'" [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'" --version="'1.4'"
$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: '1.4'
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 '1.4'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller emulsion
{
Name = "emulsion"
Version = "1.4"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'emulsion':
ensure => '1.4',
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 by moderator flcdrg on 16 Oct 2020.
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/v1.4/Emulsion-Installer.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: 9e65ba799ec548d9afd06bdab52ebca623934e287acabd6d2388c6c413e1079df8a8fc1467206f438c47a530ad242e0eee2a488ff4d3a1dbacc44f8f3a5779dc
File 'LICENSE.txt' obtained from:
https://github.com/ArturKovacs/emulsion/blob/v1.4/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: 627D42B511A27B403AFB609CD03B921F | sha1: 0CD393CB21E812FB08CA2131736607F8653EA9F0 | sha256: E1420C6003F66A6ACCE937DAC5327D5BE465127CED26CD841ACBC2B071E31415 | sha512: 9E65BA799EC548D9AFD06BDAB52EBCA623934E287ACABD6D2388C6C413E1079DF8A8FC1467206F438C47A530AD242E0EEE2A488FF4D3A1DBACC44F8F3A5779DC
Log in or click on link to see number of positives.
- emulsion.1.4.nupkg (3adbcdd8ba31) - ## / 64
- Emulsion-Installer.exe (e1420c6003f6) - ## / 70
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-2020 Artúr Kovács; Copyright © 2020 The Emulsion Contributors
This release implements a fix for an issue that caused images to follow each other in the wrong order in cases when the filenames contained numbers.
-
- 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.