Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

111

Downloads of v 1.0.0:

111

Last Update:

03 Feb 2022

Package Maintainer(s):

Software Author(s):

  • Kevin Bost

Tags:

colorkraken gitkraken

ColorKraken

  • 1
  • 2
  • 3

1.0.0 | Updated: 03 Feb 2022

Downloads:

111

Downloads of v 1.0.0:

111

Maintainer(s):

Software Author(s):

  • Kevin Bost

ColorKraken 1.0.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install ColorKraken, run the following command from the command line or from PowerShell:

>

To upgrade ColorKraken, run the following command from the command line or from PowerShell:

>

To uninstall ColorKraken, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

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

  • 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

3. Copy Your Script

choco upgrade colorkraken -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 colorkraken -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 colorkraken
  win_chocolatey:
    name: colorkraken
    version: '1.0.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'colorkraken' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller colorkraken
{
    Name     = "colorkraken"
    Version  = "1.0.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'colorkraken':
  ensure   => '1.0.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.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 03 Feb 2022.

Description

GitKraken v8.2.0 introduced custom color themes. This simple desktop applications allows for easy editing of those themes. To get started simply download the app from the latest Release

Though the color picker on each theme color defaults to an RGB value, the theming in GitKraken supports more advanced CSS functions (such as lighten(), fade(), etc). Check out the existing themes to get an idea of what is possible.


tools\ColorKraken.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v6.0",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v6.0": {
      "ColorKraken/1.0.0.14": {
        "dependencies": {
          "MaterialDesignThemes": "4.3.0",
          "Microsoft.Toolkit.Mvvm": "7.1.2"
        },
        "runtime": {
          "ColorKraken.dll": {}
        }
      },
      "MaterialDesignColors/2.0.4": {
        "runtime": {
          "lib/netcoreapp3.1/MaterialDesignColors.dll": {
            "assemblyVersion": "2.0.4.3",
            "fileVersion": "2.0.4.3"
          }
        }
      },
      "MaterialDesignThemes/4.3.0": {
        "dependencies": {
          "MaterialDesignColors": "2.0.4"
        },
        "runtime": {
          "lib/netcoreapp3.1/MaterialDesignThemes.Wpf.dll": {
            "assemblyVersion": "4.3.0.3",
            "fileVersion": "4.3.0.3"
          }
        }
      },
      "Microsoft.Toolkit.Mvvm/7.1.2": {
        "runtime": {
          "lib/net5.0/Microsoft.Toolkit.Mvvm.dll": {
            "assemblyVersion": "7.1.0.0",
            "fileVersion": "7.1.2.1"
          }
        }
      }
    }
  },
  "libraries": {
    "ColorKraken/1.0.0.14": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    },
    "MaterialDesignColors/2.0.4": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-l8LfghYjT2mBVp28CAU8UN4GQ6T/euzgGiTwFKy1DPUG8c5rng/CVXXqM5Xof0XAm0MhXgV8yjGRjQ7KOjT/Iw==",
      "path": "materialdesigncolors/2.0.4",
      "hashPath": "materialdesigncolors.2.0.4.nupkg.sha512"
    },
    "MaterialDesignThemes/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-edXh0Hl2LukyEZN+REVFuN+gaaUFo6AfHSaBjuZ95k4Qz1TljcxnfCznMKkGaQoEsy5ryk85ZbeRY/tOzFmKxg==",
      "path": "materialdesignthemes/4.3.0",
      "hashPath": "materialdesignthemes.4.3.0.nupkg.sha512"
    },
    "Microsoft.Toolkit.Mvvm/7.1.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-tUQn6ar9oP7kmYaZ6pWabxpQaqw95Bsf+GG7prEL0y5MV5F60z76lI/Ppps9zcTqwd7e5CrdZBcdfor9WuvohA==",
      "path": "microsoft.toolkit.mvvm/7.1.2",
      "hashPath": "microsoft.toolkit.mvvm.7.1.2.nupkg.sha512"
    }
  }
}
tools\ColorKraken.dll
md5: A5C2B8598023F700139A8DC6B981BE3D | sha1: 943DAD6F8F055983C685F72AC169CE55D6EBE332 | sha256: B380806645287555C6C4CF33F1719FEAFD1DD4219272CD152279CDB8501DB09E | sha512: 46130A3D6D7A258280D3C21F96F477717FF55E725A82F0FB27963C276B4DDCACCDFFFAAF871E6110AFB71B7AE61F5855CC239B856711E142D7EE1EC5D990CBEA
tools\ColorKraken.exe
md5: 901D18E85C159E53A5C5DFE2BC0E36CC | sha1: 8CCF5D400A239CF70399EF9DFC8CF914CC6B3229 | sha256: 8610D4A6AF32FA9A49DBCB413BAECB852215DE365A2D54FA903D430E6981220C | sha512: 8A6EDB8F7346C3C50B0C7B5916B7F78A631939DFACAA2BF9176C3F4BA06D5635A732977507E22DA543B17B07CEFF7F5234A51EF54E63CEF979696A7AE3CCD24F
tools\ColorKraken.pdb
 
