diff options
| author | Leo <leowzukw@vmail.me> | 2016-04-07 15:10:33 (GMT) |
|---|---|---|
| committer | Leo <leowzukw@vmail.me> | 2016-04-07 15:10:33 (GMT) |
| commit | c759b62809d363a61c6f4dba83d483fdfdfe3d49 (patch) | |
| tree | cf3b963696b5769c068c0c16464b9902a5541c28 | |
| parent | ac8350966dc03034f09689e127ecd80fc64a2a44 (diff) | |
| download | oclaunch-c759b62809d363a61c6f4dba83d483fdfdfe3d49.zip oclaunch-c759b62809d363a61c6f4dba83d483fdfdfe3d49.tar.gz | |
Improve welcome message
+ Use a common address for feedback (not linked to me).
+ Remind that a mailing list exists to get latest version.
| -rw-r--r-- | src/file_com.ml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/file_com.ml b/src/file_com.ml index b83e430..3594a78 100644 --- a/src/file_com.ml +++ b/src/file_com.ml @@ -61,8 +61,12 @@ let rc_template () = * exist *) let create_rc_file ~name = (* Notify that we initialise config file *) - sprintf "Initializing empty configuration file in %s\n" name |> Messages.warning; - Messages.tips "Feedback is welcomed at leowzukw@vmail.me\n"; + sprintf "Initializing empty configuration file in %s." name |> Messages.warning; + (* Final \n to display newline before showing the licence. *) + Messages.tips "Feedback is welcome at feedback@oclaunch.eu.org.\n\ + To get remind for new stable versions, subscribe to our low-traffic (up to 6 \ + mail per year) mailing list: announce@oclaunch.eu.org.\n\ + See you soon!\n"; (* Display licence information *) Licencing.print ~cecill:false; |
