Changed the application name

preferencesAboutTextFull
shibakaneki 13 years ago
parent c7cbce3099
commit 517541fa1e
  1. 2
      Sankore_3.1.pro
  2. 8
      release.linux.sh
  3. 8
      release.macx.sh
  4. 2
      src/core/UBSettings.cpp
  5. 2
      src/core/main.cpp
  6. 2
      src/frameworks/UBDesktopServices_mac.cpp
  7. 2
      src/transition/UniboardSankoreTransition.cpp

@ -1,4 +1,4 @@
TARGET = "Sankore 3.1"
TARGET = "Sankore"
TEMPLATE = app
THIRD_PARTY_PATH=../Sankore-ThirdParty

@ -46,8 +46,8 @@ else
LAST_COMMITED_VERSION="`git describe $(git rev-list --tags --max-count=1)`"
if [ "v$VERSION" != "$LAST_COMMITED_VERSION" ]; then
echo creating a tag with the version $VERSION
# git tag -a "v$VERSION" -m "Generating setup for v$VERSION"
# git push origin --tags
git tag -a "v$VERSION" -m "Generating setup for v$VERSION"
git push origin --tags
fi
fi
@ -93,10 +93,10 @@ copyQtLibrary libQtCore
rm -rf install/linux
mkdir -p install/linux
mv build/linux/release/product build/linux/release/Sankore_3.1.$VERSION
mv build/linux/release/product build/linux/release/Sankore.$VERSION
cd build/linux/release
# "Removing .svn directories ..."
find . -name .svn -exec rm -rf {} \; 2> /dev/null
tar cvzf ../../../install/linux/Sankore\ 3.1.tar.gz Sankore_3.1.$VERSION -C .
tar cvzf ../../../install/linux/Sankore.tar.gz Sankore.$VERSION -C .
echo "Build Finished"

@ -103,11 +103,11 @@ if [ $? != 0 ]; then
fi
NAME="Sankore 3.1"
NAME="Sankore"
DMG="$NAME.dmg"
VOLUME="/Volumes/$NAME"
APP="$PRODUCT_DIR/Sankore 3.1.app"
APP="$PRODUCT_DIR/Sankore.app"
DSYM_NAME="$NAME (r$SVN_REVISION).dSYM"
DSYM="$PRODUCT_DIR/$DSYM_NAME"
GSYM_i386="$PRODUCT_DIR/$NAME i386.sym"
@ -128,8 +128,8 @@ notify "Bulding frameworks ..."
$MACDEPLOYQT "$APP"
notify "Extracting debug information ..."
$DSYMUTIL "$APP/Contents/MacOS/Sankore 3.1" -o "$DSYM"
$STRIP -S "$APP/Contents/MacOS/Sankore 3.1"
$DSYMUTIL "$APP/Contents/MacOS/Sankore" -o "$DSYM"
$STRIP -S "$APP/Contents/MacOS/Sankore"
notify "Creating dmg ..."
umount "$VOLUME" 2> /dev/null

@ -756,7 +756,7 @@ QString UBSettings::uniboardDataDirectory()
}
}
QString qtDataPath = UBFileSystemUtils::normalizeFilePath(UBDesktopServices::storageLocation(QDesktopServices::DataLocation));
qtDataPath.replace("/Sankore 3.1", "");
qtDataPath.replace("/Sankore", "");
return qtDataPath;
}

@ -88,7 +88,7 @@ int main(int argc, char *argv[])
QApplication::setGraphicsSystem("raster");
#endif
UBApplication app("Sankore 3.1", argc, argv);
UBApplication app("Sankore", argc, argv);
//BUGFIX:
//when importing a sankore file that contains a non standard character

@ -96,7 +96,7 @@ QString UBDesktopServices::storageLocation(StandardLocation type)
QString path = getFullPath(ref);
if (QDesktopServices::DataLocation == type || QDesktopServices::CacheLocation == type)
path += "/Sankore/Sankore 3.1";
path += "/Sankore/Sankore";
return path;
}

@ -31,7 +31,7 @@ UniboardSankoreTransition::UniboardSankoreTransition(QObject *parent) :
mUniboardSourceDirectory = UBFileSystemUtils::normalizeFilePath(UBDesktopServices::storageLocation(QDesktopServices::DataLocation));
#if defined(Q_WS_MACX)
mOldSankoreDirectory.replace("Sankore/Sankore 3.1", "Sankore 3.1");
mOldSankoreDirectory.replace("Sankore/Sankore 3.1", "Sankore");
mUniboardSourceDirectory.replace("Sankore/Sankore 3.1", "Uniboard");
#else
mUniboardSourceDirectory.replace("Sankore/Sankore 3.1", "Mnemis/Uniboard");

Loading…
Cancel
Save