-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from geekdinazor/main
search fix and flatpak support
- Loading branch information
Showing
6 changed files
with
166 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
app-id: com.furkankalkan.FinchS3 | ||
runtime: org.freedesktop.Platform | ||
runtime-version: '23.08' | ||
sdk: org.freedesktop.Sdk | ||
command: finch | ||
finish-args: | ||
- --share=network | ||
- --share=ipc | ||
- --socket=x11 | ||
- --socket=wayland | ||
- --filesystem=home | ||
# For keyring access | ||
- --talk-name=org.freedesktop.secrets | ||
- --filesystem=xdg-config/finch:create | ||
|
||
build-options: | ||
build-args: | ||
- --share=network | ||
|
||
modules: | ||
- name: python3-pip | ||
buildsystem: simple | ||
build-commands: | ||
- python3 -m ensurepip | ||
- pip3 install --upgrade pip | ||
cleanup: | ||
- /lib/python*/site-packages/pip | ||
- /lib/python*/site-packages/setuptools | ||
|
||
- name: python3-boto3-slim | ||
buildsystem: simple | ||
build-commands: | ||
# Install boto3 and dependencies | ||
- pip3 install --prefix=/app boto3==1.35.5 | ||
# Find botocore version and trim it | ||
- | | ||
BOTOCORE_PATH=$(python3 -c "import botocore; print(botocore.__path__[0])") | ||
cd $BOTOCORE_PATH/data | ||
for dir in *; do | ||
if [[ ! "$dir" =~ ^s3.* ]]; then | ||
rm -rf "$dir" | ||
fi | ||
done | ||
- name: python3-requirements | ||
buildsystem: simple | ||
build-commands: | ||
- pip3 install --prefix=/app --no-cache-dir PyQt5==5.15.11 keyring==25.3.0 python-slugify==8.0.4 | ||
|
||
- name: finch | ||
buildsystem: simple | ||
build-commands: | ||
# Copy project files to a known location | ||
- cp -r /run/build/finch/project /app/ | ||
# Install the package | ||
- pip3 install --prefix=/app --no-deps /app/project | ||
# Install application files | ||
- install -Dm644 /app/project/icon.png /app/share/icons/hicolor/256x256/apps/com.furkankalkan.FinchS3.png | ||
- install -Dm644 /app/project/flatpak/files/com.furkankalkan.FinchS3.desktop /app/share/applications/com.furkankalkan.FinchS3.desktop | ||
- install -Dm644 /app/project/flatpak/files/com.furkankalkan.FinchS3.metainfo.xml /app/share/metainfo/com.furkankalkan.FinchS3.metainfo.xml | ||
# Cleanup | ||
- rm -rf /app/project | ||
sources: | ||
- type: dir | ||
path: .. | ||
dest: project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Desktop Entry] | ||
Name=Finch S3 Client | ||
Comment=Open source and cross-platform GUI client for Amazon S3 | ||
Exec=finch | ||
Icon=com.furkankalkan.FinchS3 | ||
Terminal=false | ||
Type=Application | ||
Categories=Network;FileTransfer; | ||
Keywords=s3;aws;storage;cloud; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>com.furkankalkan.FinchS3</id> | ||
<metadata_license>MIT</metadata_license> | ||
<project_license>MIT</project_license> | ||
<name>Finch S3 Client</name> | ||
<summary>GUI client for Amazon S3 and compatible storage platforms</summary> | ||
<description> | ||
<p> | ||
Open source and cross-platform GUI client for Amazon S3 and compatible storage platforms. | ||
</p> | ||
<p>Features:</p> | ||
<ul> | ||
<li>Support for multiple credential through access & secret keys</li> | ||
<li>Use cross-platform secure secret key storage</li> | ||
<li>Browse and manage your S3 buckets and objects in file tree</li> | ||
<li>Delete folders and buckets recursively</li> | ||
<li>Upload and download files</li> | ||
<li>Searching buckets & objects</li> | ||
</ul> | ||
</description> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/mantis-software-company/finch/main/img.png</image> | ||
</screenshot> | ||
</screenshots> | ||
<url type="homepage">https://github.com/mantis-software-company/finch</url> | ||
<developer_name>Furkan Kalkan</developer_name> | ||
<releases> | ||
<release version="1.0.0a1" date="2024-01-01"/> | ||
</releases> | ||
<content_rating type="oars-1.1"/> | ||
</component> |