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
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = tab
indent_size = 4
max_line_length = 120

# YAML doesn't support hard tabs 🙃
[**.yml]
indent_style = space
indent_size = 2
20 changes: 19 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,25 @@ jobs:

# We need gstreamer installed to compile this repo
- name: Setup GStreamer
uses: blinemedical/setup-gstreamer@v1
run: |
sudo apt-get update
sudo apt-get remove libunwind-*
sudo apt-get install -y \
libgstreamer1.0-dev \
libgstreamer-plugins-base1.0-dev \
libgstreamer-plugins-bad1.0-dev \
gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-libav \
gstreamer1.0-tools \
gstreamer1.0-x \
gstreamer1.0-alsa \
gstreamer1.0-gl \
gstreamer1.0-gtk3 \
gstreamer1.0-qt5 \
gstreamer1.0-pulseaudio

# Make sure u guys don't write bad code
- run: cargo test --verbose
Expand Down
4 changes: 4 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# i die on this hill
hard_tabs = true

max_width = 120
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.7](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.6...moq-gst-v0.1.7) - 2025-01-30

### Other

- update Cargo.lock dependencies

## [0.1.6](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.5...moq-gst-v0.1.6) - 2025-01-16

### Other

- update Cargo.lock dependencies

## [0.1.5](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.4...moq-gst-v0.1.5) - 2025-01-16

### Other

- Support fetching fingerprint via native clients. ([#286](https://github.com/kixelated/moq-rs/pull/286))
- Initial WASM contribute ([#283](https://github.com/kixelated/moq-rs/pull/283))

## [0.1.4](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.3...moq-gst-v0.1.4) - 2025-01-13

### Other

- update Cargo.lock dependencies

## [0.1.3](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.2...moq-gst-v0.1.3) - 2025-01-13

### Other

- updated the following local packages: moq-native

## [0.1.2](https://github.com/kixelated/moq-rs/compare/moq-gst-v0.1.1...moq-gst-v0.1.2) - 2024-12-04

### Other

- updated the following local packages: moq-karp

## [0.1.1](https://github.com/kixelated/moq-gst/compare/v0.1.0...v0.1.1) - 2024-11-09

### Other
Expand Down
Loading