File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -118,7 +118,11 @@ jobs:
118118 if : startsWith(github.ref, 'refs/tags/') && runner.os != 'Windows'
119119 shell : bash
120120 run : |
121- sha256sum "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
121+ if command -v sha256sum &> /dev/null; then
122+ sha256sum "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
123+ else
124+ shasum -a 256 "${{ env.ZIP_NAME }}" > "${{ env.ZIP_NAME }}.sha256"
125+ fi
122126 cat "${{ env.ZIP_NAME }}.sha256"
123127
124128 - name : Generate checksum (Windows)
Original file line number Diff line number Diff line change 22 "id" : " can-bus-parser" ,
33 "name" : " CAN Bus Parser" ,
44 "description" : " Loads a DBC file and parses CAN frames into signal maps" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " parser" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
Original file line number Diff line number Diff line change 22 "id" : " csv-loader" ,
33 "name" : " CSV Loader" ,
44 "description" : " Loads CSV files and exposes column names" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " data_loader" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
Original file line number Diff line number Diff line change 22 "id" : " fft-toolbox" ,
33 "name" : " FFT Toolbox" ,
44 "description" : " Computes FFT over sample vectors with configurable window functions" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " toolbox" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
Original file line number Diff line number Diff line change 22 "id" : " mcap-loader" ,
33 "name" : " MCAP Loader" ,
44 "description" : " Opens MCAP files and lists available channels" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " data_loader" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
Original file line number Diff line number Diff line change 22 "id" : " ros-bundle" ,
33 "name" : " ROS Bundle" ,
44 "description" : " Meta-extension that groups ROS-related plugins and reports availability" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " toolbox" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
Original file line number Diff line number Diff line change 22 "id" : " ros2-streaming" ,
33 "name" : " ROS 2 Streaming" ,
44 "description" : " Connects to a ROS 2 host and lists available topics" ,
5- "version" : " 1.0.6 " ,
5+ "version" : " 1.0.7 " ,
66 "category" : " data_streamer" ,
77 "min_plotjuggler_version" : " 4.0.0"
88}
You can’t perform that action at this time.
0 commit comments