summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-08-26Privatize deprecated functions functions for #87HEADmasterPierre-Henri Symoneaux
2019-08-26Merge pull request #114 from phsym/printstd-nopanicPierre-Henri Symoneaux
Remove panic in print_tty and return a Result
2019-08-26Merge pull request #101 from jonasbb/html-and-evcxr-integrationPierre-Henri Symoneaux
Html and Evcxr integration
2019-08-26Add description about the Evcxr support to the readmeJonas Bushart
2019-08-26Integrate the new HTML printing with EvcxrJonas Bushart
* Add optional feature for Evcxr integration * Implement trait for everything which can be converted into a Tableslice. The trait prints the Tableslice in plain-text and HTML format in a Evcxr compatible manner.
2019-08-26Implement HTML output for Table and TableSliceJonas Bushart
* Add a HTML escaper to the utils class. * Expand TableSlice, Row, and Cell with HTML printing functions. These are implemented from scratch as they share almost nothing with the line based printing used for text, as HTML directly supports multiline cells. * Add tests to Cell and Table which test the new functionality.
2019-08-25Fixed a few clippy warnings (but not all)Pierre-Henri Symoneaux
2019-08-25As suggested in #103, `printstd` should avoid panicking.Pierre-Henri Symoneaux
Thus, as an improvement, `printstd` now ignores errors, but don't return the printed size anymore. `print_tty` now returns a `Result` and can be used for better control.
2019-08-25Build & test all featuresPierre-Henri Symoneaux
2019-08-25Added dependabot badge to readmePierre-Henri Symoneaux
2019-08-25Merge pull request #113 from phsym/dependabot/cargo/term-0.6dependabot-preview[bot]
2019-08-25Update term requirement from 0.5 to 0.6dependabot-preview[bot]
Updates the requirements on [term](https://github.com/Stebalien/term) to permit the latest version. - [Release notes](https://github.com/Stebalien/term/releases) - [Commits](https://github.com/Stebalien/term/compare/v0.5.0...v0.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-08-25Merge pull request #112 from phsym/ed-2018Pierre-Henri Symoneaux
Updated to rust 2018 edition
2019-08-25Removed unsupported rust versionsPierre-Henri Symoneaux
2019-08-25Updated to rust 2018Pierre-Henri Symoneaux
2019-08-25Merge pull request #105 from vn971/patch-1Pierre-Henri Symoneaux
fix anchor href
2019-08-25Merge pull request #100 from rotty/wip/allow-macro-usePierre-Henri Symoneaux
Fix macros for selective import via `use`
2019-05-02fix anchor hrefVasili Novikov
2019-01-09Fix macros for selective import via `use`Andreas Rottmann
Allow the import of any macro with `use` while not requiring the user to import macros that are invoked by the imported macro. This feature was add with Rust 1.30, so adjust the travis build and README accordingly. This fixes issue #99.
2018-12-17Merge pull request #95 from xanonid/code_style_improvementsPierre-Henri Symoneaux
Improve code style (suggestion by clippy)
2018-10-31Merge pull request #96 from phsym/update_rustPierre-Henri Symoneaux
Updated rust verison in CI
2018-10-31Updated rust verison in CIPierre-Henri Symoneaux
2018-10-24Improve code style (suggestion by clippy)xanonid
- usize never < 0 - convert transmute to casts - simplify condition
2018-09-27Updated Cargo.toml with new releasePierre-Henri Symoneaux
2018-09-27Updated README with new releasePierre-Henri Symoneaux
2018-09-25Merge pull request #92 from phsym/lines_countPierre-Henri Symoneaux
Printing a table returns the number of printed lines
2018-09-24Merge branch 'master' into lines_countPierre-Henri Symoneaux
2018-09-24Verify returned table height in unit testsPierre-Henri Symoneaux
2018-09-23Merge pull request #93 from phsym/format_boxPierre-Henri Symoneaux
Added FORMAT_BOX_CHARS
2018-09-23Added FORMAT_BOX_CHARSPierre-Henri Symoneaux
2018-09-23Updated tictactoe example to change the table in placePierre-Henri Symoneaux
2018-09-22Printing a tables returns the number of printed linesPierre-Henri Symoneaux
2018-09-21Merge pull request #89 from phsym/refactor_modsPierre-Henri Symoneaux
Refactored modules and reexports
2018-09-21cell and row mods become private. Row and Cell are reexported in crate's rootPierre-Henri Symoneaux
2018-09-21Moved CSV module into dedicated filePierre-Henri Symoneaux
2018-09-21Move all CSV stuff into dedicated modulePierre-Henri Symoneaux
2018-09-21Reexport types from crate `csv`Pierre-Henri Symoneaux
2018-09-20Added missing inlined doc about span style stringPierre-Henri Symoneaux
2018-09-19Merge pull request #88 from phsym/deprecationsPierre-Henri Symoneaux
A bunch of deprecations before reducing functions visibility
2018-09-19A bunch of deprecations before reducing functions visibilityPierre-Henri Symoneaux
2018-09-18Merge pull request #85 from phsym/hspanPierre-Henri Symoneaux
Implemented horizontal span
2018-09-18Implemented horizontal spanPierre-Henri Symoneaux
Updated rust compatibility Fixed UT Added span support from macro Example + updated README Small update to README
2018-09-18Merge pull request #86 from phsym/fix_coveragePierre-Henri Symoneaux
Fix code coverage in travis script
2018-09-18Fix code coverage in travis scriptPierre-Henri Symoneaux
2018-09-16Added rust 1.28.0 to the list of version to use in travis scriptPierre-Henri Symoneaux
2018-09-16Merge pull request #84 from silwol/csv-1Pierre-Henri Symoneaux
Update csv to version 1
2018-09-04Update csv to version 1Wolfgang Silbermayr
2018-08-20Merge pull request #82 from pjf/readme_formatsPierre-Henri Symoneaux
Document set_titles() in README, plus bonus tests
2018-08-12README: Document set_titles, use prettyformat::table, plus extra tests!Paul Fenwick
README: - Mention `set_titles()` - Explicitly `use prettytable::format` - Expand sample code to call `set_titles()` and `add_row()`s. lib.rs: - Added test from README code using the longhand FormatBuilder - Added test from README using FORMAT_NO_LINESEP_WITH_TITLE
2018-08-09Reverted csv crate to v0.15 (committed by accident with 1.0.0)Pierre-Henri Symoneaux