-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
285 changed files
with
3,508 additions
and
4,420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Changelog | ||
|
||
## [3.0] - 2022-06-24 | ||
### Added | ||
- Support multiple series (`Matrix` columns) on `lineplot` and `scatterplot` (and mutating versions). | ||
- Support `width = :auto` and `height = :auto` for creating a plot based on the current terminal size. | ||
- Add `array` keyword to heatmap for matrix display in array convention. | ||
- Add `dscale` support for `densityplot` (e.g. peak damping). | ||
- Add `ColorSchemes.jl` dependency following colormaps removal. | ||
- Add `xflip` and `yflip` for reversing/flipping the axes. | ||
- Add `head_tail_frac` for `lineplot` using `head_tail`. | ||
- Reduce number of exported symbols (canvas related). | ||
- Support `vline!` and `hline!`. | ||
- Buffering `i/o` (performance). | ||
- Add `CHANGELOG.md` file. | ||
|
||
### Changed | ||
- Swap `width` and `height` of internal `grid` and `colors` buffer. | ||
- Rename `printrow` to `print_row`. | ||
- `spy` default title. | ||
|
||
### Removed | ||
- All marked deprecated functions, keywords and tests. | ||
- All hard-coded colormap tables (replaced by `ColorSchemes`). | ||
- Functor `scale` support. | ||
|
||
## [2.12] - 2022-05-24 | ||
### Changed | ||
- Lazily load `FreeTypeAbstraction`. | ||
|
||
## [2.11] - 2022-04-26 | ||
### Added | ||
- `polarplot`. | ||
- Support vertical histogram through `vertical` argument. | ||
|
||
## [2.10] - 2022-03-23 | ||
### Added | ||
- `savefig` supports exporting to `png` files through `FreeTypeAbstraction`. | ||
- Add support for `24bit` (true colors). | ||
|
||
## [2.9] - 2022-02-22 | ||
### Added | ||
- Add `Unitful` support for `lineplot` and `scatterplot`. | ||
- Add `xticks` and `yticks` to disable drawing ticks. | ||
|
||
## [2.8] - 2022-02-07 | ||
### Added | ||
- Add `head_tail` in order to mimic an arrow using colors. | ||
- Add `surfaceplot` and `isosurface` (3D plots). | ||
|
||
### Changed | ||
- Support vector of colors `barplot`, `boxplot`. | ||
- `surfaceplot` interpolation & performance. | ||
|
||
## [2.7] - 2022-01-23 | ||
### Changed | ||
- Crayons `4.1` | ||
|
||
### Removed | ||
- Support for julia `1.0`. | ||
|
||
## [2.6] - 2022-01-19 | ||
### Added | ||
- Add `contourplot`. | ||
|
||
### Changed | ||
- Rework documentation, automate generation of docstrings and `README.md`. | ||
- `heatmap` and `spy` aspect ratios. | ||
|
||
## [2.5] - 2021-11-28 | ||
### Add | ||
- `spy`: allow showing zero pattern. | ||
|
||
### Changed | ||
- Defaults to unicode exponent on non-identity scales. | ||
- Rename `xyscale` to `xyfact`. | ||
|
||
## [2.4] - 2021-09-14 | ||
- Add support for text annotations on an existing plot. | ||
- Add `compact` for saving plot space. | ||
- Add marker support. | ||
|
||
## [2.3] - 2021-09-07 | ||
### Changed | ||
- Fix incorrect braille canvas spacing. | ||
|
||
## [2.2] - 2021-09-06 | ||
### Added | ||
- Support `x` and `y` axes scaling (e.g. log-log plots). | ||
|
||
### Changed | ||
- Enhance resolution of histogram. | ||
|
||
## [2.1] - 2021-09-03 | ||
### Changed | ||
- Move `UnicodePlots` to the `JuliaPlots` organization. | ||
|
||
## [2.0] - 2021-08-19 | ||
### Added | ||
- `Dates` support. | ||
- Basic `savefig` for `.txt` files. | ||
|
||
### Changed | ||
- Bring back CI and support julia `1.6`. | ||
- Avoid drawing pixels out of canvas bounds. | ||
- Switch to `compact` repr for floats. | ||
- `spy` for `coo`. | ||
|
||
### Removed | ||
- Travis CI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,10 @@ uuid = "b8865327-cd53-5732-bb35-84acbb429228" | |
license = "MIT" | ||
desc = "Unicode-based scientific plotting for working in the terminal" | ||
authors = ["Christof Stocker <[email protected]>", "T Bltg <[email protected]>"] | ||
version = "2.12.4" | ||
version = "3.0.0" | ||
|
||
[deps] | ||
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4" | ||
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" | ||
Contour = "d38c429a-6771-53c6-b99e-75d170b6e991" | ||
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f" | ||
|
@@ -23,16 +24,17 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | |
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" | ||
|
||
[compat] | ||
ColorTypes = "0.10, 0.11" | ||
Contour = "0.5" | ||
ColorSchemes = "3.19" | ||
ColorTypes = "0.11" | ||
Contour = "0.5 - 0.6" | ||
Crayons = "4.1" | ||
FileIO = "1" | ||
FreeTypeAbstraction = "0.9" | ||
LazyModules = "0.3" | ||
MarchingCubes = "0.1" | ||
NaNMath = "0.3, 1" | ||
StaticArrays = "0.12, 1" | ||
StatsBase = "0.32, 0.33" | ||
NaNMath = "1" | ||
StaticArrays = "1" | ||
StatsBase = "0.33" | ||
Unitful = "1" | ||
julia = "1.6" | ||
|
||
|
Oops, something went wrong.
d7f22a4
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.
@JuliaRegistrator register
d7f22a4
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.
Registration pull request created: JuliaRegistries/General/62997
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: