diff --git a/README.md b/README.md index c3585f1..659afbc 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ Minimal reference implenentation of [Markdown Localization Specification](https: To install or update mdlm, you should run the install script. To do that, you may either download and run the script manually, or use the following cURL or Wget command: ```sh -curl -o- https://raw.githubusercontent.com/markdown-localization/mdlm-sh/v0.0.11/install.sh | bash +curl -o- https://raw.githubusercontent.com/markdown-localization/mdlm-sh/v0.0.13/install.sh | bash ``` ```sh -wget -qO- https://raw.githubusercontent.com/markdown-localization/mdlm-sh/v0.0.11/install.sh | bash +wget -qO- https://raw.githubusercontent.com/markdown-localization/mdlm-sh/v0.0.13/install.sh | bash ``` Running either of the above commands downloads a script and runs it. The script copies mdlm script to `~/.mdlm`, and attempts to add the source lines from the snippet below to the correct profile file (`~/.bash_profile`, or `~/.bashrc`). diff --git a/install.sh b/install.sh index a2cf340..7f762fb 100755 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ { # this ensures the entire script is downloaded # -MDLM_VERSION="0.0.11" +MDLM_VERSION="0.0.13" MDLM_REMOTE_FILE="https://raw.githubusercontent.com/markdown-localization/mdlm-sh/v${MDLM_VERSION}/mdlm.sh" mdlm_echo() { @@ -61,7 +61,7 @@ mdlm_update_profile() { } mdlm_install() { - mdlm_echo "Installing Markdown localization manager." + mdlm_echo "Installing Markdown localization manager (Bash) ${MDLM_VERSION}" local INSTALL_DIR INSTALL_DIR="$(mdlm_install_dir)" diff --git a/mdlm.sh b/mdlm.sh index 5478b9c..fb04d37 100755 --- a/mdlm.sh +++ b/mdlm.sh @@ -8,7 +8,7 @@ # # Functions: # - mdlm_* - custom functions. -MDLM_VERSION="0.0.11" +MDLM_VERSION="0.0.13" DEFAULT_LCM_LOCAL="English"