Compare commits
2 Commits
app-v0.1.1
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dd14c84e1f | ||
|
|
e6708907f4 |
@ -3,7 +3,7 @@ name: 'publish'
|
|||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- release
|
- master
|
||||||
|
|
||||||
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
|
# This workflow will trigger on each push to the `release` branch to create or update a GitHub release, build your app, and upload the artifacts to the release.
|
||||||
|
|
||||||
@ -15,12 +15,8 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- platform: 'macos-latest' # for Arm based macs (M1 and above).
|
|
||||||
args: '--target aarch64-apple-darwin'
|
|
||||||
- platform: 'ubuntu-22.04'
|
- platform: 'ubuntu-22.04'
|
||||||
args: ''
|
args: ''
|
||||||
- platform: 'windows-latest'
|
|
||||||
args: ''
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
steps:
|
steps:
|
||||||
@ -38,12 +34,13 @@ jobs:
|
|||||||
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf cmake xdg-utils
|
||||||
|
|
||||||
- name: install frontend dependencies
|
- name: install frontend dependencies
|
||||||
run: bun install # change this to npm, pnpm or bun depending on which one you use.
|
run: bun install # change this to npm, pnpm or bun depending on which one you use.
|
||||||
|
|
||||||
- uses: tauri-apps/tauri-action@v1
|
- name: build tauri packages and release
|
||||||
|
uses: ValerioMeschi/tauri-action@9f8b32da04b4d228756d93dc93b9f16869e4f105
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.SMOOTHIE_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.SMOOTHIE_TOKEN }}
|
||||||
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
||||||
@ -55,3 +52,5 @@ jobs:
|
|||||||
releaseDraft: true
|
releaseDraft: true
|
||||||
prerelease: false
|
prerelease: false
|
||||||
args: ${{ matrix.args }}
|
args: ${{ matrix.args }}
|
||||||
|
githubBaseUrl: https://git.floatingpoint.ch/api/v1
|
||||||
|
isGitea: true
|
||||||
|
|||||||
23
README.md
23
README.md
@ -1,7 +1,22 @@
|
|||||||
# Tauri + SvelteKit
|
```
|
||||||
|
▄▄▄▄▄
|
||||||
|
██▀▀▀▀█▄ █▄ █▄
|
||||||
|
▀██▄ ▄▀ ▄ ▄██▄██ ▀▀
|
||||||
|
▀██▄▄ ███▄███▄ ▄███▄ ▄███▄ ██ ████▄ ██ ▄█▀█▄
|
||||||
|
▄ ▀██▄ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▄█▀
|
||||||
|
▀██████▀▄██ ██ ▀█▄▀███▀▄▀███▀▄██▄██ ██▄██▄▀█▄▄▄
|
||||||
|
```
|
||||||
|
|
||||||
This template should help get you started developing with Tauri and SvelteKit in Vite.
|
# Smoothie - Blender Version Manager
|
||||||
|
|
||||||
## Recommended IDE Setup
|
Smoothie is a simple launcher that allows you to download, install and manage all your blender Versions.
|
||||||
|
|
||||||
[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer).
|
## Features
|
||||||
|
|
||||||
|
* **Download:** Easily fetch official Blender builds for your operating system.
|
||||||
|
* **Manage:** Install, Remove, Fav and switch between, easily and without messing with your system files and configs
|
||||||
|
* **Unified Library:** All your blender Installs, Configs, Plugins and Libraries in ONE folder. Easily mantain, backup, share or transfer your whole blender setup.
|
||||||
|
* **Set as Default:** Quickly choose which version is used to open .blend files
|
||||||
|
* **Simple Interface:** A Straigforward GUI
|
||||||
|
* **Templates:** Manage as many instances of a same version of Blender as you want. Each with different its own Layout, Startup file and Plugins.
|
||||||
|
* **Custom Icons:** Smoothie Creates custom icons for all your blender installs so you can quickly fin
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user