Skip to content

Commit

Permalink
update documentations
Browse files Browse the repository at this point in the history
  • Loading branch information
ctongfei committed Jan 29, 2020
1 parent 705d3b9 commit 246f08a
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

* `0.8.1`:
- Bugfixes:
- Fixed the bug of possible negative suffix length (PR #58). Thanks @kristofarkas !
- Fixed the issue of stepping by -1 when wrapped input stream is depleted (#60, PR #61). Thanks @mordechaim !
- Default value for initial max in progress bar builders should be -1, not 0 (#60, PR #61). Thanks @mordechaim !
- Dependency version bump.

* `0.8.0`:
- Supports loggers (PR #54) by factoring out progress bar consumers and renderers. This allows progress bars to be used with logging libraries such as SLF4J, hence fixing #12 and #18. Thanks @alexpeelman !
- Dependency version bump.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015--2019 Tongfei Chen
Copyright (c) 2015--2020 Tongfei Chen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ A console progress bar for JVM with minimal runtime overhead.

Menlo,
[Fira Mono](https://github.com/mozilla/Fira),
[Source Code Pro](https://github.com/adobe-fonts/source-code-pro) or
[Source Code Pro](https://github.com/adobe-fonts/source-code-pro),
[Iosevka](https://github.com/be5invis/Iosevka), or
[SF Mono](https://developer.apple.com/fonts/) are recommended for optimal visual effects.

For Consolas or Andale Mono fonts, use `ProgressBarStyle.ASCII` because the box-drawing glyphs are not aligned properly in these fonts.
Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
site_name: 'Progressbar 0.8.0'
site_description: 'A console progress bar for Java/JVM'
site_name: 'Progressbar 0.8.1'
site_description: 'A terminal progress bar for Java/JVM'
site_author: 'Tongfei Chen'
copyright: 'Copyright © 2015-2019 Tongfei Chen'
copyright: 'Copyright © 2015-2020 Tongfei Chen'

theme:
name: 'material'
Expand Down
18 changes: 13 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

<groupId>me.tongfei</groupId>
<artifactId>progressbar</artifactId>
<version>0.8.0</version>
<version>0.8.1</version>
<name>progressbar</name>
<description>A console-based progress bar for JVM</description>
<description>A terminal-based progress bar for JVM</description>
<url>http://github.com/ctongfei/progressbar</url>

<properties>
Expand Down Expand Up @@ -70,25 +70,33 @@
<id>alexpeelman</id>
<name>Alex Peelman</name>
</developer>
<developer>
<id>kristofarkas</id>
<name>Kristof Farkas-Pall</name>
</developer>
<developer>
<id>mordechaim</id>
<name>Mordechai Meisels</name>
</developer>
</developers>

<dependencies>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline</artifactId>
<version>3.13.2</version>
<version>3.13.3</version>
</dependency>

<dependency>
<groupId>org.jline</groupId>
<artifactId>jline-terminal-jansi</artifactId>
<version>3.13.2</version>
<version>3.13.3</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<version>4.13</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 246f08a

Please sign in to comment.