summaryrefslogtreecommitdiffstats
path: root/src/bug_report.rs
AgeCommit message (Collapse)Author
2021-07-04feat: add support for nu shell (#2847)David Knaack
2021-02-27feat: add support for tcsh (#2288)Vivek Malneedi
* feat: add support for tcsh * add tcsh to install.sh install message * list tcsh in bug_report.rs and main.rs * quote starship path Co-authored-by: David Knaack <davidkna@users.noreply.github.com> * fix job count * add tcsh support to shell module * fix STARSHIP_START_TIME undefined error * preserve existing user precmd and postcmd, remove jobs support * remove unnecessary parentheses * minor script improvement * removes parens from install script message * Update docs/config/README.md Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com> Co-authored-by: David Knaack <davidkna@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com>
2021-02-11feat: allow changing default command timeout (#2283)David Knaack
* feat: allow changing default command timeout * fix clippy * add doc to exec_cmd in Context * update docs in CONTRIBUTING.md * Fix comment in CONTRIBUTING.md Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com>
2021-02-02feat: add support for elvish shell (#1725)David Knaack
* feat: add support for elvish shell * improve doc * elvish 0.15 is out * fix example init * update systax for 0.15 stable * udpate second init example too * remove warning from swift module * add warning to status module docs * prefix elvish version with v
2021-01-22build: Add additional build information to version and bug report (#2124)Rust大闸蟹
* fix https://github.com/starship/starship/issues * cargo fmt * upgrade shadow-rs 0.5.6 * upgrade shadow-rs * update * complet bug_report infomation * cargo fmt * upgrade shadow-rs 0.5.11 * upgrade shadow-rs 0.5.14 * fixed:https://github.com/starship/starship/pull/2124#discussion_r559076634 fixed:https://github.com/starship/starship/pull/2124#discussion_r559076918 * add long_version * upgrade shadow-rs 0.5.19; adaptate clap version() use by shadow-rs clap_version() * fix unit test error * fix test error * upgrade shadow-rs 0.5.22 * upgrade shadow-rs 0.5.23
2021-01-19test: avoid setting $HOME (#2155)David Knaack
* test: avoid setting $HOME * add comment to get_home * move everything to context.get_home
2020-10-30fix(bug-report): verify exit code of open, always print url (#1839)David Knaack
* fix(bug-report): verify exit code of browser open * always print url to open ticket
2020-10-02fix(bug-report): use correct path for ion config (#1726)David Knaack
2020-09-29build(deps): bump os_info from 2.0.8 to 3.0.0 (#1688)dependabot-preview[bot]
* build(deps): bump os_info from 2.0.8 to 3.0.0 Bumps [os_info](https://github.com/stanislav-tkach/os_info) from 2.0.8 to 3.0.0. - [Release notes](https://github.com/stanislav-tkach/os_info/releases) - [Changelog](https://github.com/stanislav-tkach/os_info/blob/master/CHANGELOG.md) - [Commits](https://github.com/stanislav-tkach/os_info/compare/v2.0.8...v3.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Upgrade to work with the new os_info Have switched to work with the new os_info tooling. Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andy.tom@gmail.com>
2020-08-07test: introduce env variable mocking (#1490)Tilmann Meyer
2020-06-20Replace `dirs` with `dirs-next` dependency (#1361)Julian Gehring
`dirs` will be unmaintained for the foreseeable future, so switch to the maintained fork `dirs-next`. Closes #1319.
2020-04-24fix: Fix latest clippy suggestions (#1136)Thomas O'Donnell
Have removed some imports that Clippy says are not needed anymore.
2020-03-14improvement: replace reqwest with attohttpc (#999)David Knaack
2020-03-05feat: make reqwest an optional dependency (#979)Matan Kushner
2020-02-05revert: "refactor: replace reqwest with ureq (#844)" (#895)Matan Kushner
Former-commit-id: 0908c12a4950b6b4ceea22a3e1cbd4a8039d4006
2020-01-19refactor: replace reqwest with ureq (#844)David Knaack
2020-01-15fix(bug-report): Fix status code 414 when generated bug report is too long ↵Jon Grythe Stødle
(#750)
2020-01-06build(deps): bump reqwest from 0.9.24 to 0.10.0 (#797)dependabot-preview[bot]
* build(deps): bump reqwest from 0.9.24 to 0.10.0 Bumps [reqwest](https://github.com/seanmonstar/reqwest) from 0.9.24 to 0.10.0. - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.9.24...v0.10.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-12-17feat: Extend bug-report to include terminal emulator (#740)Matan Kushner
2019-12-15docs: Update bug report templateMatan Kushner
2019-12-14feat: Add `bug-report` sub-command (#725)Jon Grythe Stødle
This adds a sub command to generate the link. Information, such as operating system and it's version; the current shell's config; and current starship conf, is gathered from the environment and is included in the pre-filled text. The command will also try to open the link in the default browser. Should that fail it will print the link instead and ask the user to copy it.