Skip to content

Commit

Permalink
chore: move appimage-related files under a subdir (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
yurijmikhalevich authored Aug 17, 2023
1 parent 66845f0 commit 9798f97
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Build AppImage
uses: AppImageCrafters/[email protected]
with:
recipe: './appimage-builder.yml'
recipe: './release-utils/appimage/appimage-builder.yml'
env:
APP_VERSION: ${{ steps.version.outputs.VERSION }}
- name: Generate Changelog
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ else
endif

build-appimage:
poetry run appimage-builder --recipe appimage-builder.yml
poetry run appimage-builder --recipe ./release-utils/appimage/appimage-builder.yml

lint-style:
poetry run pycodestyle .
Expand Down
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.4.10"
version = "1.5.0a0"
description = "AI-Powered Command-Line Photo Search Tool"
authors = ["Yurij Mikhalevich <[email protected]>"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ script:
- mkdir -p AppDir/usr/src AppDir/usr/share/icons/hicolor/256x256/apps/
# Copy the python application code and icon into the AppDir
- cp rclip AppDir/usr/src -r
- cp [email protected] AppDir/usr/share/icons/hicolor/256x256/apps/rclip.png
- cp release-utils/appimage/[email protected] AppDir/usr/share/icons/hicolor/256x256/apps/rclip.png


AppDir:
Expand Down Expand Up @@ -45,7 +45,7 @@ AppDir:
exclude: []

after_bundle: >
PATH=${APPDIR}/usr/bin:${PATH} ./appimage_after_bundle.sh
PATH=${APPDIR}/usr/bin:${PATH} ./release-utils/appimage/appimage_after_bundle.sh
runtime:
env:
Expand Down
File renamed without changes.
File renamed without changes
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.4.10
version: 1.5.0a0
website: https://github.com/yurijmikhalevich/rclip
contact: [email protected]
passthrough:
Expand All @@ -33,7 +33,7 @@ apps:
parts:
rclip:
plugin: python
source: ./snap/local/rclip-1.4.10.tar.gz
source: ./snap/local/rclip-1.5.0a0.tar.gz
build-packages:
- python3-pip
build-environment:
Expand Down

0 comments on commit 9798f97

Please sign in to comment.