diff --git a/pyproject.toml b/pyproject.toml index cdf8f2849..d0890e7b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "khoj-assistant" -description = "An AI personal assistant for your Digital Brain" +description = "An AI copilot for your Second Brain" readme = "README.md" license = "GPL-3.0-or-later" requires-python = ">=3.8" diff --git a/scripts/bump_version.sh b/scripts/bump_version.sh index 07d2117f6..561953dd7 100755 --- a/scripts/bump_version.sh +++ b/scripts/bump_version.sh @@ -9,6 +9,10 @@ do # Get current project version current_version=$OPTARG + # Bump Desktop app to current version + cd $project_root/src/interface/desktop + sed -E -i.bak "s/version\": \"(.*)\",/version\": \"$current_version\",/" package.json + # Bump Obsidian plugin to current version cd $project_root/src/interface/obsidian sed -E -i.bak "s/version\": \"(.*)\",/version\": \"$current_version\",/" package.json diff --git a/src/interface/desktop/package.json b/src/interface/desktop/package.json index 7fc079120..0b5f220ca 100644 --- a/src/interface/desktop/package.json +++ b/src/interface/desktop/package.json @@ -1,13 +1,13 @@ { "name": "Khoj", - "homepage": ".", - "productName": "Khoj", "version": "0.12.3", - "description": "Scaffolding for the desktop entrypoint to Khoj", - "main": "main.js", + "description": "An AI copilot for your Second Brain", + "author": "Saba Imran, Debanjum Singh Solanky ", + "license": "GPL-3.0-or-later", + "homepage": "https://khoj.dev", "repository": "\"https://github.com/khoj-ai/khoj\"", - "author": "Khoj ", - "license": "MIT", + "productName": "Khoj", + "main": "main.js", "private": false, "devDependencies": { "electron": "25.8.1" diff --git a/src/interface/emacs/khoj.el b/src/interface/emacs/khoj.el index e690b4809..09de2f932 100644 --- a/src/interface/emacs/khoj.el +++ b/src/interface/emacs/khoj.el @@ -1,9 +1,10 @@ -;;; khoj.el --- AI personal assistant for your digital brain -*- lexical-binding: t -*- +;;; khoj.el --- AI copilot for your Second Brain -*- lexical-binding: t -*- -;; Copyright (C) 2021-2022 Debanjum Singh Solanky +;; Copyright (C) 2021-2023 Khoj Inc. -;; Author: Debanjum Singh Solanky -;; Description: An AI personal assistant for your digital brain +;; Author: Debanjum Singh Solanky +;; Saba Imran +;; Description: An AI copilot for your Second Brain ;; Keywords: search, chat, org-mode, outlines, markdown, pdf, image ;; Version: 0.12.3 ;; Package-Requires: ((emacs "27.1") (transient "0.3.0") (dash "2.19.1")) @@ -28,8 +29,8 @@ ;;; Commentary: -;; Create an AI personal assistant for your `org-mode', `markdown' notes, -;; PDFs and images. The assistant exposes 2 modes, search and chat: +;; Create an AI copilot to your `org-mode', `markdown' notes, +;; PDFs and images. The copilot exposes 2 modes, search and chat: ;; ;; Chat provides faster answers, iterative discovery and assisted ;; creativity. It requires your OpenAI API key to access GPT models diff --git a/src/interface/obsidian/package.json b/src/interface/obsidian/package.json index eb18132fe..07c471406 100644 --- a/src/interface/obsidian/package.json +++ b/src/interface/obsidian/package.json @@ -1,7 +1,9 @@ { "name": "Khoj", "version": "0.12.3", - "description": "An AI Personal Assistant for your Digital Brain", + "description": "An AI copilot for your Second Brain", + "author": "Debanjum Singh Solanky, Saba Imran ", + "license": "GPL-3.0-or-later", "main": "src/main.js", "scripts": { "dev": "node esbuild.config.mjs", @@ -14,8 +16,6 @@ "AI", "assistant" ], - "author": "Debanjum Singh Solanky", - "license": "GPL-3.0-or-later", "devDependencies": { "@types/node": "^16.11.6", "@typescript-eslint/eslint-plugin": "5.29.0",