diff --git a/.goreleaser.yml b/.goreleaser.yml index a9671172..23f20c27 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -16,7 +16,7 @@ builds: hooks: post: - mkdir -p dist/windows_amd64 - - cp ".\target\x86_64-pc-windows-msvc\release\komorebi.exe" ".\dist\komorebi_windows_amd64\komorebi.exe" + - cp ".\target\x86_64-pc-windows-msvc\release\komorebi.exe" ".\dist\komorebi_windows_amd64_v1\komorebi.exe" - id: komorebic main: dummy.go goos: ["windows"] @@ -25,7 +25,7 @@ builds: hooks: post: - mkdir -p dist/windows_amd64 - - cp ".\target\x86_64-pc-windows-msvc\release\komorebic.exe" ".\dist\komorebic_windows_amd64\komorebic.exe" + - cp ".\target\x86_64-pc-windows-msvc\release\komorebic.exe" ".\dist\komorebic_windows_amd64_v1\komorebic.exe" archives: - replacements: @@ -42,19 +42,4 @@ checksum: name_template: checksums.txt changelog: - sort: asc - -scoop: - bucket: - owner: LGUG2Z - name: komorebi-bucket - token: "{{ .Env.SCOOP_TOKEN }}" - homepage: https://github.com/LGUG2Z/komorebi - description: A tiling window manager for Windows - license: MIT - pre_install: - - if (Get-Process -Name komorebi -ErrorAction SilentlyContinue) { komorebic stop } - post_install: - - Write-Host "`nRun 'cp $original_dir\komorebi.sample.ahk $Env:UserProfile\komorebi.ahk' to get started with the sample configuration" - - Write-Host "`nRun 'komorebic ahk-library' if you would like to generate an AHK helper library to use in your configuration" - - Write-Host "`nOnce you have a configuration file in place, you can run 'komorebic start' to start the window manager" + sort: asc \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index d23953b9..6fcf25f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -452,7 +452,7 @@ dependencies = [ [[package]] name = "komorebi" -version = "0.1.8" +version = "0.1.9" dependencies = [ "bitflags", "clap", @@ -486,7 +486,7 @@ dependencies = [ [[package]] name = "komorebi-core" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap", "color-eyre", @@ -500,7 +500,7 @@ dependencies = [ [[package]] name = "komorebic" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap", "color-eyre", diff --git a/komorebi-core/Cargo.toml b/komorebi-core/Cargo.toml index 3855c82f..9b5a5713 100644 --- a/komorebi-core/Cargo.toml +++ b/komorebi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-core" -version = "0.1.8" +version = "0.1.9" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index 85aad803..56f316b4 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi" -version = "0.1.8" +version = "0.1.9" authors = ["Jade Iqbal "] description = "A tiling window manager for Windows" categories = ["tiling-window-manager", "windows"] diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index 1fc4697c..f9ecb728 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic" -version = "0.1.8" +version = "0.1.9" authors = ["Jade Iqbal "] description = "The command-line interface for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"]