nfrankel
01/31/2021, 7:37 PMtodd.ginsberg
02/01/2021, 1:37 AMAbhishek Bansal
02/01/2021, 6:29 PMBig Chungus
02/01/2021, 6:30 PMRaul
02/05/2021, 1:44 AMPavel Sidyakin
02/05/2021, 9:42 AMdave
02/06/2021, 11:47 AMNick
02/06/2021, 7:25 PMgammax
02/07/2021, 9:05 AMaltavir
02/08/2021, 9:57 AMBig Chungus
02/09/2021, 12:04 PMSasha Shpota
02/09/2021, 12:59 PMgammax
02/11/2021, 3:37 PMkotlin-android-template
with a setup for easy publishing to Maven Central with Github Actions:
https://github.com/cortinico/kotlin-android-template/pull/31
It uses only first-party plugin, and delegates all the GPG signing and upload to the CI so you don’t have to take care of it 🙂
Also the setup is done with a precompiled script plugin, so if you need something similar you can simply copy this file inside your buildSrc
folder and use it out of the box (works for both Android & Kotlin-only modules).edrd
02/12/2021, 9:09 PMBig Chungus
02/13/2021, 10:58 AMholgerbrandl
02/13/2021, 6:02 PMRobert Jaros
02/14/2021, 2:59 AMio.kvision
group identifier and publication on Maven Central.
- New package names (pl.treksoft.kvision
-> io.kvision
).
- Update to Kotlin 1.4.30 with IR backend enabled by default in all templates and examples.
- Upgraded dependencies (Serialization 1.1.0-RC, Ktor 1.5.1, Javalin 3.13.3, Vert.x 4.0.2, Micronaut 2.3.2, Dokka 1.4.20, Gradle 6.8.1, Bootstrap 4.6.0, NPM Publish 1.1.1)
- Support bidirectional data binding for all form components.
- Support for custom serializers module in the RestClient
component.
- Major performance optimizations.
- Removed deprecated code.
- A lot of bugfixes and other improvements.
See the changelog for more information: https://github.com/rjaros/kvision/releases/tag/4.0.0
As always any feedback is welcomed 🙂gammax
02/15/2021, 5:22 PMNick
02/16/2021, 12:46 AMval ring : Path = ring (center, innerRadius, outerRadius)
val section: Path = ringSection(center, innerRadius, outerRadius, startAngle, endAngle)
• New PathProgressIndicatorBehavior that lets you create progress indicators by outlining a path
object: ProgressIndicator() {
init {
size = Size(200, 100)
progress = 0.25
behavior = PathProgressIndicatorBehavior(
pathMetrics, // injected
path = path("M10 80 C 40 10, 65 10, 95 80 S 150 150, 180 80")!!,
foreground = LinearGradientPaint(Black, Blue, Origin, Point(width, 0.0)),
foregroundThickness = 5.0,
background = Lightgray.paint,
backgroundThickness = 5.0
)
}
}
• New BasicCircularProgressBehavior to replace the old with more flexibility/configurability
• Updated BasicCircularSliderBehavior so it can have Fills instead of just Colors and exposed thickness
• BasicProgressBarBehavior now takes an optional background Fill, configurable outline thickness, foreground and background corner radii
• Stroke can now be filled with any supported Paint, instead of just Color
, and now support dash offset
canvas.rect(rectangle = bounds.atOrigin.inset(10.0),
radius = 10.0,
stroke = Stroke(fill = LinearGradientPaint(Red, Green, Origin, Point(width, height)), thickness = 20.0))
See the full release notes for more details.
Slack ConversationAli Albaali
02/16/2021, 10:24 PMJulien Salvi
02/18/2021, 6:21 PMMustafa Ozhan
02/18/2021, 9:10 PMBig Chungus
02/19/2021, 1:02 PMcom.github.mpetuska:khakra:0.1.0
Slack ConversationVishal Choudhary
02/19/2021, 8:56 PMaltavir
02/21/2021, 2:47 PMrepo.kotlin.link
(thanks @irus!). It includes numerous fixes and new features, including bindings for new libraries, automatic differentiation API and even basic symbolic operations (it was unexpected). The detailed description is here: https://kotlinlang.slack.com/archives/CE5HPKBRN/p1613918644018900Malvin Sutanto
02/24/2021, 1:20 AMRobert Jaros
02/24/2021, 3:11 PM@DslMarker
annotations for better control over DSL builders scopes.
- Externalize routing to optional modules with support for Navigo 8+.
- Support additional translation parameters.
- Support for manual binding form controls inside FormPanel
container (direct form layout management).
See the changelog for more information: https://github.com/rjaros/kvision/releases/tag/4.1.0
As always any feedback is welcomed 🙂skalable.dev
02/24/2021, 4:23 PMRobert Jaros
02/24/2021, 7:18 PM