qt: rename `NoMedialibHome.qml` to `HomePage.qml`
MainInterface
module should never refer to the
MediaLibrary
module, because MediaLibrary
module already depends on MainInterface
.
This is also the case when it comes to naming
things, and not only cyclic imports. In other
words, MainInterface
should not be aware of
the existence of MediaLibrary
(or any other
modules that depend on MainInterface
).
Now, HomePage
of MediaLibrary
module continues
to refer to the new media library home page, while
HomePage
of MainInterface
module refers to
the old non-media library home page.
I previously mentioned my plan to do this in !5890 (merged).
Request review @chub.
@tvermaashutosh feel free to comment on this, I tested it, but maybe there is more to it.