179d4346cef09d6ff7bca15f5e040a8a7e1a1f4e
1815
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
179d4346ce |
revert: drop the ZMQ video change from this branch
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / lint (pull_request) Canceled after 22s
CI / test (3.12) (pull_request) Canceled after 20s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Canceled after 7s
CI / test (3.13) (pull_request) Canceled after 17s
CI / test (3.14) (pull_request) Canceled after 15s
CI / test-with-coverage (pull_request) Canceled after 5s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Canceled after 12s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Canceled after 10s
CI / coverage-analysis (pull_request) Canceled after 0s
Committed by mistake in
|
||
|
|
daabf830d7 |
fix: read the aareDB transmission as the percentage it is
CI / lint (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
DataCollectionParameters.transmission is a StrictInt documented as "positive, between 0 and 100" (aareDB's own API description of the spreadsheet payload), while every model that consumes it wants a 0-to-1 fraction. The old "divide by 100 only when above 1.0" guess therefore turned a spreadsheet asking for 1% into a scan at 100% transmission - a hundredfold dose on the sample. A fraction cannot be stored in that column at all: the model rejects 0.2. The mapping test now builds a real DataCollectionParameters instead of a stand-in namespace, so a renamed column fails the test rather than the beamline. That is what let 'totalrange' through. daq.py's spreadsheet_params and get_auto_raster_params still carry both the old column name and the same transmission guess. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JHoUkj66jxByS2ypY5h9Mn |
||
|
|
85e0609aa4 |
fix: read the aareDB total angle from the column that exists
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
The column is totalangle, not totalrange, so reading it raised AttributeError four times a second in the status loop. Reading a spreadsheet cell now goes through _spreadsheet_float, which treats a missing column, an empty cell and a cell that does not hold a number all as "not set" and logs the column once. aareDB owns these names; the GUI should fall back to its defaults when one moves, not die on the status loop it is read from. Note that the same misspelling is still in daq.py (spreadsheet_params and get_auto_raster_params), where getattr's default hides it: automation has never picked up the total angle from the spreadsheet either. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JHoUkj66jxByS2ypY5h9Mn |
||
|
|
fd4b9b3122 |
fix: keep user values in the scan panels across sample mounts
CI / lint (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test (3.12) (push) Skipped
The panels kept the effective detector distance, resolution and transmission in their own attributes, and a sample change overwrote those from the spreadsheet whatever the Database/User toggle said. The fields went on showing the user's numbers while the scan request carried the database ones, so a value had to be re-entered after every mount. The fields are now the only place a value lives. Each setting is worth, in order: what the user typed while "User values" is selected, what the mounted sample asks for, the panel default - one rule, ScanSettingsPanel ._setting, that each panel spells out a line at a time. Overrides are per setting, so a setting the user did not touch keeps following the sample. Along the way: * DbOverrideLineEdit is gone; the panels use NumberLineEdit directly, and the per-widget database/user bookkeeping is replaced by SampleParameters, the one place that knows the aareDB spreadsheet column names. * The (name, widget, converter) mapping loops with getattr/hasattr are replaced by explicit per-field commit slots. * The omega speed cap no longer drives one field's validator from another field's value: it is a read-out plus a check on the pair at Run time. * _add_row/_add_pair_row build the label/field/unit rows, which also puts the Total angle degree sign on its own row instead of the header above. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JHoUkj66jxByS2ypY5h9Mn |
||
|
|
abd061dd43 |
0.22.0
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Successful in 32s
Build and Publish / release (push) Successful in 11s
CI / test (3.12) (push) Successful in 1m8s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m20s
CI / test (3.14) (push) Successful in 1m48s
CI / test-with-coverage (push) Successful in 2m22s
CI / coverage-analysis (push) Skipped
CI / test (3.13) (push) Successful in 3m6s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 3m9s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 3m8s
Automatically generated by python-semantic-releasev0.22.0 |
||
|
|
9c489ffbb5 |
fix: lint error
CI / lint (pull_request) Successful in 47s
CI / test (3.12) (pull_request) Successful in 1m17s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m35s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m43s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m59s
CI / test-with-coverage (pull_request) Successful in 1m50s
CI / coverage-analysis (pull_request) Failing after 4s
CI / test (3.13) (pull_request) Successful in 4m13s
CI / test (3.14) (pull_request) Successful in 4m9s
Docs build and publish / docker (push) Successful in 3s
CI / lint (push) Canceled after 40s
CI / test (3.12) (push) Canceled after 36s
CI / test (3.13) (push) Canceled after 35s
CI / test (3.14) (push) Canceled after 31s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 30s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 25s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 26s
CI / test-with-coverage (push) Canceled after 21s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 21s
|
||
|
|
c32f708716 |
style: increase visibility of separator
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m30s
CI / test (3.12) (pull_request) Successful in 2m2s
CI / test (3.14) (pull_request) Successful in 2m2s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 2m6s
CI / lint (pull_request) Failing after 2m20s
CI / test-with-coverage (pull_request) Successful in 2m5s
CI / test (3.13) (pull_request) Successful in 2m46s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 3m10s
CI / coverage-analysis (pull_request) Failing after 19s
|
||
|
|
cb368f87cd |
fix: increase baton hand over button size and make divider more visible
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Canceled after 0s
CI / test (3.12) (pull_request) Canceled after 0s
CI / test (3.13) (pull_request) Canceled after 0s
CI / test (3.14) (pull_request) Canceled after 0s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Canceled after 0s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Canceled after 0s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Canceled after 0s
CI / test-with-coverage (pull_request) Canceled after 0s
CI / coverage-analysis (pull_request) Canceled after 0s
|
||
|
|
416302224c | feat: 900 Hz at 6d and 120 Hz at 10s for data collection. Paint input correspondingly. | ||
|
|
046720ae43 |
fix: max Chi should be 30 instead of 40
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Successful in 39s
CI / test (3.12) (pull_request) Successful in 58s
CI / test (3.14) (pull_request) Successful in 1m0s
CI / test (3.13) (pull_request) Successful in 1m3s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m12s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m16s
CI / test-with-coverage (pull_request) Successful in 1m27s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m39s
CI / coverage-analysis (pull_request) Failing after 5s
|
||
|
|
85815278bb |
feat: just mount the next sample in the queue list
CI / lint (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / lint (pull_request) Successful in 52s
CI / test (3.12) (pull_request) Successful in 1m2s
CI / test (3.13) (pull_request) Successful in 1m2s
CI / test (3.14) (pull_request) Successful in 1m5s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m7s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m15s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m17s
CI / test-with-coverage (pull_request) Successful in 1m33s
CI / coverage-analysis (pull_request) Failing after 3s
|
||
|
|
50c08853d8 |
feat(gui): hide ML detections by default
Fresh profiles start with the sample-camera ML box overlay off; the QSettings key samcam/show_detections still persists a user opt-in. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> |
||
|
|
4514b3ddec |
0.21.3
Docs build and publish / docker (push) Successful in 3s
Build and Publish / release (push) Successful in 6s
CI / lint (push) Successful in 4m5s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 19m57s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 23m44s
CI / test (3.13) (push) Successful in 29m18s
CI / test (3.14) (push) Successful in 30m30s
CI / test (3.12) (push) Successful in 36m19s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 38m6s
CI / test-with-coverage (push) Successful in 38m48s
CI / coverage-analysis (push) Skipped
Automatically generated by python-semantic-releasev0.21.3 |
||
|
|
da73c15f9a |
fix: add more debug logging to aarescan commands
CI / lint (pull_request) Successful in 38s
CI / test (3.14) (pull_request) Successful in 59s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m13s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m12s
CI / test (3.12) (pull_request) Successful in 1m30s
CI / test (3.13) (pull_request) Successful in 1m31s
CI / test-with-coverage (pull_request) Successful in 3m49s
CI / coverage-analysis (pull_request) Successful in 4s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 18m19s
Docs build and publish / docker (push) Successful in 3s
CI / test (3.13) (push) Canceled after 26s
CI / lint (push) Canceled after 31s
CI / test (3.12) (push) Canceled after 30s
CI / test (3.14) (push) Canceled after 25s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 21s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 20s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 16s
CI / test-with-coverage (push) Canceled after 15s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 12s
|
||
|
|
23a9f2500f |
0.21.2
Docs build and publish / docker (push) Successful in 8s
Build and Publish / release (push) Successful in 7s
CI / lint (push) Successful in 43s
CI / test (3.14) (push) Successful in 55s
CI / test (3.13) (push) Successful in 1m5s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m4s
CI / test-with-coverage (push) Successful in 1m30s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 2m8s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 3m4s
CI / test (3.12) (push) Successful in 3m33s
Automatically generated by python-semantic-releasev0.21.2 |
||
|
|
339f6666da |
fix: add more debug info logging to automation runs
CI / lint (pull_request) Successful in 35s
CI / test (3.12) (pull_request) Successful in 57s
CI / test (3.13) (pull_request) Successful in 1m1s
CI / test (3.14) (pull_request) Successful in 1m8s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m13s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m56s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 3m11s
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Canceled after 45s
CI / test (3.14) (push) Canceled after 38s
CI / test (3.12) (push) Canceled after 43s
CI / test (3.13) (push) Canceled after 40s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 35s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 33s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 30s
CI / test-with-coverage (push) Canceled after 28s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 23s
CI / test-with-coverage (pull_request) Successful in 4m46s
CI / coverage-analysis (pull_request) Failing after 6s
|
||
|
|
cd2b24e368 |
0.21.1
Docs build and publish / docker (push) Successful in 4s
Build and Publish / release (push) Successful in 8s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m1s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m4s
CI / lint (push) Successful in 1m32s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m17s
CI / test (3.14) (push) Successful in 1m56s
CI / test (3.12) (push) Successful in 3m37s
CI / test (3.13) (push) Successful in 4m0s
CI / test-with-coverage (push) Successful in 4m21s
CI / coverage-analysis (push) Skipped
Automatically generated by python-semantic-releasev0.21.1 |
||
|
|
386e301dde |
fix: truncate chi metadata at 0
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m2s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m10s
CI / lint (pull_request) Successful in 1m29s
CI / test (3.13) (pull_request) Successful in 1m26s
CI / test-with-coverage (pull_request) Successful in 1m28s
CI / coverage-analysis (pull_request) Successful in 3s
CI / test (3.14) (pull_request) Successful in 2m3s
CI / test (3.12) (pull_request) Successful in 3m15s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 3m15s
CI / lint (push) Successful in 33s
Docs build and publish / docker (push) Successful in 16s
CI / test (3.12) (push) Canceled after 38s
CI / test (3.14) (push) Canceled after 33s
CI / test (3.13) (push) Canceled after 34s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 29s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 28s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 24s
CI / test-with-coverage (push) Canceled after 23s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 22s
|
||
|
|
3612966c23 |
0.21.0
CI / lint (push) Successful in 34s
Build and Publish / release (push) Successful in 16s
Docs build and publish / docker (push) Successful in 16s
CI / test (3.14) (push) Successful in 1m0s
CI / test (3.13) (push) Successful in 1m2s
CI / test (3.12) (push) Successful in 1m11s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m17s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m18s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m45s
CI / test-with-coverage (push) Successful in 2m16s
CI / coverage-analysis (push) Skipped
Automatically generated by python-semantic-releasev0.21.0 |
||
|
|
0696b583b0 |
test: no need to compare wording
CI / test-with-coverage (pull_request) Successful in 2m23s
CI / lint (pull_request) Successful in 47s
CI / test (3.12) (pull_request) Successful in 58s
CI / test (3.13) (pull_request) Successful in 1m3s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m6s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m6s
CI / test (3.14) (pull_request) Successful in 2m18s
CI / coverage-analysis (pull_request) Successful in 3s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 3m27s
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Canceled after 34s
CI / test (3.12) (push) Canceled after 34s
CI / test (3.13) (push) Canceled after 29s
CI / test (3.14) (push) Canceled after 29s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 24s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 24s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 19s
CI / test-with-coverage (push) Canceled after 19s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 15s
|
||
|
|
47c4e3ab04 |
style: update wording to put action first, for clarity
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test (3.14) (pull_request) Failing after 1m0s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Failing after 1m5s
CI / test (3.12) (pull_request) Failing after 2m20s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Failing after 2m16s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Failing after 2m24s
CI / test-with-coverage (pull_request) Failing after 2m37s
CI / coverage-analysis (pull_request) Skipped
CI / lint (pull_request) Successful in 3m36s
CI / test (3.13) (pull_request) Failing after 4m5s
|
||
|
|
3e5f5fb7a4 | style: rearrange order and give more space to omega symbol | ||
|
|
675dd2c1c3 | feat: make the raster grid stronger and more visible | ||
|
|
d69267473a |
0.20.0
Docs build and publish / docker (push) Successful in 8s
Build and Publish / release (push) Successful in 11s
CI / test (3.14) (push) Successful in 1m0s
CI / test (3.13) (push) Successful in 1m5s
CI / lint (push) Successful in 1m10s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m4s
CI / test (3.12) (push) Successful in 1m21s
CI / test-with-coverage (push) Successful in 1m24s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 2m12s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 2m31s
Automatically generated by python-semantic-releasev0.20.0 |
||
|
|
13a42c98a3 |
feat: pass smargon phi and chi positions to jfjoch
CI / lint (pull_request) Successful in 1m3s
CI / test (3.12) (pull_request) Successful in 1m3s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m3s
CI / test (3.14) (pull_request) Successful in 1m25s
CI / test (3.13) (pull_request) Successful in 1m29s
CI / test-with-coverage (pull_request) Successful in 1m24s
CI / coverage-analysis (pull_request) Failing after 4s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m39s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m48s
Docs build and publish / docker (push) Successful in 10s
CI / lint (push) Successful in 32s
CI / test (3.12) (push) Canceled after 35s
CI / test (3.13) (push) Canceled after 32s
CI / test (3.14) (push) Canceled after 30s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 27s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 25s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 22s
CI / test-with-coverage (push) Canceled after 20s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 19s
|
||
|
|
ce1056cef5 |
0.19.5
Docs build and publish / docker (push) Successful in 12s
CI / lint (push) Successful in 34s
Build and Publish / release (push) Successful in 17s
CI / test (3.12) (push) Successful in 59s
CI / test (3.13) (push) Successful in 1m0s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m15s
CI / test (3.14) (push) Successful in 1m42s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 2m44s
CI / test-with-coverage (push) Successful in 3m5s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 3m15s
Automatically generated by python-semantic-releasev0.19.5 |
||
|
|
52c40da114 |
fix: set zoom to 300 for auto xray center grid prediction
CI / lint (pull_request) Successful in 44s
CI / test (3.14) (pull_request) Successful in 1m4s
CI / test (3.13) (pull_request) Successful in 1m16s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m11s
CI / test (3.12) (pull_request) Successful in 1m56s
CI / test-with-coverage (pull_request) Successful in 1m41s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m50s
CI / coverage-analysis (pull_request) Failing after 6s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 2m7s
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Canceled after 43s
CI / test (3.12) (push) Canceled after 40s
CI / test (3.13) (push) Canceled after 38s
CI / test-with-coverage (push) Canceled after 25s
CI / test (3.14) (push) Canceled after 35s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 33s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 30s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 28s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 19s
|
||
|
|
e35a2f11e3 |
0.19.4
Docs build and publish / docker (push) Successful in 9s
CI / lint (push) Successful in 33s
Build and Publish / release (push) Successful in 9s
CI / test (3.14) (push) Successful in 58s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m11s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m11s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m23s
CI / test-with-coverage (push) Successful in 1m33s
CI / coverage-analysis (push) Skipped
CI / test (3.12) (push) Successful in 2m58s
CI / test (3.13) (push) Successful in 2m57s
Automatically generated by python-semantic-releasev0.19.4 |
||
|
|
d3ff38f484 |
fix: default detector tilt in gui to 0
CI / lint (pull_request) Successful in 47s
CI / test (3.13) (pull_request) Successful in 1m6s
CI / test (3.12) (pull_request) Successful in 1m11s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m8s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m12s
CI / test-with-coverage (pull_request) Successful in 1m32s
CI / coverage-analysis (pull_request) Failing after 4s
CI / test (3.14) (pull_request) Successful in 3m22s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 3m33s
Docs build and publish / docker (push) Successful in 7s
CI / lint (push) Successful in 39s
CI / test (3.12) (push) Canceled after 46s
CI / test (3.13) (push) Canceled after 44s
CI / test (3.14) (push) Canceled after 41s
CI / test-with-coverage (push) Canceled after 31s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 39s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 36s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 34s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 23s
|
||
|
|
9939df6767 | fix: separate detector tilt geometry per beamline | ||
|
|
08866f8cc5 | chore: update jfjoch client dependency | ||
|
|
8cb6ff1828 |
0.19.3
CI / lint (push) Successful in 39s
Docs build and publish / docker (push) Successful in 3s
Build and Publish / release (push) Successful in 7s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m3s
CI / test (3.14) (push) Successful in 1m7s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m9s
CI / test (3.13) (push) Successful in 1m56s
CI / test (3.12) (push) Successful in 3m13s
CI / test-with-coverage (push) Successful in 3m52s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 4m4s
Automatically generated by python-semantic-releasev0.19.3 |
||
|
|
db6b09fa24 |
fix: cached read from BEC client devices
CI / lint (pull_request) Successful in 39s
CI / test (3.12) (pull_request) Successful in 1m0s
CI / test (3.13) (pull_request) Successful in 1m4s
CI / test (3.14) (pull_request) Successful in 1m7s
CI / test-with-coverage (pull_request) Successful in 1m35s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m48s
CI / coverage-analysis (pull_request) Failing after 5s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 3m42s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 3m38s
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Successful in 41s
CI / test (3.12) (push) Canceled after 41s
CI / test (3.13) (push) Canceled after 37s
CI / test (3.14) (push) Canceled after 36s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 32s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 31s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 27s
CI / test-with-coverage (push) Canceled after 26s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 19s
|
||
|
|
e8bd2f59c6 |
fix: adjust gap when changing energy
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
|
||
|
|
116ea179c4 |
0.19.2
Docs build and publish / docker (push) Successful in 5s
Build and Publish / release (push) Successful in 11s
CI / test (3.13) (push) Successful in 1m1s
CI / test (3.14) (push) Successful in 59s
CI / test (3.12) (push) Successful in 1m14s
CI / lint (push) Successful in 1m24s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m16s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 2m8s
CI / test-with-coverage (push) Successful in 2m6s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 2m27s
Automatically generated by python-semantic-releasev0.19.2 |
||
|
|
e027ccbfb1 |
fix: return beam center in correct format
CI / test (3.12) (pull_request) Successful in 1m1s
CI / test (3.14) (pull_request) Successful in 1m1s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m10s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 1m16s
CI / test (3.13) (pull_request) Successful in 1m26s
CI / lint (pull_request) Successful in 1m30s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m33s
Docs build and publish / docker (push) Successful in 3s
CI / lint (push) Canceled after 38s
CI / test (3.12) (push) Canceled after 37s
CI / test-with-coverage (push) Canceled after 22s
CI / test (3.13) (push) Canceled after 33s
CI / test (3.14) (push) Canceled after 32s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 29s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 27s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 23s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 20s
CI / test-with-coverage (pull_request) Successful in 2m45s
CI / coverage-analysis (pull_request) Successful in 7s
|
||
|
|
612ff3978a |
0.19.1
CI / lint (push) Successful in 29s
Docs build and publish / docker (push) Successful in 11s
Build and Publish / release (push) Successful in 13s
CI / test (3.12) (push) Successful in 1m4s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m11s
CI / test (3.13) (push) Successful in 1m18s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m19s
CI / test-with-coverage (push) Successful in 1m26s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m31s
CI / coverage-analysis (push) Skipped
CI / test (3.14) (push) Successful in 2m0s
Automatically generated by python-semantic-releasev0.19.1 |
||
|
|
40ea80bb81 |
fix: add .json to package data
Docs build and publish / docker (push) Successful in 4s
CI / lint (push) Canceled after 33s
CI / test (3.12) (push) Canceled after 32s
CI / test (3.13) (push) Canceled after 28s
CI / test (3.14) (push) Canceled after 27s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 23s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 22s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 18s
CI / test-with-coverage (push) Canceled after 17s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 16s
|
||
|
|
6e1085bfdf | fix: report user friendly error on attempted file overwrite | ||
|
|
c8c41f9cb8 |
0.19.0
Docs build and publish / docker (push) Successful in 4s
Build and Publish / release (push) Successful in 7s
CI / lint (push) Successful in 1m16s
CI / test (3.13) (push) Successful in 1m19s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m22s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m22s
CI / test-with-coverage (push) Successful in 1m20s
CI / coverage-analysis (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m37s
CI / test (3.12) (push) Successful in 2m4s
CI / test (3.14) (push) Successful in 2m17s
Automatically generated by python-semantic-releasev0.19.0 |
||
|
|
8797d555a7 |
feat: add 1D beam center config for 10S
CI / lint (pull_request) Successful in 38s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m4s
CI / test (3.13) (pull_request) Successful in 1m35s
CI / test-with-coverage (pull_request) Successful in 1m39s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 1m46s
CI / test (3.12) (pull_request) Successful in 2m3s
CI / test (3.14) (pull_request) Successful in 2m24s
CI / coverage-analysis (pull_request) Failing after 4s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 2m32s
Docs build and publish / docker (push) Successful in 8s
CI / lint (push) Canceled after 44s
CI / test (3.14) (push) Canceled after 37s
CI / test (3.12) (push) Canceled after 42s
CI / test (3.13) (push) Canceled after 39s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 34s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 32s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 29s
CI / test-with-coverage (push) Canceled after 27s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 20s
|
||
|
|
d53f79ccae |
0.18.0
Docs build and publish / docker (push) Successful in 4s
Build and Publish / release (push) Successful in 7s
CI / lint (push) Successful in 1m9s
CI / test-with-beamline-plugins (pxi_bec) (push) Successful in 1m2s
CI / test-with-coverage (push) Successful in 1m21s
CI / coverage-analysis (push) Skipped
CI / test (3.12) (push) Successful in 1m48s
CI / test-with-beamline-plugins (pxii_bec) (push) Successful in 1m56s
CI / test-with-beamline-plugins (pxiii_bec) (push) Successful in 1m54s
CI / test (3.14) (push) Successful in 2m28s
CI / test (3.13) (push) Successful in 2m32s
Automatically generated by python-semantic-releasev0.18.0 |
||
|
|
49d7089d69 |
fix: add the transmission_updated signal back
CI / test (3.13) (pull_request) Successful in 59s
CI / test (3.14) (pull_request) Successful in 59s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Successful in 1m4s
CI / test (3.12) (pull_request) Successful in 1m24s
CI / test-with-coverage (pull_request) Successful in 1m27s
CI / lint (pull_request) Successful in 1m49s
CI / coverage-analysis (pull_request) Successful in 12s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Successful in 2m22s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Successful in 2m28s
CI / lint (push) Successful in 31s
Docs build and publish / docker (push) Successful in 13s
CI / test (3.12) (push) Canceled after 42s
CI / test (3.13) (push) Canceled after 39s
CI / test (3.14) (push) Canceled after 37s
CI / test-with-beamline-plugins (pxi_bec) (push) Canceled after 34s
CI / test-with-beamline-plugins (pxii_bec) (push) Canceled after 32s
CI / test-with-beamline-plugins (pxiii_bec) (push) Canceled after 29s
CI / test-with-coverage (push) Canceled after 27s
CI / coverage-analysis (push) Canceled after 0s
Build and Publish / release (push) Successful in 15s
|
||
|
|
07e0cad909 |
fix: move beam transmission back and just add a new name for screening transmission
CI / lint (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / test (3.12) (pull_request) Failing after 1m0s
CI / test (3.14) (pull_request) Failing after 1m0s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Failing after 1m16s
CI / lint (pull_request) Successful in 1m29s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Failing after 1m21s
CI / test (3.13) (pull_request) Failing after 1m46s
CI / test-with-coverage (pull_request) Failing after 1m45s
CI / coverage-analysis (pull_request) Skipped
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Failing after 2m12s
|
||
|
|
5515673d81 | feat: allow screening to take a different transmission input | ||
|
|
2ebbcd0b76 | WIP: uv.lock refresh (aarecommon 0.5.4) | ||
|
|
0ba8c5cef6 | feat: add 4x60 and 5x45 for screening | ||
|
|
7b1ee682d1 | feat: demote warning from reference tools so it does not be too obvious in user GUI | ||
|
|
84ab3ce57a | style: check QPushButton height | ||
|
|
3d602931e9 | style: reduce separator hint deplay to 66 |