Skip to content

Commit dcef856

Browse files
committed
chore: v0.2.14 - relaxing python version req, trying to outline home folder permissions for Harbor app
1 parent 493f56b commit dcef856

File tree

9 files changed

+17
-11
lines changed

9 files changed

+17
-11
lines changed

.scripts/seed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as toml from 'jsr:@std/toml';
22
import * as path from 'jsr:@std/path';
33
import * as collections from "jsr:@std/collections/deep-merge";
44

5-
const VERSION = "0.2.13";
5+
const VERSION = "0.2.14";
66

77
type ValueSeed = {
88
// Path relative to the project root

app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@avcodes/harbor-app",
33
"private": true,
4-
"version": "0.2.13",
4+
"version": "0.2.14",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

app/src-tauri/Cargo.lock

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

app/src-tauri/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

22
[package]
33
name = "harbor-app"
4-
version = "0.2.13"
4+
version = "0.2.14"
55
description = "A companion app for Harbor LLM toolkit"
66
authors = ["av"]
77
edition = "2021"
88

99
[lib]
1010
name = "harbor_lib"
11-
crate-type = ["staticlib","cdylib","rlib"]
11+
crate-type = ["staticlib", "cdylib", "rlib"]
1212

1313
[build-dependencies.tauri-build]
1414
version = "2.0.0-rc"

app/src-tauri/capabilities/default.json

+6
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
{
3636
"identifier": "fs:scope",
3737
"allow": [
38+
{
39+
"path": "$HOME/**"
40+
},
3841
{
3942
"path": "**"
4043
},
@@ -49,6 +52,9 @@
4952
{
5053
"identifier": "fs:write-all",
5154
"allow": [
55+
{
56+
"path": "$HOME/**"
57+
},
5258
{
5359
"path": "**"
5460
},

app/src-tauri/tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
33
"productName": "Harbor",
4-
"version": "0.2.13",
4+
"version": "0.2.14",
55
"identifier": "com.harbor.app",
66
"build": {
77
"beforeDevCommand": "bun run dev",

harbor.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3507,7 +3507,7 @@ run_repopack_command() {
35073507
# ========================================================================
35083508

35093509
# Globals
3510-
version="0.2.13"
3510+
version="0.2.14"
35113511
harbor_repo_url="https://github.com/av/harbor.git"
35123512
harbor_release_url="https://api.github.com/repos/av/harbor/releases/latest"
35133513
delimiter="|"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@avcodes/harbor",
3-
"version": "0.2.13",
3+
"version": "0.2.14",
44
"description": "Effortlessly run LLM backends, APIs, frontends, and services with one command.",
55
"private": false,
66
"author": "av <[email protected]> (https://av.codes)",

pyproject.toml

+3-3
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)