Skip to content

Commit

Permalink
chore: v0.2.14 - relaxing python version req, trying to outline home …
Browse files Browse the repository at this point in the history
…folder permissions for Harbor app
  • Loading branch information
av committed Oct 27, 2024
1 parent 493f56b commit dcef856
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .scripts/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as toml from 'jsr:@std/toml';
import * as path from 'jsr:@std/path';
import * as collections from "jsr:@std/collections/deep-merge";

const VERSION = "0.2.13";
const VERSION = "0.2.14";

type ValueSeed = {
// Path relative to the project root
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@avcodes/harbor-app",
"private": true,
"version": "0.2.13",
"version": "0.2.14",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion app/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 app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

[package]
name = "harbor-app"
version = "0.2.13"
version = "0.2.14"
description = "A companion app for Harbor LLM toolkit"
authors = ["av"]
edition = "2021"

[lib]
name = "harbor_lib"
crate-type = ["staticlib","cdylib","rlib"]
crate-type = ["staticlib", "cdylib", "rlib"]

[build-dependencies.tauri-build]
version = "2.0.0-rc"
Expand Down
6 changes: 6 additions & 0 deletions app/src-tauri/capabilities/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
{
"identifier": "fs:scope",
"allow": [
{
"path": "$HOME/**"
},
{
"path": "**"
},
Expand All @@ -49,6 +52,9 @@
{
"identifier": "fs:write-all",
"allow": [
{
"path": "$HOME/**"
},
{
"path": "**"
},
Expand Down
2 changes: 1 addition & 1 deletion app/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "Harbor",
"version": "0.2.13",
"version": "0.2.14",
"identifier": "com.harbor.app",
"build": {
"beforeDevCommand": "bun run dev",
Expand Down
2 changes: 1 addition & 1 deletion harbor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3507,7 +3507,7 @@ run_repopack_command() {
# ========================================================================

# Globals
version="0.2.13"
version="0.2.14"
harbor_repo_url="https://github.com/av/harbor.git"
harbor_release_url="https://api.github.com/repos/av/harbor/releases/latest"
delimiter="|"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@avcodes/harbor",
"version": "0.2.13",
"version": "0.2.14",
"description": "Effortlessly run LLM backends, APIs, frontends, and services with one command.",
"private": false,
"author": "av <av@av.codes> (https://av.codes)",
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml

Large diffs are not rendered by default.

0 comments on commit dcef856

Please sign in to comment.