Change name and bump version
This commit is contained in:
parent
612c18ac28
commit
59296dd22c
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -12,7 +12,7 @@ build
|
|||
dist
|
||||
.qmake.stash
|
||||
Makefile
|
||||
harmonyqml
|
||||
harmonyqml.pro.user
|
||||
mirage
|
||||
mirage.pro.user
|
||||
|
||||
tags
|
||||
|
|
4
.gitmodules
vendored
4
.gitmodules
vendored
|
@ -1,15 +1,19 @@
|
|||
[submodule "submodules/qsyncable"]
|
||||
path = submodules/qsyncable
|
||||
url = https://github.com/benlau/qsyncable
|
||||
|
||||
[submodule "submodules/RadialBarDemo"]
|
||||
path = submodules/RadialBarDemo
|
||||
url = https://github.com/mirukan/RadialBarDemo/
|
||||
|
||||
[submodule "submodules/hsluv-c"]
|
||||
path = submodules/hsluv-c
|
||||
url = https://github.com/hsluv/hsluv-c
|
||||
|
||||
[submodule "submodules/gel"]
|
||||
path = submodules/gel
|
||||
url = https://github.com/Cutehacks/gel
|
||||
|
||||
[submodule "submodules/SortFilterProxyModel"]
|
||||
path = submodules/SortFilterProxyModel
|
||||
url = https://github.com/oKcerG/SortFilterProxyModel
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# harmonyqml
|
||||
# Mirage
|
||||
|
||||
|
||||
## Dependencies setup
|
||||
|
@ -50,10 +50,10 @@ Optional dependency for performance improvements:
|
|||
## Building
|
||||
|
||||
git clone --recursive <TODO>
|
||||
cd harmonyqml
|
||||
qmake harmonyqml.pro && make && sudo make install
|
||||
cd mirage
|
||||
qmake mirage.pro && make && sudo make install
|
||||
|
||||
After this if no errors happened, run `harmonyqml`.
|
||||
After this if no errors happened, run `mirage`.
|
||||
|
||||
If you get a version mismatch error related to cffi, try:
|
||||
|
||||
|
|
3
TODO.md
3
TODO.md
|
@ -3,8 +3,7 @@
|
|||
## Before release
|
||||
|
||||
- nio ClientTimeout
|
||||
- Default theme?
|
||||
- Name
|
||||
- Config file format?
|
||||
- Update docstrings
|
||||
- Update TODO.md
|
||||
- Update README.md
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
export QT_QPA_PLATFORM=xcb
|
||||
|
||||
make clean
|
||||
qmake harmonyqml.pro CONFIG+=dev && make
|
||||
qmake mirage.pro CONFIG+=dev && make
|
||||
|
||||
while true; do
|
||||
find src harmonyqml.pro -type f |
|
||||
find src mirage.pro -type f |
|
||||
# -name affects the first part of the WM_CLASS returned by xprop on Linux
|
||||
entr -cdnr sh -c \
|
||||
"qmake harmonyqml.pro CONFIG+=dev && make && ./harmonyqml -name dev $*"
|
||||
"qmake mirage.pro CONFIG+=dev && make && ./mirage -name dev $*"
|
||||
sleep 0.2
|
||||
done
|
||||
|
|
|
@ -18,7 +18,7 @@ HEADERS += src/utils.h src/clipboard.h \
|
|||
SOURCES += src/main.cpp src/utils.cpp src/clipboard.cpp \
|
||||
submodules/RadialBarDemo/radialbar.cpp \
|
||||
submodules/hsluv-c/src/hsluv.c
|
||||
TARGET = harmonyqml
|
||||
TARGET = mirage
|
||||
|
||||
|
||||
# Custom CONFIG options
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
"""This package provides a Python backend accessible from the QML UI side."""
|
||||
|
||||
__app_name__ = "harmonyqml"
|
||||
__display_name__ = "Harmony QML"
|
||||
__version__ = "0.3.0"
|
||||
__app_name__ = "mirage"
|
||||
__display_name__ = "Mirage"
|
||||
__version__ = "0.4.0"
|
||||
|
|
|
@ -17,10 +17,10 @@
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
// Define some basic info about the app before creating the QApplication
|
||||
QApplication::setOrganizationName("harmonyqml");
|
||||
QApplication::setApplicationName("harmonyqml");
|
||||
QApplication::setApplicationDisplayName("HarmonyQML");
|
||||
QApplication::setApplicationVersion("0.3.0");
|
||||
QApplication::setOrganizationName("mirage");
|
||||
QApplication::setApplicationName("mirage");
|
||||
QApplication::setApplicationDisplayName("Mirage");
|
||||
QApplication::setApplicationVersion("0.4.0");
|
||||
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||
QApplication app(argc, argv);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user