Skip to content

Commit 7876bc3

Browse files
committed
fix release upload, update ROADMAP
1 parent b1eeebe commit 7876bc3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build-win.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ jobs:
3434

3535
- name: Zip for release
3636
if: startsWith(github.ref, 'refs/tags/')
37-
run: cd build/dist/chirplab; zip -r chirplab_${{ github.ref_name }}_win.zip *; cd ../../../
37+
run: |
38+
cd build/dist/chirplab
39+
Compress-Archive -Path ./* -DestinationPath chirplab_${{ github.ref_name }}_win.zip
40+
cd ../../../
3841
3942
- name: Add bundle to release
4043
if: startsWith(github.ref, 'refs/tags/')

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Features in each subheading are ordered roughly in order of prioritization. This
7777
- [x] Waterfall
7878
- [x] Basic frequency response fixed window parameters plus start/end times and number of time slices
7979
- [ ] 3D plotting
80-
- Mostly works using matplotlib, there are a couple issues in bundled .exe. Performance is worse, and the plot rotates around the center point without constraining the Z axis to vertical...
80+
- Mostly works using matplotlib, but performance is bad
8181
- Would be nice to do everything with pyqtgraph, but its 3D plotting isn't as easy/mature and is half-deprecated with old OpenGL stuff. They will probably eventually switch to VisPy, but that seems to have basically the same usability issues for 3D. There are stubs for 3D plotting with pyqtgraph and VisPy in Waterfall.py
8282
- Color-coding the surface plot could help highlight problem resonances. Simple blue to orange gradient vs time? Gradient for time multiplied by amplitude (either absolute amplitude or relative to t0 for that frequency)?
8383
- Maybe have a toggle to plot color-coded 2D. The 2D plotting is still in the code but skipped

0 commit comments

Comments
 (0)