Refactor/Update welcome window UI and recent projects flow#205
Open
kykyrudza wants to merge 6 commits into
Open
Refactor/Update welcome window UI and recent projects flow#205kykyrudza wants to merge 6 commits into
kykyrudza wants to merge 6 commits into
Conversation
Bump sccache to version 0.0.10 and update CI workflow
Removed a bug task and a long-term task from the roadmap.
Removed a bug task and a long-term task from the roadmap.
faketri33
reviewed
May 13, 2026
Comment on lines
+35
to
+48
| QFile file(getDefaultPathLocation()); | ||
|
|
||
| if (!file.exists()) { | ||
| return projects; | ||
| } | ||
|
|
||
| if (!file.open(QIODevice::ReadOnly)) { | ||
| return projects; | ||
| } | ||
|
|
||
| const auto data = file.readAll(); | ||
| file.close(); | ||
|
|
||
| const auto document = QJsonDocument::fromJson(data); |
Contributor
There was a problem hiding this comment.
File Manager can work with json files. Why u don't use him?
Contributor
|
You've opened a pull request from the master branch to the dev branch and hijacked someone else's commits. Switch to the dev branch and use Do not change file naming signatures in the project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
English
Summary
This PR updates the Welcome Window design, restructures the project selection flow, and improves how recent projects are stored globally.
What Changed
WelcomeFormRecentProjectsPageCreateProjectPageProjectCardwelcome.qssstylesheet for Welcome Window-specific styling.Why
The old Welcome Window kept project selection, project creation, validation, and history rendering in one class, while recent project history only stored basic path data. The new structure makes the UI easier to maintain, gives users a clearer project selection experience, and stores richer project metadata in a global JSON history file.
Screenshots
Before:
After:
Русский
Кратко
Этот PR обновляет дизайн Welcome Window, перерабатывает поток выбора проекта и улучшает глобальное хранение недавних проектов.
Что изменено
WelcomeFormRecentProjectsPageCreateProjectPageProjectCardwelcome.qssдля стилей Welcome Window.Зачем
Раньше выбор проекта, создание проекта, валидация и отображение истории находились в одном классе, а история недавних проектов хранила только базовые данные о путях. Новая структура упрощает поддержку кода, делает стартовое окно более информативным для пользователя и сохраняет больше данных о проектах в глобальном JSON-файле.
Скриншоты
До:
После: