Skip to content

Commit

Permalink
Merge pull request #31 from MassivDash/main
Browse files Browse the repository at this point in the history
0.9.5 release ( add ubuntu 22)
  • Loading branch information
MassivDash authored Jun 26, 2023
2 parents cb1a927 + 6d1c349 commit 0d8d0bf
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 39 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
platform: [macos-latest,ubuntu-latest, ubuntu-20.04, windows-latest]

runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-20.04'
if: matrix.platform == 'ubuntu-20.04' || matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
Expand All @@ -34,7 +34,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: app-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version
releaseName: 'App v__VERSION__'
releaseName: 'App v__VERSION__${{matrix.platform}}'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
prerelease: false
prerelease: false
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ A graphical user interface to aws s3 service.
This project is standalone application for connecting to your AWS S3 service.
Tested on Mac, Linux, Win 10.

## Installation files
[releases](https://github.com/MassivDash/S3_Manager/releases)


## Features

![LightFiles](/screenshots/lightFiles.png?raw=true)
Expand Down Expand Up @@ -54,7 +58,8 @@ output=json

### Alternate s3 endpoint

Set ```S3_CUSTOM_ENDPOINT``` env vars at your machine to alter the s3 default endpoints
Set env vars ```S3_CUSTOM_ENDPOINT``` to ```true``` or ```1``` at your machine to alter the s3 default endpoints
Set the alternative endpoint url with ```S3_CUSTOM_ENDPOINT_URL``` env

## Local install and development
Rust lang (cargo) and node.js (npm or yarn) and tauri-cli instalations are needed to run / build the project from source
Expand All @@ -78,7 +83,7 @@ Simple division: Rust manages the data and the calls, front end displays the dat


Since rust is responsible for making the aws calls you will need the rust "backend" to be started, without it the app will not work.
You will also need need the aws crednetails present on the system
You will also need need the aws credentials present on the system
```
cargo tauri dev
```
Expand Down
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "S3_Manager",
"private": true,
"version": "0.0.0",
"version": "0.9.5",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down Expand Up @@ -35,7 +35,7 @@
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.4",
"vite": "^4.0.5",
"vite-tsconfig-paths": "^4.0.3"
},
"dependencies": {
Expand Down
31 changes: 16 additions & 15 deletions src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3_manager"
version = "0.9.3"
version = "0.9.5"
description = "S3 Manager: A tool to manage S3 buckets"
authors = ["Lukasz Celitan, @SpaceoutPL"]
license = "MIT"
Expand All @@ -17,7 +17,7 @@ tauri-build = { version = "1.2.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2.3", features = ["api-all"] }
tauri = { version = "1.2.5", features = ["api-all"] }
aws-config = "0.53.0"
aws-sdk-s3 = "0.23.0"
tokio-stream = "0.1.11"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"package": {
"productName": "S3 Manager",
"version": "0.9.3"
"version": "0.9.5"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit 0d8d0bf

Please sign in to comment.