Skip to content
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Manifest.toml
188 changes: 0 additions & 188 deletions Manifest.toml

This file was deleted.

3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RobotOSData"
uuid = "ec174be4-a9f3-11e8-3a81-af157eca82e9"
authors = ["Damien Drix <damien.drix@gmail.com>"]
version = "0.1.0"
version = "0.1.1"

[deps]
CodecBzip2 = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd"
Expand All @@ -12,6 +12,7 @@ FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
Tokenize = "0796e94c-ce3b-5d07-9a54-7f471281c624"
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
1 change: 0 additions & 1 deletion REQUIRE

This file was deleted.

4 changes: 2 additions & 2 deletions src/RobotOSData.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
module RobotOSData

using FileIO
using UUIDs

function __init__()
# Register the format with FileIO when the module is loaded:
add_format(format"ROSBAG", "#ROSBAG V", ".bag")
add_loader(format"ROSBAG", :RobotOSData)
add_format(format"ROSBAG", "#ROSBAG V", ".bag", [:RobotOSData => UUID("ec174be4-a9f3-11e8-3a81-af157eca82e9")])
end

include("messages.jl")
Expand Down