Skip to content

Commit

Permalink
release: v1.11.1a56
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich committed Feb 16, 2025
1 parent 70d45bf commit b322b91
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
23 changes: 18 additions & 5 deletions .github/actions/test-system-rclip-windows/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,21 @@ runs:
shell: powershell
- name: Run e2e tests on the rclip installed system-wide (Windows)
run: |
Import-Module "$env:ChocolateyInstall/helpers/chocolateyInstaller.psm1"
refreshenv
$env:RCLIP_TEST_RUN_SYSTEM_RCLIP=true
poetry run pytest tests/e2e
shell: powershell
powershell -NonInteractive - <<\EOF
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
Update-SessionEnvironment
# Round brackets in variable names cause problems with bash
Get-ChildItem env:* | %{
if (!($_.Name.Contains('('))) {
$value = $_.Value
if ($_.Name -eq 'PATH') {
$value = $value -replace ';',':'
}
Write-Output ("export " + $_.Name + "='" + $value + "'")
}
} | Out-File -Encoding ascii $env:TEMP\refreshenv.sh
EOF
source "$TEMP/refreshenv.sh"
RCLIP_TEST_RUN_SYSTEM_RCLIP=true poetry run pytest tests/e2e
shell: bash
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rclip"
version = "1.11.1a55"
version = "1.11.1a56"
description = "AI-Powered Command-Line Photo Search Tool"
authors = ["Yurij Mikhalevich <[email protected]>"]
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: |
For a detailed demonstration, watch the video: https://www.youtube.com/watch?v=tAJHXOkHidw.
You can use another image as a query by passing a file path or even an URL to the image file to **rclip** and combine multiple queries. Check out the project's README on GitHub for more usage examples: https://github.com/yurijmikhalevich/rclip#readme.
version: 1.11.1a55
version: 1.11.1a56
website: https://github.com/yurijmikhalevich/rclip
contact: [email protected]
passthrough:
Expand All @@ -28,7 +28,7 @@ apps:
parts:
rclip:
plugin: python
source: ./snap/local/rclip-1.11.1a55.tar.gz
source: ./snap/local/rclip-1.11.1a56.tar.gz
build-packages:
- python3-pip
build-environment:
Expand Down

0 comments on commit b322b91

Please sign in to comment.