├── .github ├── dependabot.yml ├── release.yml └── workflows │ └── ci.yml ├── .gitignore ├── .idea ├── $CACHE_FILE$ ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main └── kotlin ├── dev └── reimer │ └── progressbar │ └── ktx │ └── ProgressBarExtensions.kt └── me └── tongfei └── progressbar └── InternalConsoleProgressBarConsumer.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "progressbar-ktx" 2 | 3 | -------------------------------------------------------------------------------- /src/main/kotlin/dev/reimer/progressbar/ktx/ProgressBarExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/src/main/kotlin/dev/reimer/progressbar/ktx/ProgressBarExtensions.kt -------------------------------------------------------------------------------- /src/main/kotlin/me/tongfei/progressbar/InternalConsoleProgressBarConsumer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janheinrichmerker/progressbar-ktx/HEAD/src/main/kotlin/me/tongfei/progressbar/InternalConsoleProgressBarConsumer.kt --------------------------------------------------------------------------------