bring back the beta release warning for users new to 5.x-preN
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 5 Jun 2016 19:48:01 +0000 (15:48 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 5 Jun 2016 20:33:01 +0000 (16:33 -0400)
gtk2_ardour/startup.cc
gtk2_ardour/startup.h

index ed0cd885cb4a3f0edadf809464e681edb7db088e..335192f91bba8f9e3d844c8f2cee077b49042fd7 100644 (file)
@@ -103,6 +103,7 @@ ArdourStartup::ArdourStartup ()
                set_default_icon_list (window_icons);
        }
 
+       setup_prerelease_page ();
        setup_new_user_page ();
        setup_first_time_config_page ();
        setup_monitoring_choice_page ();
@@ -138,6 +139,41 @@ ArdourStartup::required ()
        return true;
 }
 
+void
+ArdourStartup::setup_prerelease_page ()
+{
+        VBox* vbox = manage (new VBox);
+        Label* label = manage (new Label);
+        label->set_markup (string_compose (_("<b>Welcome to this build of %1 %2</b>\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\
+1) Please do <b>NOT</b> use this software with the expectation that it is stable or reliable\n\
+   though it may be so, depending on your workflow.\n\
+2) Please wait for a helpful writeup of new features.\n\
+3) <b>Please do NOT use the forums at ardour.org to report issues</b>.\n\
+4) Please <b>DO</b> use the bugtracker at http://tracker.ardour.org/ to report issues\n\
+   making sure to note the product version number as 3.0-beta.\n\
+5) Please <b>DO</b> use the ardour-users mailing list to discuss ideas and pass on comments.\n\
+6) Please <b>DO</b> join us on IRC for real time discussions about %1 %2. You\n\
+   can get there directly from within the program via the Help->Chat menu option.\n\
+\n\
+Full information on all the above can be found on the support page at\n\
+\n\
+                http://ardour.org/support\n\
+"), PROGRAM_NAME, VERSIONSTRING));
+
+        vbox->set_border_width (12);
+        vbox->pack_start (*label, false, false, 12);
+        vbox->show_all ();
+
+        append_page (*vbox);
+        set_page_type (*vbox, ASSISTANT_PAGE_CONTENT);
+        set_page_title (*vbox, _("This is a BETA RELEASE"));
+       set_page_complete (*vbox, true);
+}
+
 void
 ArdourStartup::setup_new_user_page ()
 {
index 74e0aee6b8835471ad861b5b819f1661dff292c0..e27b1c14ed0b424115b609aedbe05b0eabf3a7be 100644 (file)
@@ -69,6 +69,7 @@ class ArdourStartup : public Gtk::Assistant {
 
        Glib::RefPtr<Gdk::Pixbuf> icon_pixbuf;
 
+       void setup_prerelease_page ();
        void setup_new_user_page ();
        Glib::RefPtr<Gdk::Pixbuf> splash_pixbuf;
        Gtk::DrawingArea splash_area;