Compare commits

...

3 Commits

Author SHA1 Message Date
Ilan Cosman
aa314fdcb7 minor doc edits 2023-12-27 13:41:06 -08:00
Ilan Cosman
a34b0c2809 v6.1.1 2023-12-27 13:35:50 -08:00
Ilan Cosman
966dd0b22b Set the new jobs variable to prevent errors when updating 2023-12-27 13:30:55 -08:00
4 changed files with 13 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## [v6.1.1][] (Dec 27 2023)
### Bug fixes
- Set the new `tide_jobs_number_threshold` variable when updating, to prevent errors ([#474][])
## [v6.1.0][] (Dec 26 2023)
### Features
@ -572,6 +578,7 @@
[#459]: https://github.com/IlanCosman/tide/issues/459
[#470]: https://github.com/IlanCosman/tide/issues/470
[#472]: https://github.com/IlanCosman/tide/issues/472
[#474]: https://github.com/IlanCosman/tide/issues/474
[prettier action]: https://github.com/actionsx/prettier
[super-linter]: https://github.com/github/super-linter
[v1.0.0]: https://github.com/IlanCosman/tide/tree/v1.0.0
@ -618,3 +625,4 @@
[v6.0.0]: https://github.com/IlanCosman/tide/tree/v6.0.0
[v6.0.1]: https://github.com/IlanCosman/tide/tree/v6.0.1
[v6.1.0]: https://github.com/IlanCosman/tide/tree/v6.1.0
[v6.1.1]: https://github.com/IlanCosman/tide/tree/v6.1.1

View File

@ -16,7 +16,7 @@
### System Requirements
- The **latest** version of [Fish][], currently 3.6.0. <sub>[Using an older version of Fish?][]</sub>
- The **latest** version of [Fish][], currently 3.6.4. <sup><sub>[Using an older version of Fish?][]</sub></sup>
- A [Nerd Font][nerd fonts] installed and enabled in your terminal (for example the [recommended font](#fonts)).
Install with [Fisher][]:

View File

@ -32,6 +32,9 @@ function _tide_init_update --on-event _tide_init_update
_tide_fish_colorize "fisher install ilancosman/tide@v6"
sleep 3
end
# Set (disable) the new jobs variable
set -q tide_jobs_number_threshold || set -U tide_jobs_number_threshold 1000
end
function _tide_init_uninstall --on-event _tide_init_uninstall

View File

@ -2,7 +2,7 @@ function tide --description 'Manage your Tide prompt'
argparse --stop-nonopt v/version h/help -- $argv
if set -q _flag_version
echo 'tide, version 6.1.0'
echo 'tide, version 6.1.1'
else if set -q _flag_help
_tide_help
else if functions --query _tide_sub_$argv[1]