-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Add color support for Hyper terminal . #27794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Interesting. We consider these as bug fixes so it should be fixed on 2.8. |
i have made 2 other PRs at |
@nicolas-grekas i think that's all, i have search the repository for similar code and i found these checks in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@azjezz thanks! This is a nice first contribution to Symfony.
Thank you @azjezz. |
This PR was submitted for the master branch but it was merged into the 2.8 branch instead (closes #27794). Discussion ---------- Add color support for Hyper terminal . | Q | A | ------------- | --- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | License | MIT Added color support for [Hyper terminal](https://hyper.is), also shade characters support for progress bar.  Commits ------- 2ab7bcf Add color support for Hyper terminal .
…00_support. (azjezz) This PR was merged into the 1.8-dev branch. Discussion ---------- Checks the enviroment for Hyper Termianl on sapi_windows_vt100_support. see : [symfony/symfony#27794](symfony/symfony#27794). Commits ------- 7ee2340 Update Php72.php
… (theofidry) This PR was merged into the 5.4 branch. Discussion ---------- [Console] Fix color support check on non-Windows platforms | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Issues | Fix #45917 | License | MIT Currently checking the color support based on `ANSICON`, `ConEmuANSI=ON` or `TERM=xTerm` is done only for Widows. I could not find any reason as to why and it does not make much sense as it is. Especially if we consider that `TERM=xTerm` is a term check and we do another one (not Widows specific) which is `TERM_PROGRAM=Hyper`. This potentially fixes #45917. This also looks more in line with the intent (based on the title) of #27831 and #27794. Commits ------- 285518d detect colors on not windows
Added color support for Hyper terminal, also shade characters support for progress bar.