diff --git a/harbour-sailtuner.desktop b/harbour-sailtuner.desktop index 3afc908..3845f2c 100644 --- a/harbour-sailtuner.desktop +++ b/harbour-sailtuner.desktop @@ -9,3 +9,5 @@ Name=SailTuner # # Remember to comment out the following line, if you do not want to use # a different app name in German locale (de). +Name[fr]=Accordeur +Name[en]=Tuner diff --git a/icons/108x108/harbour-sailtuner.png b/icons/108x108/harbour-sailtuner.png index a7caeb2..d21fb11 100644 Binary files a/icons/108x108/harbour-sailtuner.png and b/icons/108x108/harbour-sailtuner.png differ diff --git a/icons/128x128/harbour-sailtuner.png b/icons/128x128/harbour-sailtuner.png index 8e3f903..b2c9be0 100644 Binary files a/icons/128x128/harbour-sailtuner.png and b/icons/128x128/harbour-sailtuner.png differ diff --git a/icons/256x256/harbour-sailtuner.png b/icons/256x256/harbour-sailtuner.png index 95b07e7..786cab6 100644 Binary files a/icons/256x256/harbour-sailtuner.png and b/icons/256x256/harbour-sailtuner.png differ diff --git a/icons/86x86/harbour-sailtuner.png b/icons/86x86/harbour-sailtuner.png index 273895e..4c0f60c 100644 Binary files a/icons/86x86/harbour-sailtuner.png and b/icons/86x86/harbour-sailtuner.png differ diff --git a/images/icons_work/Misc-Note.svg b/images/icons_work/Misc-Note.svg new file mode 100644 index 0000000..2f006d2 --- /dev/null +++ b/images/icons_work/Misc-Note.svg @@ -0,0 +1,75 @@ + + + + + eighth note + + + + + + + + + + + image/svg+xml + + eighth note + + + + Jaschon + + + + + + + + + + + + + + diff --git a/images/icons_work/banniere.png b/images/icons_work/banniere.png index b37eced..605e76b 100644 Binary files a/images/icons_work/banniere.png and b/images/icons_work/banniere.png differ diff --git a/images/icons_work/banniere.xcf b/images/icons_work/banniere.xcf index 923741b..15f3d78 100644 Binary files a/images/icons_work/banniere.xcf and b/images/icons_work/banniere.xcf differ diff --git a/images/icons_work/icon.xcf b/images/icons_work/icon.xcf index a62abcd..cb195f4 100644 Binary files a/images/icons_work/icon.xcf and b/images/icons_work/icon.xcf differ diff --git a/qml/icon/ArrowOnly.qml b/qml/icon/ArrowOnly.qml index 60d8626..7d082e1 100644 --- a/qml/icon/ArrowOnly.qml +++ b/qml/icon/ArrowOnly.qml @@ -22,7 +22,10 @@ import QtQuick 2.0 */ Item { - property double lineWidth: 6 + property double lineWidth: 7 + property double r_arrow_base: 0.08 + property double r_arrow_bottom: 0.070 + /// current level property double level: 0.5  /// minimum level @@ -36,7 +39,6 @@ Item { property double r_circle_min: 0.85 property double r_circle_max: 1 - property double r_arrow_base: 0.05 property double _height: width / 2 property double amin: angle(min) @@ -166,7 +168,7 @@ Item { property double k: 0.82 property double angle: parent.angle(level) - property double r_base: 0.055 + property double r_base: parent.r_arrow_bottom property double r_circle_base: r_arrow_base * 0.6 property double k_head: 0.1 // arrow width factor of base property double lref: width / 2 diff --git a/qml/icon/Scene.qml b/qml/icon/Scene.qml index a0ffd1b..3d0b5c8 100644 --- a/qml/icon/Scene.qml +++ b/qml/icon/Scene.qml @@ -34,7 +34,10 @@ Rectangle { } ArrowOnly { level: 10 - lineWidth: 10 + lineWidth: 14 + r_arrow_base: 0.07 + r_arrow_bottom: 0.07 + anchors.fill: parent theme: theme }