Fix bug with startup order and new logos.
BIN
icons/logo-128.png
Normal file
After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 493 B After Width: | Height: | Size: 903 B |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 9.0 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 34 KiB |
4
main.qml
@ -56,13 +56,13 @@ Window {
|
||||
}
|
||||
|
||||
// check for any current models and if not, open download dialog
|
||||
if (LLM.modelList.length === 0) {
|
||||
if (LLM.modelList.length === 0 && !firstStartDialog.opened) {
|
||||
downloadNewModels.open();
|
||||
return;
|
||||
}
|
||||
|
||||
// check for new version
|
||||
if (Download.hasNewerRelease) {
|
||||
if (Download.hasNewerRelease && !firstStartDialog.opened && !downloadNewModels.opened) {
|
||||
newVersionDialog.open();
|
||||
return;
|
||||
}
|
||||
|