Skip to content

Commit

Permalink
feat: config builder and change send shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
jefersonapps committed Jul 12, 2024
1 parent 0038314 commit f1d9eb7
Show file tree
Hide file tree
Showing 13 changed files with 3,408 additions and 585 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
node_modules/
build/
29 changes: 29 additions & 0 deletions electron-builder.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"productName": "Llama Chat",
"appId": "com.jefersonapps.llama-chat",
"copyright": "Copyright © 2024 Jeferson Nunes",
"directories": {
"output": "build"
},
"win": {
"target": ["nsis"],
"icon": "icons/512x512.png"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"installerIcon": "icons/512x512.png",
"installerHeaderIcon": "icons/512x512.png",
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"linux": {
"target": ["deb", "AppImage"],
"category": "Utility",
"icon": "icons"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "icons/512x512.png"
}
}
Binary file added icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@
id="prompt"
placeholder="Faça uma pergunta..."
></textarea>
<button disabled id="submit-btn" type="submit" title="Enviar">
<button
disabled
id="submit-btn"
type="submit"
title="Enviar (Ctrl + Enter)"
>
<img id="send-icon" src="./assets/send.svg" alt="Enviar" />

<span class="loader hidden" id="loading"> </span>
Expand Down
Loading

0 comments on commit f1d9eb7

Please sign in to comment.