Skip to content

Commit

Permalink
Version 1.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinbojko committed Nov 12, 2024
1 parent b1e0429 commit 01877d6
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 96 deletions.
4 changes: 2 additions & 2 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# These are supported funding model platforms

---
# These are supported funding model platforms:
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/01_build_and_push_image.yml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/01_build_image.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/build_package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build and Push Chocolatey Package
# Start
on:
push:
branches: [main, master, test]
pull_request:
branches: [main, master]
workflow_dispatch: # Allows manual triggering

permissions:
contents: write
pull-requests: write
packages: write
actions: read
deployments: read
id-token: write
issues: write
discussions: read
pages: read
repository-projects: read
security-events: read
attestations: read # Added this
checks: write # Added this
statuses: write # Added

jobs:
build-and-push:
uses: marcinbojko/reusable-workflows/.github/workflows/chocolatey_build_and_push.yml@main
with:
package_name: "doublecmd" # Replace with your package name
package_source_main: "https://push.chocolatey.org/"
package_source_test: "https://www.myget.org/F/public-choco-dev/api/v2/package"
run_tests: false
secrets:
CHOCO_API_KEY: ${{ secrets.CHOCO_API_KEY }}
MYGET_API_KEY: ${{ secrets.MYGET_API_KEY }}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ See Double Commander in action in the Gallery.

## Features

* Install and uninstall via Chocolatey
* Supports 32/64-bit version
- Install and uninstall via Chocolatey
- Supports 32/64-bit version

## Usage

Expand Down
2 changes: 1 addition & 1 deletion doublecmd.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>doublecmd</id>
<title>Double Commander for Windows</title>
<version>1.1.19</version>
<version>1.1.20</version>
<authors>Alexander Koblov, Przemyslaw Nagay</authors>
<owners>anydot, Marcin Bojko</owners>
<summary>Double Commander is a cross platform open source file manager with two panels side by side. It is inspired by Total Commander and features some new ideas.</summary>
Expand Down
6 changes: 3 additions & 3 deletions tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
$ErrorActionPreference = 'Stop';

$packageName = 'doublecmd'
$version = '1.1.19'
$version = '1.1.20'
$url = "https://github.com/doublecmd/doublecmd/releases/download/v$version/doublecmd-$version.i386-win32.msi"
$url64 = "https://github.com/doublecmd/doublecmd/releases/download/v$version/doublecmd-$version.x86_64-win64.msi"
$checksum = 'b827450f519ebf8921ab7a14d365f65066d8c7c1ffdcfc5ec80de776d4065a6c '
$checksum64 = '33970bf4a69fd4af124ef98205d003bc63a64c3b5990b8b9c96187c996999ad4'
$checksum = '4403ff1f3cbb22a777bbdfc1ed92e30fbc8a82fe1d4b4ec334c943df29b855d4 '
$checksum64 = '35fba505e17f0420be2621214b0e5deb8eb5aaf93561fe7d66d626ffb865422f'
$killexec = 1
$killexecprocess = "doublecmd*"

Expand Down

0 comments on commit 01877d6

Please sign in to comment.