tools\ColorKraken.runtimeconfig.json
{
  "runtimeOptions": {
    "tfm": "net6.0",
    "frameworks": [
      {
        "name": "Microsoft.NETCore.App",
        "version": "6.0.0"
      },
      {
        "name": "Microsoft.WindowsDesktop.App",
        "version": "6.0.0"
      }
    ],
    "configProperties": {
      "System.Reflection.Metadata.MetadataUpdater.IsSupported": false
    }
  }
}
tools\LICENSE.txt

From: https://github.com/Keboo/ColorKraken/blob/master/LICENSE

LICENSE

MIT License

Copyright (c) 2021 Kevin Bost

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.
tools\MaterialDesignColors.dll
md5: 607CDC897D52EA17815AC5BAAE9B1B3F | sha1: BADFC932BBC10C815F7568CC12C23A20F8E24CAE | sha256: E667F72811042C057CB4F2FD1911016B8D29A0C9DB7CB70B9B536CA15FF7DA24 | sha512: 4B9865DF19D91AC58303D358F5CA32D11F8B5C68399240C4377878C02EB1FFEE024A57C9DA3CCE14B75685E6A5B00C3A790B8F8FF09E783D72243C49B906E1A1
tools\MaterialDesignThemes.Wpf.dll
md5: A3DF6B9E27387CB86CC6845229198150 | sha1: 68E65CA9F5F7A9FE131ABF0FBE27ADB3C95344DC | sha256: 6F6CBEED7AAA588E91A795EC9AA055E585E4EF07A317728AEDCD087C0343F1BB | sha512: 4481BFFA9209DF81DD18D0AD115FCE8098196D5FE227C2D5C5C8F07C1780FEC43E0E81DC67EFA84909FADE572CBBC08D8F1FA44783D146A5BE5B7C9F6D48A430
tools\Microsoft.Toolkit.Mvvm.dll
md5: 0ADBAB0F7410FEF14AD0CD3055F51B32 | sha1: 78CEB96BD5995E0741F4734287BDAE45272A5AEF | sha256: 392F2163D0526D866EA3EAA6DEA8ACC50F4CD6F12655CC8BFA5141A1C7CC2AEF | sha512: BE0B97D36119C05A48117B4C01419B2F929FC232780A98A72F071767D07E137087E6FE8C0237B1FEFD3FB695C71C9BB1C0EE685F2F4D14EB18205386EE4521AB
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

I am the software author.

The original binaries cna be downloaded from the source repository on <https://github.com/Keboo/ColorKraken>
and can be verified like this:

1. Download the binary files from the releases page:
  https://github.com/Keboo/ColorKraken/releases/tag/v1.0.0
2. You can use one of the following methods to obtain the checksum
  - Use powershell function 'Get-Filehash'
  - Use chocolatey utility 'checksum.exe'

  checksums: 
    ColorKraken.deps.json           7D6A734B81864BA727CD75BE8E2C9695379C15E2B3C7B6865EAB6B6E390B98DC
    ColorKraken.dll                 B380806645287555C6C4CF33F1719FEAFD1DD4219272CD152279CDB8501DB09E
    ColorKraken.exe                 8610D4A6AF32FA9A49DBCB413BAECB852215DE365A2D54FA903D430E6981220C
    ColorKraken.pdb                 71920573AB732C6D04C8D562257B04C4038121F9E6D4EC865357EECA744C93CF
    ColorKraken.runtimeconfig.json  1ECA0F0C70070AA83BB609E4B749B26DCB4409784326032726394722224A098A
    ColorKraken.zip                 C10860887ACF2025AD64DBED81BF7BCCC2FF5781AD662AAAA4361507FED583D6
    LICENSE.txt                     448C59FBAA978D54B818738FB6696A9CA5E5769BC34CC8B7D24D1AFB4BA4FDFD
    MaterialDesignColors.dll        E667F72811042C057CB4F2FD1911016B8D29A0C9DB7CB70B9B536CA15FF7DA24
    MaterialDesignThemes.Wpf.dll    6F6CBEED7AAA588E91A795EC9AA055E585E4EF07A317728AEDCD087C0343F1BB
    Microsoft.Toolkit.Mvvm.dll      392F2163D0526D866EA3EAA6DEA8ACC50F4CD6F12655CC8BFA5141A1C7CC2AEF
    VERIFICATION.txt                F36699A9821FEF35A823E88801E0A69BDB711DC4E2D6D4109F9B386FC3BCD8C5
    

Log in or click on link to see number of positives.

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
Discussion for the ColorKraken Package

Ground Rules:

  • This discussion is only about ColorKraken and the ColorKraken 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 ColorKraken, 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.
comments powered by Disqus