Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

rerun-io/rerun

emilk deleted a branch rerun-io/rerun

jleibs/string_name_selectors

emilk closed a pull request on rerun-io/rerun
Allow a Column selector to be specified directly by a string
### What - Needing to use `rr.dataframe.ColumnSelector(...)` is a pain. - Allow the syntax: "entity/path:Component" Based on top of: - https://github.com/rerun-io/rerun/pull/7761 to avoid conflic...
github-actions[bot] created a comment on a pull request on rerun-io/rerun
<!-- add-pr-comment:add-pr-comment --> ## Deployed docs | Commit | Link | | ------- | ----- | | 1d9bfa10f896f7c97c260fa7cc5cc2348a1a0aaf | https://landing-i4ss9nuxd-rerun.vercel.app/docs |

View on GitHub

rerun-bot opened a pull request on rerun-io/rerun
Release 0.19.0-alpha.13
### Next steps - Test the release - If this is an 'alpha' release, you can just merge the pull request. - Otherwise: - For any added commits, run the release workflow in 'rc' mode again - After...
rerun-bot pushed 1 commit to release-0.19.0-alpha.13 rerun-io/rerun
  • Bump versions to 0.19.0-alpha.13 1d9bfa1

View on GitHub

emilk created a comment on an issue on rerun-io/rerun
How would this differ from https://github.com/rerun-io/rerun/blob/main/docs/content/howto/dataframe-api.md ?

View on GitHub

github-actions[bot] pushed 1 commit to gh-pages rerun-io/rerun
  • Update docs for fedc96215383136d15fde2d9c2c174aabc9df95f 2e494cd

View on GitHub

emilk created a branch on rerun-io/rerun

release-0.19.0-alpha.13 - Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui.

emilk pushed 15 commits to jleibs/string_name_selectors rerun-io/rerun
  • Docs: move "roadmap" down to "development" (#7775) d911c5c
  • Add a "Getting started" guide for the dataframe API (#7643) ### What WIP getting started guide. A skeleton with s... 072070f
  • Fix dataframe table view auto-scroll bug (#7774) ### Checklist * [x] I have read and agree to [Contributor Guide](... df2acea
  • Docs: clean up reference menu (#7776) 4469c1e
  • Dataframe v2: fix broken assertion (#7777) 1f978f5
  • Updating "Navigating the viewer" (#7757) Updating screenshots and editing a few paragraphs for Navigating the Viewe... d311acd
  • Doc page improvements for instancing & video (#7778) ### What * more cross linking * recycle instancing example ... f4efb80
  • Update the "what is Rerun for?" page (#7780) e61d0a0
  • Update "What is Rerun?" page (#7716) 45d8af4
  • Add draft of 0.19 changelog and release notes (#7781) 899a348
  • Fix trying to build missing data-out snippets (#7783) * [x] yes! db47d92
  • Rename: Analyze and log -> Analyze and send (#7784) ### Checklist * [x] I have read and agree to [Contributor Guid... f8dfea9
  • Allow splitting entity path expressions with whitespace (#7782) ### What - Resolves: https://github.com/rerun-io/re... d6d8275
  • Fix python docstrings for dataframe APIs (#7761) ### What - Resolves: https://github.com/rerun-io/rerun/issues/7760... fedc962
  • Merge branch 'main' into jleibs/string_name_selectors abf1b5d

View on GitHub

emilk pushed 1 commit to main rerun-io/rerun
  • Fix python docstrings for dataframe APIs (#7761) ### What - Resolves: https://github.com/rerun-io/rerun/issues/7760... fedc962

View on GitHub

emilk deleted a branch rerun-io/rerun

jleibs/validate_pyi_docstrings

emilk closed an issue on rerun-io/rerun
Python APIs need docstrings and generated docs
The docstrings in the `.pyi` file are only used in code-completion tools but NOT in many tools such as notebook help contexts. Ideally we would lint that these always match for consistency. R...
emilk closed an issue on rerun-io/rerun
Python APIs need docstrings and generated docs
The docstrings in the `.pyi` file are only used in code-completion tools but NOT in many tools such as notebook help contexts. Ideally we would lint that these always match for consistency. R...
emilk closed a pull request on rerun-io/rerun
Fix python docstrings for dataframe APIs
### What - Resolves: https://github.com/rerun-io/rerun/issues/7760 - Confirms that every item in `rerun_bindings.pyi` has a docstring - Validates that the docstrings from the .pyi actually match th...
emilk created a review on a pull request on rerun-io/rerun
⭐⭐⭐

View on GitHub

github-actions[bot] pushed 1 commit to gh-pages rerun-io/rerun
  • Update docs for d6d8275802d7d99060f225d8890bb2ba777c33e0 d526b6d

View on GitHub

emilk deleted a branch rerun-io/rerun

jleibs/split_on_whitespace

emilk closed an issue on rerun-io/rerun
Complex content expressions don't parse in dataframe API
Example: ```python view = recording.view(index="timestamp", contents={"/** -/map/ego_vehicle/ego_vehicle/**": ["Scalar", "RotationQuat", "Translation3D"]}) ```
emilk pushed 1 commit to main rerun-io/rerun
  • Allow splitting entity path expressions with whitespace (#7782) ### What - Resolves: https://github.com/rerun-io/re... d6d8275

View on GitHub

emilk closed an issue on rerun-io/rerun
Complex content expressions don't parse in dataframe API
Example: ```python view = recording.view(index="timestamp", contents={"/** -/map/ego_vehicle/ego_vehicle/**": ["Scalar", "RotationQuat", "Translation3D"]}) ```
emilk closed a pull request on rerun-io/rerun
Allow splitting entity path expressions with whitespace
### What - Resolves: https://github.com/rerun-io/rerun/issues/7740 This is a little tricky since we don't want to split on whitespace that happens to show up between a + or - and the expression. ...
emilk created a review on a pull request on rerun-io/rerun

View on GitHub

emilk pushed 1 commit to jleibs/string_name_selectors rerun-io/rerun

View on GitHub

emilk created a review comment on a pull request on rerun-io/rerun
```suggestion PyValueError::new_err(format!("Invalid component path {name:?}: {err}")) ``` (so newlines etc get escaped)

View on GitHub

emilk created a review on a pull request on rerun-io/rerun
nice

View on GitHub

emilk created a review on a pull request on rerun-io/rerun
nice

View on GitHub

emilk pushed 1 commit to jleibs/split_on_whitespace rerun-io/rerun
  • Remove duplicate in labels CI job 50ffbd8

View on GitHub

emilk created a review comment on a pull request on rerun-io/rerun
```suggestion labels: "📊 analytics, 🟦 blueprint, 🪳 bug, 🌊 C++ API, CLI, codegen/idl, 🧑‍💻 dev experience, dependencies, 📖 documentation, 💬 discussion, examples, exclude from changelog, 🪵 ...

View on GitHub

emilk created a review on a pull request on rerun-io/rerun

View on GitHub

github-actions[bot] created a tag on rerun-io/rerun

prerelease - Visualize streams of multimodal data. Fast, easy to use, and simple to integrate. Built in Rust using egui.

Load more