Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-ios-arm64/liblivekit_ffi.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-ios-sim-arm64/liblivekit_ffi.a
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-linux-arm64/liblivekit_ffi.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-linux-x86_64/liblivekit_ffi.so
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-macos-arm64/liblivekit_ffi.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-macos-x86_64/liblivekit_ffi.dylib
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-windows-arm64/livekit_ffi.dll
Git LFS file not shown
4 changes: 2 additions & 2 deletions Runtime/Plugins/ffi-windows-x86_64/livekit_ffi.dll
Git LFS file not shown
2 changes: 1 addition & 1 deletion client-sdk-rust~
5 changes: 3 additions & 2 deletions install.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import urllib.request
import urllib.parse
import configparser
import zipfile

Expand All @@ -13,7 +14,7 @@ def show_progress(block_num, block_size, total_size):
def main():
config = configparser.ConfigParser()
config.read('version.ini')
version = config['ffi']['version']
tag_path = urllib.parse.quote(config['ffi']['tag'], safe='')

for platform in platforms:
archs = ['arm64', 'x86_64']
Expand All @@ -24,7 +25,7 @@ def main():

for arch in archs:
filename = 'ffi-' + platform + '-' + arch + '.zip'
url = config['ffi']['url'] + '/ffi-' + version + '/' + filename
url = f"{config['ffi']['url']}/{tag_path}/{filename}"
file_to_download = download_dir + '/' + filename
if download_file_if_not_exists(url, file_to_download) :
dest = 'Runtime/Plugins' + '/ffi-' + platform + '-' + arch
Expand Down
2 changes: 1 addition & 1 deletion version.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[ffi]
version = v0.12.2
tag = rust-sdks/livekit-ffi@0.12.10
url = https://github.com/livekit/rust-sdks/releases/download