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:
33
package.json
33
package.json
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user