From de12d75606351da15c02acf560fa605108b1e88e Mon Sep 17 00:00:00 2001
From: Benjamin Nauck <benjamin.nauck@gmail.com>
Date: Tue, 12 Jan 2016 00:16:48 +0100
Subject: [PATCH] Make 'V' in "Valentina" upper case on osx

This will change:
 * the filename of the application to "Valentina.app",
 * the name in the menubar to "Valentina", and
 * the about item so it says "About Valentina" instead of "About valentina"

Almost every application on OS X capitalizes their name. The only exceptions on my computer are apple's i-products (but there the second letter is upper case instead)

--HG--
branch : feature
---
 src/app/valentina/valentina.pro | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/app/valentina/valentina.pro b/src/app/valentina/valentina.pro
index 70937f11b..aa8700e03 100644
--- a/src/app/valentina/valentina.pro
+++ b/src/app/valentina/valentina.pro
@@ -17,7 +17,11 @@ QT       += core gui widgets xml svg printsupport xmlpatterns
 TEMPLATE = app
 
 # Name of binary file
-TARGET = valentina
+macx{
+    TARGET = Valentina
+} else {
+    TARGET = valentina
+}
 
 # Use out-of-source builds (shadow builds)
 CONFIG -= debug_and_release debug_and_release_target