Skip to content

Commit 747dddc

Browse files
committed
chore: bump up version to 2.2.0
1 parent 8e11516 commit 747dddc

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

build-upm.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ build_android() {
263263
log_success "Android plugin built and copied successfully!"
264264
}
265265

266-
# Function to copy directory contents excluding .meta files
267-
copy_without_meta() {
266+
# Function to copy directory contents including .meta files
267+
copy_with_meta() {
268268
local source="$1"
269269
local destination="$2"
270270

@@ -273,13 +273,13 @@ copy_without_meta() {
273273
return
274274
fi
275275

276-
log_info "Copying $source to $destination (excluding .meta files)..."
276+
log_info "Copying $source to $destination (including .meta files)..."
277277

278278
# Create destination directory
279279
mkdir -p "$destination"
280280

281-
# Use rsync to copy excluding .meta files
282-
rsync -av --exclude="*.meta" "$source/" "$destination/"
281+
# Use rsync to copy everything including .meta files
282+
rsync -av "$source/" "$destination/"
283283

284284
log_success "Copy completed: $source -> $destination"
285285
}
@@ -303,7 +303,7 @@ update_core_assets() {
303303
fi
304304

305305
# Copy core assets
306-
copy_without_meta "$SOURCE_DIR" "$DEST_DIR"
306+
copy_with_meta "$SOURCE_DIR" "$DEST_DIR"
307307

308308
log_success "Core assets updated successfully!"
309309
}
@@ -326,7 +326,7 @@ update_samples() {
326326
sample_name=$(basename "$sample_dir")
327327
dest_sample_dir="$DEST_BASE_DIR/$sample_name"
328328

329-
copy_without_meta "$sample_dir" "$dest_sample_dir"
329+
copy_with_meta "$sample_dir" "$dest_sample_dir"
330330
fi
331331
done
332332

com.questvisionstream/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2.2.0 - 2025-08-23
4+
5+
### Chores
6+
- Add missing .meta files for Samples folder ([8e11516](https://github.com/danieloquelis/Unity-QuestVisionStream/commit/8e1151696f87f44895db41d3dfadf590611edda3))
7+
38
## 2.1.0 - 2025-08-23
49

510
### Chores

com.questvisionstream/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "com.questvisionstream",
33
"displayName": "Quest Vision Stream",
4-
"version": "2.1.0",
4+
"version": "2.2.0",
55
"unity": "6000.0",
6-
"description": "Short one-liner of what your plugin does.",
6+
"description": "A Unity package that enables real-time computer vision operations on Meta Quest headsets using the Passthrough Camera API (PCA) with WebRTC streaming to external GPU servers for AI inference, object detection, and tracking. This solution bypasses traditional HTTP request bottlenecks, delivering seamless real-time performance.",
77
"author": {
88
"name": "Daniel Oquelis",
99
"email": "daniel.oquelis@gmail.com",

0 commit comments

Comments
 (0)