Skip to content

Commit d9b9ac2

Browse files
authored
Merge pull request #107 from thenetrunna/master
version bump
2 parents ad53044 + 68f89d0 commit d9b9ac2

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

.github/workflows/tauri_release.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ jobs:
4545
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
4646
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
4747

48+
- name: download llama.cpp
49+
run: make setup
50+
4851
- uses: tauri-apps/tauri-action@v0
4952
env:
5053
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "studio/rust-llama.cpp"]
2+
path = studio/rust-llama.cpp
3+
url = https://github.com/mdrokz/rust-llama.cpp

app/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"package": {
99
"productName": "Shog Studio",
10-
"version": "1.0.2"
10+
"version": "1.6.7"
1111
},
1212
"tauri": {
1313
"allowlist": {

makefile

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

studio/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pub struct Args {
6060
pub subcommand_arg: Option<String>,
6161
}
6262

63-
const VERSION: &str = "1.0.2";
63+
const VERSION: &str = "1.6.7";
6464
const HUB_URL: &str = "https://hub.shog.ai";
6565
const NODE_REFRESH_RATE: u64 = 100;
6666

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.2
1+
1.6.7

0 commit comments

Comments
 (0)