spaceship-prompt 3.16.4 → 3.16.5
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 +7 -0
- package/README.md +2 -24
- package/package.json +1 -1
- package/sections/gcloud.zsh +1 -1
- package/spaceship.zsh +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.16.5](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.4...v3.16.5) (2022-03-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 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)
|
|
7
|
+
|
|
1
8
|
## [3.16.4](https://github.com/spaceship-prompt/spaceship-prompt/compare/v3.16.3...v3.16.4) (2022-02-24)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
> # 🇺🇦 UKRAINE NEEDS YOUR HELP NOW!
|
|
2
|
-
>
|
|
3
|
-
> I'm the creator of this project and I'm Ukrainian.
|
|
4
|
-
>
|
|
5
|
-
> **My country, Ukraine, [is being invaded by the Russian Federation, right now](https://www.bbc.com/news/world-europe-60504334)**. I've fled Kyiv and now I'm safe with my family in the western part of Ukraine. At least for now.
|
|
6
|
-
> Russia is hitting target all over my country by ballistic missiles.
|
|
7
|
-
>
|
|
8
|
-
> **Please, save me and help to save my country!**
|
|
9
|
-
>
|
|
10
|
-
> Ukrainian National Bank opened [an account to Raise Funds for Ukraine’s Armed Forces](https://bank.gov.ua/en/news/all/natsionalniy-bank-vidkriv-spetsrahunok-dlya-zboru-koshtiv-na-potrebi-armiyi):
|
|
11
|
-
>
|
|
12
|
-
> ```
|
|
13
|
-
> SWIFT Code NBU: NBUA UA UX
|
|
14
|
-
> JP MORGAN CHASE BANK, New York
|
|
15
|
-
> SWIFT Code: CHASUS33
|
|
16
|
-
> Account: 400807238
|
|
17
|
-
> 383 Madison Avenue, New York, NY 10179, USA
|
|
18
|
-
> IBAN: UA843000010000000047330992708
|
|
19
|
-
> ```
|
|
20
|
-
>
|
|
21
|
-
> You can also donate to [charity supporting Ukrainian army](https://savelife.in.ua/en/donate/).
|
|
22
|
-
>
|
|
23
|
-
> **THANK YOU!**
|
|
24
|
-
|
|
25
1
|
<h1 align="center">
|
|
26
2
|
<a href="https://github.com/spaceship-prompt/spaceship-prompt">
|
|
27
3
|
<img alt="spaceship →~ prompt" src="https://cloud.githubusercontent.com/assets/3459374/21679181/46e24706-d34b-11e6-82ee-5efb3d2ba70f.png" width="400">
|
|
@@ -84,6 +60,8 @@
|
|
|
84
60
|
</div>
|
|
85
61
|
<br>
|
|
86
62
|
|
|
63
|
+
[](https://stand-with-ukraine.pp.ua/)
|
|
64
|
+
|
|
87
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.
|
|
88
66
|
|
|
89
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.5'
|
|
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}"
|