Skip to content

Feat: Project Hub Basics #399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Editor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows")
TARGET Editor POST_BUILD
# ++ QT 6.9.1 Temporal Fix Start
# #see https://bugreports.qt.io/browse/QTBUG-137542
# NOTICE: seems cause some error on debug config, like render process crash after hover a remote link, please use DebugWithRelease before official fix at 6.9.2
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${QT_LIB_PREFIX}/resources/qtwebengine_devtools_resources.pak ${QT_LIB_PREFIX}/resources/qtwebengine_devtools_resources.debug.pak
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${QT_LIB_PREFIX}/resources/qtwebengine_resources.pak ${QT_LIB_PREFIX}/resources/qtwebengine_resources.debug.pak
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${QT_LIB_PREFIX}/resources/qtwebengine_resources_100p.pak ${QT_LIB_PREFIX}/resources/qtwebengine_resources_100p.debug.pak
Expand Down
4 changes: 2 additions & 2 deletions Editor/Src/Widget/ProjectHub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Editor {
ProjectHub::ProjectHub(QWidget* inParent)
: WebWidget(inParent)
{
// TODO
Load("/");
setFixedSize(800, 600);
Load("/project-hub");
}
} // namespace Editor
50 changes: 0 additions & 50 deletions Editor/Web/README.md

This file was deleted.

6 changes: 6 additions & 0 deletions Editor/Web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@
"@heroui/code": "^2.2.18",
"@heroui/dropdown": "^2.3.24",
"@heroui/input": "^2.4.25",
"@heroui/breadcrumbs": "^2.2.20",
"@heroui/avatar": "^2.2.20",
"@heroui/kbd": "^2.2.19",
"@heroui/link": "^2.2.21",
"@heroui/tabs": "^2.2.21",
"@heroui/navbar": "^2.2.22",
"@heroui/snippet": "^2.2.25",
"@heroui/form": "^2.1.24",
"@heroui/switch": "^2.2.22",
"@heroui/chip": "^2.2.20",
"@heroui/user": "^2.2.20",
"@heroui/system": "^2.4.20",
"@heroui/theme": "^2.4.20",
"@heroui/use-theme": "2.1.10",
Expand Down
Binary file added Editor/Web/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 2 additions & 11 deletions Editor/Web/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
import { Route, Routes } from "react-router-dom";

import IndexPage from "@/pages/index";
import DocsPage from "@/pages/docs";
import PricingPage from "@/pages/pricing";
import BlogPage from "@/pages/blog";
import AboutPage from "@/pages/about";
import ProjectHubPage from "@/pages/project-hub";

function App() {
return (
<Routes>
<Route element={<IndexPage />} path="/" />
<Route element={<DocsPage />} path="/docs" />
<Route element={<PricingPage />} path="/pricing" />
<Route element={<BlogPage />} path="/blog" />
<Route element={<AboutPage />} path="/about" />
<Route element={<ProjectHubPage/>} path="/project-hub"/>
</Routes>
);
}
Expand Down
186 changes: 0 additions & 186 deletions Editor/Web/src/components/icons.tsx

This file was deleted.

Loading
Loading