1
0

Add settings dialog for Sky Mode and Skip Prompt, update main HTML and script

- Created `settings.html` with a dialog for adjusting settings related to Sky Mode and Skip Prompt.
- Updated `main.html` to include context menus for folder operations.
- Enhanced `main.js` with functionality to handle settings changes, apply Sky Mode, and add copy-to-clipboard feature for diffs.

This commit message was automatically generated by auto-git
This commit is contained in:
2025-05-23 19:36:42 +02:00
parent 1f046d17b5
commit 134a3b7f27
11 changed files with 595 additions and 70 deletions

View File

@@ -1,16 +1,41 @@
{
"name": "auto-git",
"productName": "Auto-Git",
"name": "Auto-Git",
"description": "Auto-Git: Git-Surveillance with automatic LLM-Commit-Message and README.md compilation",
"version": "1.0.0",
"author": "Victor Giers",
"main": "main.js",
"scripts": {
"start": "electron ."
"start": "electron .",
"dist": "electron-builder"
},
"build": {
"appId": "com.deinname.auto-git",
"productName": "Auto-Git",
"files": [
"**/*"
],
"directories": {
"buildResources": "assets/icon"
},
"mac": {
"icon": "mac/icon.icns"
},
"win": {
"icon": "win/icon.ico"
},
"linux": {
"icon": "linux/icon.png"
}
},
"dependencies": {
"chokidar": "^4.0.3",
"electron-store": "^8.2.0",
"simple-git": "^3.20.0"
"simple-git": "^3.20.0",
"suncalc": "^1.9.0"
},
"devDependencies": {
"electron": "^25.0.0"
"electron": "^25.0.0",
"electron-builder": "^26.0.12"
}
}