Skip to content
This repository was archived by the owner on Jun 24, 2024. It is now read-only.

Commit 4d2635c

Browse files
authored
Merge pull request #31 from MemerGamer/23-implement-video-editor-gui
Resolve "Implement video editor GUI"
2 parents 5a73eb8 + 0788ba1 commit 4d2635c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+900
-79
lines changed

.config/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,7 @@
55
"name": "Catppuccin Mocha",
66
"moduleName": "catppuccin",
77
"fileName": "catppuccin-mocha.json"
8-
}
8+
},
9+
"recentProjectCreationPaths": [],
10+
"recentProjectPaths": []
911
}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"conventionalCommits.scopes": [
3+
"videoeditor",
34
"ci/cd"
45
]
56
}

docs/_static/ManimStudioLogoDark.png

100644100755
File mode changed.

docs/_static/ManimStudioLogoLight.png

100644100755
File mode changed.

docs/conf.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
import os
22
import sys
33

4-
sys.path.insert(0, os.path.abspath(".."))
4+
sys.path.insert(0, os.path.abspath("../src/core"))
5+
sys.path.insert(0, os.path.abspath("../src/ui"))
6+
7+
print("sys.path: ", sys.path)
58

69
project = "Manim Studio"
710
copyright = "Kovács Bálint-Hunor"
@@ -34,7 +37,7 @@
3437
"light_logo": "ManimStudioLogoLight.png",
3538
"dark_logo": "ManimStudioLogoDark.png",
3639
}
37-
html_favicon = "ManimStudioLogoLight.png"
40+
html_favicon = "_static/ManimStudioLogoLight.png"
3841

3942
# autodoc_mock_imports = ["main", "form_ui"]
4043
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}

docs/index.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ Welcome to ManimStudio's documentation!
1010
:maxdepth: 2
1111
:caption: Contents:
1212

13-
main
14-
form_ui
15-
settings
16-
settings_ui
13+
src/core/main
14+
src/core/settings
15+
src/core/project_creation_dialog
16+
src/core/project_opening_dialog
17+
src/ui/form_ui
18+
src/ui/settings_ui
19+
src/ui/videoeditor_ui
20+
src/ui/project_creation_dialog_ui
21+
src/ui/project_opening_dialog_ui
1722

1823
Indices and tables
1924
==================
File renamed without changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
project_creation_dialog module
2+
==============================
3+
4+
.. automodule:: project_creation_dialog
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
project_opening_dialog module
2+
==============================
3+
4+
.. automodule:: project_opening_dialog
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/settings.rst renamed to docs/src/core/settings.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
settings module
2-
==============
2+
===============
33

44
.. automodule:: settings
55
:members:

0 commit comments

Comments
 (0)