Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Work around OTP-21 deprecation of get_stacktrace() | Fred Hebert | 2018-05-03 | 1 | -2/+2 |
| | | | | Based off a macro by @okeuday at https://github.com/erlang/otp/pull/1783 | ||||
* | OTP-21 readiness, Full Unicode support | Fred Hebert | 2017-11-16 | 1 | -1/+1 |
| | | | | | | | | | | | | This replaces all deprecated function usage by alternative ones based on a version switch enacted at compile time, preventing all warnings. This will likely introduce some possible runtime errors in using a Rebar3 compiled on OTP-20 or OTP-21 back in versions 19 and earlier, but we can't really work around that. A bunch of dependencies have been updated to support OTP-21 without warnings as well. | ||||
* | Unicode support in all the places | Fred Hebert | 2017-08-06 | 1 | -89/+89 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is done through 3 main change groups: - replacing `~s` by `~ts` in format strings, so that strings that contain unicode are properly printed rather than crashing - adding the `unicode` argument to all function of the `re` module to ensure transformations on strings containing unicode data are valid instead of crashing (see issue #1302) - replacing `ec_cnv:to_binary/1` and `ec_cnv:to_list/1` with matching functions in `rebar_utils`. The last point has been done, rather than modifying and updating erlware commons, because binary and list conversions can be a contentious subject. For example, if what is being handled is actually bytes from a given binary stream, then forcing a byte-oriented interpretation of the data can corrupt it. As such, it does not appear safe to modify erlware commons' conversion functions since it may not be safe for all its users. Instead, rebar3 reimplements a subset of them (only converting atoms and chardata, ignoring numbers) with the explicit purpose of handling unicode string data. Tests were left as unchanged as possible. This may impact the ability to run rebar3's own suites in a unicode path, but respects a principle of least change for such a large patch. | ||||
* | Typo: seperate -> separate | Michiel Beijen | 2017-03-27 | 1 | -25/+25 |
| | |||||
* | Enable path reformatting for Dialyzer | Fred Hebert | 2017-01-21 | 1 | -7/+9 |
| | | | | | | | | Fixes issue #880 May break backwards compat with projects that manually called the dialyzer formatter, but we never documented or expected this to be exposed. | ||||
* | Add some documentaiton. | Heinz N. Gies | 2015-09-29 | 1 | -8/+31 |
| | |||||
* | Fix sub string highlighting for form positions | Heinz N. Gies | 2015-09-29 | 1 | -7/+4 |
| | |||||
* | Add colour for 'the call comtains' message | Heinz N. Gies | 2015-09-29 | 1 | -1/+1 |
| | |||||
* | Fix error messages that were not resetting color | Heinz N. Gies | 2015-09-29 | 1 | -4/+3 |
| | |||||
* | Group dialyzer warnings by file and concentrate output | Heinz N. Gies | 2015-09-29 | 1 | -83/+89 |
| | |||||
* | fix dialyzer warnings | Tristan Sloughter | 2015-09-27 | 1 | -6/+3 |
| | |||||
* | Use bold instead of bold white for text | Heinz N. Gies | 2015-09-22 | 1 | -89/+89 |
| | |||||
* | Remove rebar_colour and replace it with cf | Heinz N. Gies | 2015-09-22 | 1 | -3/+2 |
| | |||||
* | Fix bad string caused by missing fmt call | Heinz N. Gies | 2015-09-22 | 1 | -3/+3 |
| | |||||
* | Split out colour printing code in own module | Heinz N. Gies | 2015-09-21 | 1 | -96/+3 |
| | |||||
* | Fix some indentation and add debug on format errors | Heinz N. Gies | 2015-09-21 | 1 | -77/+80 |
| | |||||
* | Enable highlighting in contracts | Heinz N. Gies | 2015-09-21 | 1 | -9/+7 |
| | |||||
* | Fix colors for bad and good args | Heinz N. Gies | 2015-09-21 | 1 | -2/+3 |
| | |||||
* | Remove dubplicated call to format_warning | Heinz N. Gies | 2015-09-21 | 1 | -1/+0 |
| | |||||
* | Check term cap for color output | Heinz N. Gies | 2015-09-21 | 1 | -16/+17 |
| | |||||
* | Make it easy to switch colors off in cfmt | Heinz N. Gies | 2015-09-21 | 1 | -48/+58 |
| | |||||
* | Add missing colors to cfmt | Heinz N. Gies | 2015-09-21 | 1 | -0/+21 |
| | |||||
* | Remove color login from text | Heinz N. Gies | 2015-09-21 | 1 | -141/+176 |
| | |||||
* | Color the remaining functions in basic a way | Heinz N. Gies | 2015-09-21 | 1 | -66/+75 |
| | |||||
* | Formating for inproper list construction | Heinz N. Gies | 2015-09-21 | 1 | -3/+3 |
| | |||||
* | Add no local return styling | Heinz N. Gies | 2015-09-21 | 1 | -1/+1 |
| | |||||
* | Shorten filenames slightly | Heinz N. Gies | 2015-09-21 | 1 | -1/+12 |
| | |||||
* | Add more messages, split up display in more then 1 line | Heinz N. Gies | 2015-09-21 | 1 | -27/+43 |
| | |||||
* | Add 'will never return' warning to nice warnings | Heinz N. Gies | 2015-09-21 | 1 | -18/+45 |
| | |||||
* | Colorize the first dialyzer message | Heinz N. Gies | 2015-09-21 | 1 | -0/+369 |