Skip to content

Commit

Permalink
prepare release of 2.0 beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Dec 22, 2014
1 parent 38f9b05 commit a925ae0
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ REVISION = `cat mscore/revision.h`
CPUS = `grep -c processor /proc/cpuinfo`

PREFIX = "/usr/local"
VERSION = "2.0b-${REVISION}"
#VERSION = 2.0
#VERSION = "2.0b-${REVISION}"
VERSION = 2.0beta2

#
# change path to include your Qt5 installation
Expand Down
4 changes: 3 additions & 1 deletion Makefile.mingw
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@


REVISION = $(shell type mscore\revision.h)
VERSION = 2.0b-${REVISION}
#VERSION = 2.0b-${REVISION}
VERSION = 2.0beta2

CPUS = 1

release:
Expand Down
3 changes: 2 additions & 1 deletion Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
#=============================================================================

REVISION = `cat mscore/revision.h`
VERSION = "2.0b-${REVISION}"
#VERSION = "2.0b-${REVISION}"
VERSION = 2.0beta2

PREFIX=../applebuild

Expand Down
2 changes: 1 addition & 1 deletion build/packaging/WIX.template.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Product Id="$(var.CPACK_WIX_PRODUCT_GUID)"
Name="$(var.ProdName)"
Language="1033"
Version="$(var.CPACK_PACKAGE_VERSION)"
Version="1.96.0"
Manufacturer="$(var.CPACK_PACKAGE_VENDOR)"
UpgradeCode="$(var.CPACK_WIX_UPGRADE_GUID)">

Expand Down
6 changes: 3 additions & 3 deletions mscore/musescore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4451,14 +4451,14 @@ int main(int argc, char* av[])
f.close();

#ifdef Q_OS_MAC
MuseScoreApplication* app = new MuseScoreApplication("mscore-dev", argc, av);
MuseScoreApplication* app = new MuseScoreApplication("mscore2", argc, av);
#else
QtSingleApplication* app = new QtSingleApplication("mscore-dev", argc, av);
QtSingleApplication* app = new QtSingleApplication("mscore2", argc, av);
#endif

QCoreApplication::setOrganizationName("MuseScore");
QCoreApplication::setOrganizationDomain("musescore.org");
QCoreApplication::setApplicationName("MuseScoreDevelopment");
QCoreApplication::setApplicationName("MuseScore2");
QAccessible::installFactory(AccessibleScoreView::ScoreViewFactory);
Q_INIT_RESOURCE(zita);
Q_INIT_RESOURCE(noeffect);
Expand Down
2 changes: 1 addition & 1 deletion mscore/musescore.h
Original file line number Diff line number Diff line change
Expand Up @@ -388,10 +388,10 @@ class MuseScore : public QMainWindow, public MuseScoreCore {
void startDebugger();
void midiinToggled(bool);
void undoRedo(bool undo);
void showPlayPanel(bool);
void showPalette(bool);
void showInspector(bool);
void showOmrPanel(bool);
void showPlayPanel(bool);
void showNavigator(bool);
void showMixer(bool);
void showSynthControl(bool);
Expand Down
4 changes: 2 additions & 2 deletions mscore/updatechecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void UpdateChecker::check(QString rev, bool m)
#if defined(Q_OS_MAC)
os = "mac";
#endif
if(qApp->applicationName() == "MuseScore"){ //avoid nightly cymbals
if(qApp->applicationName() == "MuseScore2"){ //avoid nightly cymbals
if(MuseScore::unstable()){
release = "pre";
}else{
Expand All @@ -135,7 +135,7 @@ void UpdateChecker::check(QString rev, bool m)
int UpdateChecker::defaultPeriod()
{
int result = 24;
if(qApp->applicationName() == "MuseScore"){ //avoid nightly cymbals
if(qApp->applicationName() == "MuseScore2"){ //avoid nightly cymbals
if(MuseScore::unstable()){
result = 24;
}else{
Expand Down

0 comments on commit a925ae0

Please sign in to comment.