Browse Source

Replace lnch.ml by s.oclaunch.eu.org

 + Using s.oclaunch.eu.org we do not depend of the goodwill of Freenom.
 + s.ocluanch.eu.org is linked to the main url of the project.
 + lnch.ml redirect to s.oclaunch.eu.org, nothing will be lost. Thus, if
 s.oclaunch.eu.org is judged too long, one may use lnch.ml.
Leo 8 years ago
parent
commit
1c2347758c
5 changed files with 7 additions and 7 deletions
  1. 1 1
      CHANGELOG.md
  2. 1 1
      opam
  3. 1 1
      src/bug.ml
  4. 2 2
      src/command_def.ml
  5. 2 2
      src/file_com.ml

+ 1 - 1
CHANGELOG.md

@@ -54,7 +54,7 @@ This version introduce major changes in the tmp and rc file.
       bd712c97c788922aabdda15f75e78cb05882c53f).
  + Code clean up (especially indentation, thanks to ocp-indent), messages
    improvement (for instance to make it clearer, give more accurate tips or
-   engage users, thanks to lnch.ml service).
+   engage users, thanks to s.oclaunch.eu.org service).
  + Allow to set parameters with environment variable, such as `OC_RC, `OC_VERB`,
    `OC_NOCOLOR`. This is added to the previous variable `OC_TMP`. See #20.
  + Add unit tests and clean them up.

+ 1 - 1
opam

@@ -4,7 +4,7 @@ version: "0.3.0"
 maintainer: "Leo <leowzukw@oclaunch.eu.org>"
 authors: "Leo <leowzukw@oclaunch.eu.org>"
 homepage: "http://www.oclaunch.eu.org"
-bug-reports: "http://lnch.ml/bug"
+bug-reports: "http://s.oclaunch.eu.org/bug"
 license: "CeCILL"
 dev-repo: "git@gitlab.com:WzukW/oclaunch.git"
 build: [

+ 1 - 1
src/bug.ml

@@ -39,7 +39,7 @@
 open Core.Std;;
 
 (* Url of instructions to report bugs *)
-let url = "http://lnch.ml/bug";;
+let url = "http://s.oclaunch.eu.org/bug";;
 
 (* Display instructions to report bug *)
 let report () =

+ 2 - 2
src/command_def.ml

@@ -337,8 +337,8 @@ let run ~version ~build_info () =
       ~summary:"OcLaunch program is published under CeCILL licence.\n\
                 You may run the program with 'licence' command or see \
                 http://cecill.info/licences/Licence_CeCILL_V2.1-en.html \
-                (https://lnch.ml/cecill) for details. More here: \
-                https://oclaunch.eu.org/floss-under-cecill (https://lnch.ml/l)."
+                (https://s.oclaunch.eu.org/cecill) for details. More here: \
+                https://oclaunch.eu.org/floss-under-cecill (https://s.oclaunch.eu.org/l)."
       ~readme:(fun () -> File_com.welcome_msg)
       ~preserve_subcommand_order:()
       [ ("run", default) ; ("licence", licence) ; ("add", add) ; ("edit", edit)

+ 2 - 2
src/file_com.ml

@@ -54,8 +54,8 @@ let welcome_msg =
      Feedback is welcome at feedback@oclaunch.eu.org.\n\
      To get remind for new stable versions, subscribe to our low-traffic mailing \
      list: announce@oclaunch.eu.org. \
-     More here: https://lnch.ml/ml\n\
-     See you soon! To keep in touch: https://lnch.ml/kt\n"
+     More here: https://s.oclaunch.eu.org/ml\n\
+     See you soon! To keep in touch: https://s.oclaunch.eu.org/kt\n"
     Bug.url
 ;;