Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: mrousavy/nitro

Release 0.26.3

30 Jun 16:07
Compare
Choose a tag to compare
Loading

0.26.3 (2025-06-30)

✨ Features

  • AddArrayBuffer.wrap(HardwareBuffer) API (#691) (52ff673)

🐛 Bug Fixes

📚 Documentation

Assets3
Loading
petrichor-hl, SMhdAsadi, Splicer97, christophemenager, erwanlpfr, and khorark reacted with thumbs up emoji
6 people reacted

Release 0.26.2

06 Jun 12:19
Compare
Choose a tag to compare
Loading

0.26.2 (2025-06-06)

✨ Features

🐛 Bug Fixes

  • Always generate.gitattributes - boolean flag controlslinguist-generated now (#684) (118e2b4)
Loading
Splicer97 and christophemenager reacted with thumbs up emoji
2 people reacted

Release 0.26.1

05 Jun 12:38
Compare
Choose a tag to compare
Loading

0.26.1 (2025-06-05)

🐛 Bug Fixes

  • Clear Promise callbacks after resolve or reject to prevent JNI dtor error (#683) (72e7cab)

📚 Documentation

  • AddHybrid Views docs to Concepts (f28760a)
Loading
Splicer97, dantrongamz, petrichor-hl, and SMhdAsadi reacted with thumbs up emoji
4 people reacted

Release 0.26.0

05 Jun 08:23
Compare
Choose a tag to compare
Loading

0.26.0 (2025-06-05)

✨ Features

🐛 Bug Fixes

  • Don't wrap inherited callbacks in Views ({ f: … }) (#618) (6957f31)
  • Ensure JNI global ref is released withjni::ClassLoader (#666) (0589b25)
  • Fix boolean properties withhas prefix generating wrong names (#649) (d48a168)
  • Fix Xcode build error by making variants of enumsindirect (#679) (410398a)
  • Prevent crash when returning callback functions by safely capturing JNI references as globals (#655) (1c5f713)

📚 Documentation

Loading
Splicer97 reacted with thumbs up emojipatrickkabwe, jordankkk, and SMhdAsadi reacted with rocket emoji
4 people reacted

Release 0.25.2

19 Mar 12:39
Compare
Choose a tag to compare
Loading

0.25.2 (2025-03-19)

🐛 Bug Fixes

📚 Documentation

Loading
Splicer97, mensonones, and petrichor-hl reacted with thumbs up emoji
3 people reacted

Release 0.25.1

10 Mar 11:36
Compare
Choose a tag to compare
Loading

0.25.1 (2025-03-10)

🐛 Bug Fixes

  • Fix prop parsing for enums/unions in Swift HybridViews (#609) (d427865)
Loading
Splicer97, saad277, and anhtuank7c reacted with thumbs up emoji
3 people reacted

Release 0.25.0

06 Mar 14:40
Compare
Choose a tag to compare
Loading

0.25.0 (2025-03-06)

✨ Features

💨 Performance Improvements

  • Use.find(..) for cache lookups (4733b4e)

🐛 Bug Fixes

  • Add additional nullptr check tomake_shared_from_jni function (#584) (b9ce746)
  • CorrectHybridView platform detection forTypeAliasDeclarations (#595) (60bedc5)
  • Fix getting Thread Name on iOS (useNSThread) (#585) (5bcf119)
  • Fully support Variants in Swift & Kotlin (#605) (062f075)
  • MakeArrayBuffer::copy(..) methodsconst (#596) (13e9977)
  • removes deprecatedHybridObjectRegistry from template (#586) (f789624)

📚 Documentation

Loading
Splicer97, lin72h, petrichor-hl, and saad277 reacted with thumbs up emojimensonones, lin72h, and patrickkabwe reacted with hooray emoji
6 people reacted

Release 0.24.1

24 Feb 16:05
Compare
Choose a tag to compare
Loading

0.24.1 (2025-02-24)

⚠️ BREAKING CHANGES

  • AllHybridView classes now need to take in a single parameter for their constructor:context: ThemedReactContext98a7855
- class HybridCameraView : HybridCameraViewSpec() {+ class HybridCameraView(val context: ThemedReactContext) : HybridCameraViewSpec() {

✨ Features

  • Addcontext as a parameter toHybridViews (#583) (98a7855)

💨 Performance Improvements

  • ReplacegetClass() withjavaClassStatic() (#582) (6e2dbea)

🐛 Bug Fixes

  • Generate separate function forinvoke_cxx (#581) (12d10c8)

📚 Documentation

  • Add Ko-Fi to sponsor/funding page (757c670)
Loading
Splicer97, mensonones, lin72h, petrichor-hl, and kimkanu reacted with thumbs up emoji
5 people reacted

Release 0.24.0

24 Feb 14:42
Compare
Choose a tag to compare
Loading

0.24.0 (2025-02-24)

✨ Features

  • CreateSync<T> to pass fully synchronous JS callbacks (#564) (4d07b2a)

💨 Performance Improvements

🐛 Bug Fixes

  • Fix a case where anullptrBorrowingReference<T> could be accessed (#568) (0c5e716)
  • Fix implicitsize_t conversion (#572) (2e57992)
  • Log proper genericT types when throwing exceptions (#566) (4d7cf32)

📚 Documentation

  • Add docs forSync<T> functions andgetHybridObjectConstructor<T>(..) usage (#571) (e10192b)
  • Add example to README (#569) (55f654b)
  • Add explicitly call to HybridObject constructor (#366) (753f939)
  • fix typo (#570) (5e4f44b)
  • Fix typo in nitro views documentation (#562) (a5e06a9)
  • Rename onBeforeUpdate and onAfterUpdate (#563) (34d14e9)
  • Update examples to show correct props & methods types (#559) (1f38da5)
Loading
Splicer97, mensonones, and lin72h reacted with thumbs up emoji
3 people reacted

Release 0.23.0

21 Feb 15:32
Compare
Choose a tag to compare
Loading

0.23.0 (2025-02-21)

Nitro Views!!!! 🥳

This release includes first-class support for creating React Native views with Nitro. See theView components docs for more information.

exportinterfaceCameraProps{enableFlash:boolean}exportinterfaceCameraMethods{takePhoto():Promise<Image>}exporttypeCameraView=HybridView<CameraProps,CameraMethods>

..each HybridView is also a HybridObject, so you can access props and methods on it and pass it around like any other HybridObject - you can even pass Swift/Kotlin views to C++ and use them without bridging between languages yourself!!
Also, they're faster.

Note: Nitro Views require react-native 0.78.0+, and only work on the new architecture.

✨ Features

  • Nitro Views!!!!!!!!! 🥳 (#512) (28f9c4a)
  • Add example to pass a HybridView to a normal HybridObject (#556) (a556b5b)
  • Add extra path forcloneProps to make sure we dont ever use folly (#551) (29068e4)
  • Set uphybridRef (#553) (4111c67)
  • Treat HybridViews differently now - they're type aliases (#552) (fa8ede8)

🐛 Bug Fixes

  • [HybridViews] Automatically wrap all function props as objects (#550) (5e6b589)
  • Append.gitattributes file as well (#532) (ff9d709)
  • Fixf.path sometimes being undefined (#533) (4907639)
  • Fix crash when no modules are registered (#536) (bff32c0)
  • Generate@JvmName prop for Kotlin methods (#534) (897b5c6)
  • HybridView is now a union type.. (#557) (834f493)

📚 Documentation

Loading
petrichor-hl, YangJonghun, flodlc, Splicer97, baronha, dawidzawada, lin72h, leegeunhyeok, ramyareye, DorianMazur, and 2 more reacted with thumbs up emojimrakesh0608, YangJonghun, flodlc, mensonones, patrickkabwe, dawidzawada, mobtex, keeslinp, lin72h, leegeunhyeok, and 4 more reacted with hooray emojijpudysz, patrickkabwe, dawidzawada, akuul, ISnowFoxI, dannyhw, anisurrahman072, saad277, and kimkanu reacted with heart emoji
25 people reacted
Previous1345
Previous

[8]ページ先頭

©2009-2025 Movatter.jp