X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Fwx%2Fabout_dialog.cc;h=9ec41d7d36d3702f44d0877e3407ba9d266a7e80;hp=d5a3697918c9828bc6662247031242c2487dba7e;hb=f10e025eba54b0ab4dbe1b3611071b160ca89208;hpb=d5804f33fbd01d104ed2b04400992ef32b81cf49 diff --git a/src/wx/about_dialog.cc b/src/wx/about_dialog.cc index d5a369791..9ec41d7d3 100644 --- a/src/wx/about_dialog.cc +++ b/src/wx/about_dialog.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2019 Carl Hetherington + Copyright (C) 2013-2020 Carl Hetherington This file is part of DCP-o-matic. @@ -74,14 +74,14 @@ AboutDialog::AboutDialog (wxWindow* parent) wxHyperlinkCtrl* h = new wxHyperlinkCtrl ( this, wxID_ANY, wxT ("dcpomatic.com"), - wxT ("http://dcpomatic.com") + wxT ("https://dcpomatic.com") ); sizer->Add (h, wxSizerFlags().Centre().Border(wxALL, 8)); t = new StaticText ( this, - _("(C) 2012-2019 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"), + _("(C) 2012-2020 Carl Hetherington, Terrence Meiczinger\n Ole Laursen, Brecht Sanders"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTER ); @@ -141,6 +141,12 @@ AboutDialog::AboutDialog (wxWindow* parent) translated_by.Add (wxT ("Gökhan Aksoy")); add_section (_("Translated by"), translated_by); + wxArrayString patrons; + patrons.Add ("Luproduction"); + patrons.Add ("Lightbender Post"); + patrons.Add ("Drop-out Cinema"); + add_section (_("Patrons"), patrons); + wxArrayString subscribers; #include "subscribers.cc" add_section (_("Subscribers"), subscribers);