Skip to content

Commit

Permalink
This is a draft PR. It reflects a lot of major new ui redesign work that
Browse files Browse the repository at this point in the history
follows the new FIGMA design made by Vincent. It also contains a lot of
changes to the way localdocs works.

This is now rebased on top of main and conflicts resolved. This is still
a monolithic commit that needs to be broken up into smaller pieces in order
to aid proper review. I'll be working on that now and force pushing as I
do so.

Signed-off-by: Adam Treat <treat.adam@gmail.com>
  • Loading branch information
manyoso committed May 9, 2024
1 parent 42615ea commit c7b0812
Show file tree
Hide file tree
Showing 20 changed files with 2,593 additions and 1,372 deletions.
8 changes: 6 additions & 2 deletions gpt4all-chat/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,20 @@ qt_add_qml_module(chat
qml/ChatDrawer.qml
qml/ChatView.qml
qml/CollectionsDialog.qml
qml/ModelDownloaderDialog.qml
qml/HomeView.qml
qml/ModelDownloaderView.qml
qml/NetworkDialog.qml
qml/NewVersionDialog.qml
qml/ThumbsDownDialog.qml
qml/SettingsDialog.qml
qml/SettingsView.qml
qml/StartupDialog.qml
qml/PopupDialog.qml
qml/AboutDialog.qml
qml/Theme.qml
qml/ModelSettings.qml
qml/ApplicationSettings.qml
qml/LocalDocsSettings.qml
qml/LocalDocsView.qml
qml/SwitchModelDialog.qml
qml/MySettingsTab.qml
qml/MySettingsStack.qml
Expand All @@ -126,12 +128,14 @@ qt_add_qml_module(chat
qml/MyComboBox.qml
qml/MyDialog.qml
qml/MyDirectoryField.qml
qml/MyFancyLink.qml
qml/MyTextArea.qml
qml/MyTextField.qml
qml/MyCheckBox.qml
qml/MyBusyIndicator.qml
qml/MyMiniButton.qml
qml/MyToolButton.qml
qml/MyWelcomeButton.qml
RESOURCES
icons/send_message.svg
icons/stop_generating.svg
Expand Down
2 changes: 2 additions & 0 deletions gpt4all-chat/download.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ ReleaseInfo Download::releaseInfo() const
const QString currentVersion = QCoreApplication::applicationVersion();
if (m_releaseMap.contains(currentVersion))
return m_releaseMap.value(currentVersion);
if (!m_releaseMap.empty())
return m_releaseMap.last();
return ReleaseInfo();
}

Expand Down

0 comments on commit c7b0812

Please sign in to comment.