Skip to content
Snippets Groups Projects
Commit 2ca34d4e authored by SeeLook's avatar SeeLook
Browse files

Jumped to 1.2A.7 for pre-release, unlocked logging to file

parent f561f595
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ SET(Nootka_VERSION_MAJOR "1") ...@@ -10,7 +10,7 @@ SET(Nootka_VERSION_MAJOR "1")
SET(Nootka_VERSION_MINOR "3") SET(Nootka_VERSION_MINOR "3")
SET(Nootka_VERSION_PATCH "0-alpha") SET(Nootka_VERSION_PATCH "0-alpha")
set(Nootka_ANDROID_VERSION "1.2A.6-rc2") set(Nootka_ANDROID_VERSION "1.2A.7")
SET(Nootka_VERSION "${Nootka_VERSION_MAJOR}.${Nootka_VERSION_MINOR}") SET(Nootka_VERSION "${Nootka_VERSION_MAJOR}.${Nootka_VERSION_MINOR}")
SET(Nootka_VERSION_FULL "${Nootka_VERSION}.${Nootka_VERSION_PATCH}") SET(Nootka_VERSION_FULL "${Nootka_VERSION}.${Nootka_VERSION_PATCH}")
......
1.2A.7
ANDROID ANDROID
- handle pinch gesture to zoom score in/out - handle pinch gesture to zoom score in/out
- application can restart itself to restore initial settings - application can restart itself to restore initial settings
......
#if defined (Q_OS_ANDROID) #if defined (Q_OS_ANDROID)
#define NOOTKA_VERSION "1.2A.6-rc2" #define NOOTKA_VERSION "1.2A.7"
#else #else
#define NOOTKA_VERSION "1.3.0-alpha" #define NOOTKA_VERSION "1.3.0-alpha"
#endif #endif
......
...@@ -544,8 +544,8 @@ int TfingerBoard::fretPositionX(int fretNr) { ...@@ -544,8 +544,8 @@ int TfingerBoard::fretPositionX(int fretNr) {
//################################################################################################ //################################################################################################
void TfingerBoard::setTune() { void TfingerBoard::setTune() {
for (int i = 0; i < Tcore::gl()->Gtune()->stringNr(); i++) { for (quint8 i = 0; i < Tcore::gl()->Gtune()->stringNr(); i++) {
if (Tcore::gl()->Gtune()->str(i + 1.5).chromatic() > 14) { // highest than cis1 if (Tcore::gl()->Gtune()->str(i + 1).chromatic() > 14) { // highest than cis1
m_strColors[i] = QColor(255, 255, 255, 125); // are nylon m_strColors[i] = QColor(255, 255, 255, 125); // are nylon
m_widthFromPitch[i] = 2; // and thinner m_widthFromPitch[i] = 2; // and thinner
} else if (Tcore::gl()->Gtune()->str(i + 1).chromatic() > 10) { // highest than gis } else if (Tcore::gl()->Gtune()->str(i + 1).chromatic() > 10) { // highest than gis
......
...@@ -62,8 +62,8 @@ int main(int argc, char *argv[]) ...@@ -62,8 +62,8 @@ int main(int argc, char *argv[])
if (QFile::exists(logFile)) if (QFile::exists(logFile))
QFile::remove(logFile); QFile::remove(logFile);
} }
// qInstallMessageHandler(myMessageOutput); qInstallMessageHandler(myMessageOutput);
// qDebug() << "==== NOOTKA LOG =======\n" << QDateTime::currentDateTime().toString(); qDebug() << "==== NOOTKA LOG =======\n" << QDateTime::currentDateTime().toString();
#endif #endif
QTranslator qtTranslator; QTranslator qtTranslator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment