summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2021-11-16fix(install): fix backslash in `printf` when showing logo (#10422)Marc Cornellà
Fixes #10422
2021-11-10fix(updater): avoid `git -C` for compatibility with git < v1.8.5 (#10404)Marc Cornellà
Fixes #10404
2021-11-09refactor(updater): simplify check for available updatesMarc Cornellà
2021-11-09style: use `-n` flag in `head` and `tail` commands (#10391)Kevin Burke
Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-11-05fix(updater): stop update if connection unavailableMarc Cornellà
2021-10-27fix(changelog): fix for `${(@ps:$sep:)var}` construct in zsh < 5.0.8Marc Cornellà
In recent zsh versions, `${(@ps:$sep:)var}` where $sep is a variable containing a separator string and $var is a string with multiple values separated by $sep, the `p` flag makes zsh correctly expand $sep before splitting $var. In versions older than 5.0.8, this doesn't happen, so we use `eval` to get the same effect.
2021-10-26fix(changelog): fix percent escapes in `printf` callsMarc Cornellà
2021-10-26perf(changelog): use regex-match instead of `sed` to parse commit subjectsMarc Cornellà
2021-10-26fix(changelog): go back to ignoring commits from merged branchesMarc Cornellà
2021-10-26perf(changelog): use a single `git log` command to get all commit messagesMarc Cornellà
2021-10-26fix(changelog): don't show more than 40 commits (#10345)Marc Cornellà
Fixes #10345
2021-10-13feat(updater): add support for terminal hyperlinksMarc Cornellà
2021-10-07Revert "fix(changelog): don't parse commits of ignored types"Marc Cornellà
This reverts commit 63b7e5767d551b1d839888a7216f2bed01e8eb1f.
2021-10-05fix(changelog): don't parse commits of ignored typesMarc Cornellà
2021-10-04feat(updater): check if there are updates before prompting (#8387)Marc Cornellà
Fixes #8387
2021-10-04feat(updater): add mode to only remind you to update when it's time (#10187)Marc Cornellà
Fixes #10187 Co-authored-by: NoPreserveRoot <NoPreserveRoot@pm.me>
2021-10-04refactor(updater): change auto-update settings to use `zstyle`Marc Cornellà
2021-09-23style(installer): use rainbow logo and polish success message (#10211)Marc Cornellà
2021-09-22feat(update): allow updating from branch set up on installMarc Cornellà
Closes #8788 Co-authored-by: Nikolas Garofil <nikolas@garofil.be>
2021-09-16fix(update): silence `typeset` calls in `upgrade.sh` script (#10048)Marc Cornellà
Co-authored-by: yyny <6576327+yyny@users.noreply.github.com>
2021-09-07chore(changelog): fix first-letter uppercase in breaking change messagesMarc Cornellà
2021-09-07feat(changelog): print BREAKING CHANGE messages in a prettier wayMarc Cornellà
2021-09-06feat(changelog): change style of `BREAKING CHANGES` headerMarc Cornellà
2021-08-17fix(updater): fix reset ANSI escape code for resetting underline formatMarc Cornellà
2021-08-14fix(changelog): also display commits from merged branchesMarc Cornellà
2021-07-08fix(update): fix error exit code on update check (#10033)Marc Cornellà
This patch removes the 'exit 1' status code when the update check finishes or is ended with CTRL+C. Fixes #10033
2021-07-07feat(changelog): ignore merge commitsMarc Cornellà
2021-06-11fix(update): correct description of how changelog is displayed (#9943)Logicer
2021-04-06feat(theme_chooser): display non-zero exit code (#8428)Max Staff
Fixes #8427
2021-03-25fix: use `$USERNAME` guaranteed to always be defined in zshMarc Cornellà
Fixes #9701
2021-03-16refactor(installer): fix static analysis warnings (#9529)Léa Gris
* refactor(install.sh): fix static analysis warnings Clear all warnings and errors raised by shellcheck.net static analysis. - Replace non-POSIX shell use of `$OSTYPE` by POSIX compliant check on `uname -o`. - Move variables out of`printf` format string. - Refactor/simplify string formatters for error and underline. - Fix expansion of arguments to a single string `$*` rather than individual elements `$@` within the error and underline formatters. * fix(uname): non-posix -o option * fix(install.sh): non portable which Replaced non-portable `which zsh` by portable `command -v zsh`
2021-03-15fix(uninstall): fix renaming .zshrc when no original rc file foundMarc Cornellà
Fixes #9629 Fixes #9700
2021-03-01fix(update): don't error on upgrade no-op (#9685)Cai Cooper
* Don't error on upgrade no-op No error code is required for a non failure scenario. * Manually check whether changes were pulled in `omz update` Co-authored-by: Marc Cornellà <hello@mcornella.com>
2021-01-21fix(updater): refresh date of last update only on successful updateMarc Cornellà
2021-01-10fix(changelog): fix spacing in breaking changes messageMarc Cornellà
2021-01-05fix(changelog): display scope in breaking change messagesMarc Cornellà
2020-12-30fix(changelog): remove CR characters in breaking change messagesMarc Cornellà
The GitHub UI might not remove CR characters from commit description forms filled from a Windows browser.
2020-12-28fix(updater): don't pipe changelog to less when updatingMarc Cornellà
Fixes #9509
2020-12-12fix(changelog): allow breaking change message to span multiple linesMarc Cornellà
This also allows the option to put extra paragraphs after the BREAKING CHANGE message while properly displaying the breaking change message. Useful, for example, to add signed-off or co-authored lines.
2020-12-12feat(updater): save version prior to updating so `omz changelog` just works™Marc Cornellà
Fixes #9505
2020-12-07fix(changelog): fix assoc array syntax for zsh 5.4.2 and older (#9495)Marc Cornellà
Also fixed a call to a defunct display:type-header function in displaying breaking changes.
2020-12-07fix(updater): don't show changelog when running unattended update (#9495)Marc Cornellà
Fixes #9495
2020-12-04fix(changelog): fix highlight of codeblocks in subjectMarc Cornellà
2020-12-04fix(updater): properly show changelog via `less`Marc Cornellà
2020-12-02fix(updater): fix ignored variable name in readMarc Cornellà
I used _ which is a convention in other languages, but in shell scripting $_ is a special variable set by the shell, and in Zsh versions older than 5.0.6 it complains for being a `read-only variable`. Fixes #9482
2020-12-01fix(updater): make sure to run it with zshMarc Cornellà
2020-11-30feat(updater): add changelog display by parsing the commit listMarc Cornellà
2020-11-30refactor(updater): switch to Zsh execution and fix git remote detection logicMarc Cornellà
2020-11-09fix(installer): fix error message if $ZSH exists when installingMarc Cornellà
Also prefix all formatting functions with fmt_ Related: #9427
2020-09-09update: return git error code on failure (#9238)Lucas Larson
Fixes #9237