Skip to content

Releases: shogo4405/HaishinKit.kt

0.14.1

29 Nov 05:06
Compare
Choose a tag to compare

0.14.0

08 Nov 17:18
Compare
Choose a tag to compare
  • Bump to up compileSdk and targetSdk 35

What's Changed

  • Bump rexml from 3.3.2 to 3.3.3 by @dependabot in #296
  • Bump androidx.lifecycle:lifecycle-runtime-ktx from 2.8.3 to 2.8.4 by @dependabot in #295
  • Bump androidx.annotation:annotation-jvm from 1.8.0 to 1.8.1 by @dependabot in #294
  • Bump androidx.activity:activity-compose from 1.9.0 to 1.9.1 by @dependabot in #293
  • Bump rexml from 3.3.3 to 3.3.6 by @dependabot in #306
  • Bump androidx.annotation:annotation-jvm from 1.8.1 to 1.8.2 by @dependabot in #300
  • Bump com.google.accompanist:accompanist-pager-indicators from 0.35.1-alpha to 0.36.0 by @dependabot in #310
  • Bump to up compileSdk and targetSdk 35 by @shogo4405 in #314
  • Bump rexml from 3.3.6 to 3.3.9 by @dependabot in #319

Full Changelog: 0.13.7...0.14.0

0.13.7

18 Jul 12:58
c5e61ec
Compare
Choose a tag to compare

We are using version 0.13.6 of the API, but I'm updating libraries and other dependencies.

Full Changelog: 0.13.6...0.13.7

0.13.6

07 Apr 12:06
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.13.5...0.13.6

0.13.5

31 Mar 15:09
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.13.4...0.13.5

0.13.4

24 Mar 08:38
Compare
Choose a tag to compare

Enhanced RTMP now supports HEVC playback and ingest.

stream.videoSetting.profileLevel = VideoCodecProfileLevel.HEVC_MAIN_3_1

What's Changed

  • Bump com.airbnb.android:lottie from 6.3.0 to 6.4.0 by @dependabot in #226
  • Bump org.jetbrains.dokka:dokka-gradle-plugin from 1.9.10 to 1.9.20 by @dependabot in #227
  • Bump com.android.tools.build:gradle from 8.2.2 to 8.3.0 by @dependabot in #225
  • Support for HEVC and AV1 codecs to the VideoCodec. by @shogo4405 in #228
  • Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.22 to 1.9.23 by @dependabot in #230
  • Bump org.jetbrains.kotlin.android from 1.9.22 to 1.9.23 by @dependabot in #229
  • Bump com.android.tools.build:gradle from 8.3.0 to 8.3.1 by @dependabot in #231

Full Changelog: 0.13.3...0.13.4

0.13.3

03 Mar 15:29
Compare
Choose a tag to compare

Full Changelog: 0.13.2...0.13.3

0.13.2

24 Feb 06:19
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.13.1...0.13.2

0.13.1

12 Feb 13:30
Compare
Choose a tag to compare

I've added classes to enable the use of Lottie animations in live video streams.

Full Changelog: 0.13.0...0.13.1

0.13.0

04 Feb 05:07
Compare
Choose a tag to compare

Implemented the off-screen rendering feature. Our aim is to programmatically edit videos.

stream.attachVideo(cameraSource)

val text = Text()
text.textSize = 60f
text.textValue = "23:44:56"
text.layoutMargins.set(0, 0, 16, 16)
text.horizontalAlignment = ScreenObject.HORIZONTAL_ALIGNMENT_RIGHT
text.verticalAlignment = ScreenObject.VERTICAL_ALIGNMENT_BOTTOM
stream.screen.addChild(text)

val image = Image()
image.bitmap = BitmapFactory.decodeResource(resources, R.drawable.game_jikkyou)
image.verticalAlignment = ScreenObject.VERTICAL_ALIGNMENT_BOTTOM
image.frame.set(0, 0, 180, 180)
stream.screen.addChild(image)

What's Changed

Full Changelog: 0.12.0...0.13.0