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.
This PR updates the names of qml files to be more consistent. Trying to follow a "Window > Screen > Section > Component" hierarchy.
The reasons for each change are mentioned below:
ThemedControls/*.qml -> Components/*.qml
The directory includes not just themed controls but also some custom components.
Launcher.qml -> MainNavigation.qml
or could be MainLayout.qmlMain front page. Shows screen as well as navigation bar.
LauncherMain.qml -> HomeScreen.qml
MinecraftNews.qml -> NewsScreen.qml
Mods.qml -> ModsScreen.qml
GameLogWindow.qml -> GameLogScreen.qml
LauncherSettingsWindow.qml -> SettingsScreen.qml
Screens that come under MainNavigation
LauncherBase.qml -> BaseScreen.qml
LauncherLogin.qml -> LoginScreen.qml
LauncherUnsupported.qml -> UnsupportedScreen.qml
LauncherChangeLog.qml -> ChangelogScreen.qml
LauncherUnlock.qml -> UnlockScreen.qml
"Launcher" seems unnecessary. Use "Screen" instead to give better context.
GampadTool.qml -> GamepadTool.qml
Small typo
EditProfileWindow.qml -> ProfileEditPopup.qml
No longer a window.
LauncherSettingsGeneral.qml -> SettingsGeneralSection.qml
LauncherSettingsStorage.qml -> SettingsStorageSection.qml
LauncherSettingsVersions.qml -> SettingsVersionsSection.qml
LauncherSettingsDev.qml -> SettingsDevSection.qml
LauncherSettingsAbout.qml -> SettingsAboutSection.qml
Use "Section" to imply that it comes under a screen.