v1.9.1
This commit is contained in:
parent
5bcfb8cc9f
commit
a620953556
4 changed files with 17 additions and 11 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -7,14 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
_No unreleased changes._
|
||||||
|
|
||||||
|
## [1.9.1] - 2022-05-24
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Calling `zmodule` more than once will override the repository options along
|
- Override repository options along multiple `zmodule` calls with the same
|
||||||
the calls for the same module name.
|
module name.
|
||||||
- Also show skipping already installed modules with the install action and `-v`.
|
- Show already installed modules skipped with install action and `-v`.
|
||||||
- Also consider external module directory paths when calling the compile action
|
- Consider external module directory paths when calling compile action directly.
|
||||||
directly.
|
- Ignore return value from `zargs` with `-P`
|
||||||
- Ignore return value from `zargs` with `-P`.
|
(See https://www.zsh.org/mla/workers/2022/msg00611.html)
|
||||||
|
|
||||||
## [1.9.0] - 2022-05-09
|
## [1.9.0] - 2022-05-09
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
_zimfw_install_update() {
|
_zimfw_install_update() {
|
||||||
local -r _zargs_action=${1}
|
local -r _zargs_action=${1}
|
||||||
_zimfw_source_zimrc 1 && zargs -n 1 -P 0 -- "${_znames[@]}" -- _zimfw_run_tool
|
_zimfw_source_zimrc 1 && zargs -n 1 -P 0 -- "${_znames[@]}" -- _zimfw_run_tool
|
||||||
# Ignore return from zargs with -P
|
# Ignore return from zargs with -P. Was missing values before zsh 5.9, and
|
||||||
|
# it's intermittently failing in zsh 5.9 and macOS. See https://www.zsh.org/mla/workers/2022/msg00611.html
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ class Zim
|
||||||
:clear_line, :ellipsis, :okay, :warn, :error, :done, :failed
|
:clear_line, :ellipsis, :okay, :warn, :error, :done, :failed
|
||||||
|
|
||||||
def initialize
|
def initialize
|
||||||
@version = "1.9.1-SNAPSHOT"
|
@version = "1.9.1"
|
||||||
@home = "${ZDOTDIR:-${HOME}}"
|
@home = "${ZDOTDIR:-${HOME}}"
|
||||||
@min_zsh_version = "5.2"
|
@min_zsh_version = "5.2"
|
||||||
# Matches {ssh,http,https,git}://{user@,}host/org/repo and {user@,}host:org/repo
|
# Matches {ssh,http,https,git}://{user@,}host/org/repo and {user@,}host:org/repo
|
||||||
|
|
|
@ -384,7 +384,7 @@ _zimfw_compile() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_zimfw_info() {
|
_zimfw_info() {
|
||||||
print -R 'zimfw version: '${_zversion}' (built at 2022-05-17 23:38:19 UTC, previous commit is d6b4aa6)'
|
print -R 'zimfw version: '${_zversion}' (built at 2022-05-24 21:25:10 UTC, previous commit is 5bcfb8c)'
|
||||||
print -R 'ZIM_HOME: '${ZIM_HOME}
|
print -R 'ZIM_HOME: '${ZIM_HOME}
|
||||||
print -R 'Zsh version: '${ZSH_VERSION}
|
print -R 'Zsh version: '${ZSH_VERSION}
|
||||||
print -R 'System info: '$(command uname -a)
|
print -R 'System info: '$(command uname -a)
|
||||||
|
@ -393,7 +393,8 @@ _zimfw_info() {
|
||||||
_zimfw_install_update() {
|
_zimfw_install_update() {
|
||||||
local -r _zargs_action=${1}
|
local -r _zargs_action=${1}
|
||||||
_zimfw_source_zimrc 1 && zargs -n 1 -P 0 -- "${_znames[@]}" -- _zimfw_run_tool
|
_zimfw_source_zimrc 1 && zargs -n 1 -P 0 -- "${_znames[@]}" -- _zimfw_run_tool
|
||||||
# Ignore return from zargs with -P
|
# Ignore return from zargs with -P. Was missing values before zsh 5.9, and
|
||||||
|
# it's intermittently failing in zsh 5.9 and macOS. See https://www.zsh.org/mla/workers/2022/msg00611.html
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -755,7 +756,7 @@ esac
|
||||||
|
|
||||||
zimfw() {
|
zimfw() {
|
||||||
builtin emulate -L zsh -o EXTENDED_GLOB
|
builtin emulate -L zsh -o EXTENDED_GLOB
|
||||||
local -r _zversion='1.9.1-SNAPSHOT' zusage="Usage: %B${0}%b <action> [%B-q%b|%B-v%b]
|
local -r _zversion='1.9.1' zusage="Usage: %B${0}%b <action> [%B-q%b|%B-v%b]
|
||||||
|
|
||||||
Actions:
|
Actions:
|
||||||
%Bbuild%b Build %B${ZIM_HOME}/init.zsh%b and %B${ZIM_HOME}/login_init.zsh%b.
|
%Bbuild%b Build %B${ZIM_HOME}/init.zsh%b and %B${ZIM_HOME}/login_init.zsh%b.
|
||||||
|
|
Loading…
Reference in a new issue