From 5314311e78a3ce1c6fc41f64ed8a2ce55e33222e Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 11 Nov 2011 20:09:14 +0000 Subject: [PATCH] prep for beta1 git-svn-id: svn://localhost/ardour2/branches/3.0@10554 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/startup.cc | 10 +++++----- gtk2_ardour/startup.h | 2 +- wscript | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gtk2_ardour/startup.cc b/gtk2_ardour/startup.cc index 77afb0fa17..a7bce0a847 100644 --- a/gtk2_ardour/startup.cc +++ b/gtk2_ardour/startup.cc @@ -125,7 +125,7 @@ Ardour will play NO role in monitoring")) bool need_audio_setup = !EngineControl::engine_running(); - setup_alpha_page (); + setup_prerelease_page (); if (new_user) { @@ -172,12 +172,12 @@ ArdourStartup::~ArdourStartup () } void -ArdourStartup::setup_alpha_page () +ArdourStartup::setup_prerelease_page () { VBox* vbox = manage (new VBox); Label* label = manage (new Label); - label->set_markup (_("Welcome to this ALPHA release of Ardour 3.0\n\n\ -There are still many issues and bugs to be worked on,\n\ + label->set_markup (_("Welcome to this BETA release of Ardour 3.0\n\n\ +There are still several issues and bugs to be worked on,\n\ as well as general workflow improvements, before this can be considered\n\ release software. So, a few guidelines:\n\ \n\ @@ -202,7 +202,7 @@ Full information on all the above can be found on the support page at\n\ append_page (*vbox); set_page_type (*vbox, ASSISTANT_PAGE_CONTENT); - set_page_title (*vbox, _("This is an ALPHA RELEASE")); + set_page_title (*vbox, _("This is an BETA RELEASE")); set_page_complete (*vbox, true); } diff --git a/gtk2_ardour/startup.h b/gtk2_ardour/startup.h index a7f1517f41..052a168a37 100644 --- a/gtk2_ardour/startup.h +++ b/gtk2_ardour/startup.h @@ -292,7 +292,7 @@ class ArdourStartup : public Gtk::Assistant { void move_along_now (); bool _existing_session_chooser_used; ///< set to true when the existing session chooser has been used - void setup_alpha_page (); + void setup_prerelease_page (); }; #endif /* __gtk2_ardour_startup_h__ */ diff --git a/wscript b/wscript index 90aa9d425b..2a5d4b2790 100644 --- a/wscript +++ b/wscript @@ -8,7 +8,7 @@ import subprocess import sys # Variables for 'waf dist' -VERSION = '3.0alpha10' +VERSION = '3.0beta1' APPNAME = 'Ardour' # Mandatory variables