spaceship-prompt 3.16.3 → 3.16.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +2 -0
- package/package.json +1 -1
- package/sections/gcloud.zsh +1 -1
- package/spaceship.zsh +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [3.16.6](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.5...v3.16.6) (2022-05-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **brew:** Attempt to bump homebrew formula with main release ([5f476b1](https://github.com/spaceship-prompt/spaceship-prompt/commit/5f476b1d2942c778a9ca4d7609f4db2526c9430d))
|
|
7
|
+
|
|
8
|
+
## [3.16.5](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.4...v3.16.5) (2022-03-28)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* support CLOUDSDK_CONFIG env ([#1122](https://github.com/spaceship-prompt/spaceship-prompt/issues/1122)) ([6358eaf](https://github.com/spaceship-prompt/spaceship-prompt/commit/6358eaff0a2ad954445c169335d89ef00602aee1)), closes [#1117](https://github.com/spaceship-prompt/spaceship-prompt/issues/1117)
|
|
14
|
+
|
|
15
|
+
## [3.16.4](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.3...v3.16.4) (2022-02-24)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **readme:** Add notice about Ukraine ([93f328f](https://github.com/spaceship-prompt/spaceship-prompt/commit/93f328ffc049ac0c847d697b0792487b616f4496))
|
|
21
|
+
|
|
1
22
|
## [3.16.3](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.2...v3.16.3) (2022-02-16)
|
|
2
23
|
|
|
3
24
|
|
package/README.md
CHANGED
|
@@ -60,6 +60,8 @@
|
|
|
60
60
|
</div>
|
|
61
61
|
<br>
|
|
62
62
|
|
|
63
|
+
[](https://stand-with-ukraine.pp.ua/)
|
|
64
|
+
|
|
63
65
|
Spaceship is a minimalistic, powerful and extremely customizable [Zsh][zsh-url] prompt. It combines everything you may need for convenient work, without unnecessary complications, like a real spaceship.
|
|
64
66
|
|
|
65
67
|
<p align="center">
|
package/package.json
CHANGED
package/sections/gcloud.zsh
CHANGED
|
@@ -26,7 +26,7 @@ spaceship_gcloud() {
|
|
|
26
26
|
spaceship::exists gcloud || return
|
|
27
27
|
|
|
28
28
|
# Set the gcloud config base dir
|
|
29
|
-
local GCLOUD_DIR=${HOME}/.config/gcloud
|
|
29
|
+
local GCLOUD_DIR=${CLOUDSDK_CONFIG:-"${HOME}/.config/gcloud"}
|
|
30
30
|
|
|
31
31
|
# Check if there is an active config
|
|
32
32
|
[[ -f ${GCLOUD_DIR}/active_config ]] || return
|
package/spaceship.zsh
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
# Current version of Spaceship
|
|
9
9
|
# Useful for issue reporting
|
|
10
|
-
export SPACESHIP_VERSION='3.16.
|
|
10
|
+
export SPACESHIP_VERSION='3.16.6'
|
|
11
11
|
|
|
12
12
|
# Common-used variable for new line separator
|
|
13
13
|
NEWLINE='
|
|
@@ -87,7 +87,8 @@ if [ -z "$SPACESHIP_RPROMPT_ORDER" ]; then
|
|
|
87
87
|
)
|
|
88
88
|
fi
|
|
89
89
|
|
|
90
|
-
# PROMPT
|
|
90
|
+
# PROMPT OPTIONS
|
|
91
|
+
SPACESHIP_PROMPT_ASYNC="${SPACESHIP_PROMPT_ASYNC=true}"
|
|
91
92
|
SPACESHIP_PROMPT_ADD_NEWLINE="${SPACESHIP_PROMPT_ADD_NEWLINE=true}"
|
|
92
93
|
SPACESHIP_PROMPT_SEPARATE_LINE="${SPACESHIP_PROMPT_SEPARATE_LINE=true}"
|
|
93
94
|
SPACESHIP_PROMPT_FIRST_PREFIX_SHOW="${SPACESHIP_PROMPT_FIRST_PREFIX_SHOW=false}"
|