Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: Revamped Plugin system #21

Open
wants to merge 51 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
9f5ee7a
Renamed a couple of things to make room for other types of loaders
AKuederle Feb 9, 2023
0fb016f
Started refactoring to make plugins class instances
AKuederle Feb 9, 2023
0602746
Removed pandas deprecation calls
AKuederle Feb 9, 2023
b230873
Implemented general structure for plugin loaders
AKuederle Feb 9, 2023
c4e526a
refactor and lint
AKuederle Feb 9, 2023
4462148
Fixed error when popup was closed without data selection
AKuederle Feb 24, 2023
1a38bf9
Fixed some small bugs and added new keycombo to shift plot
AKuederle Feb 24, 2023
22130fe
Some small fixes
AKuederle Apr 20, 2023
a9e0b54
Save last selected loader plugin
AKuederle Apr 20, 2023
4a2700c
Fully implemented plugin loading with forward backwards buttons
AKuederle Apr 20, 2023
7b4a3fd
Remove debug print
AKuederle Apr 20, 2023
2858dbd
Update
AKuederle Apr 21, 2023
af9f6d8
Update build_windows.yml
MalteOlle May 3, 2023
7e8368e
Update build_windows.yml
MalteOlle May 4, 2023
cf1c001
Update build_windows.yml
MalteOlle May 4, 2023
41dc15a
Update build_windows.yml
MalteOlle May 4, 2023
80132bb
Add files via upload
MalteOlle May 4, 2023
1e70613
Update pyproject.toml
MalteOlle May 4, 2023
26b0e7f
Update build_windows.yml
MalteOlle May 4, 2023
f848eab
Try to fix windows standalone
MalteOlle Jun 2, 2023
6587bbc
Update build_windows.yml
MalteOlle Jun 2, 2023
5facc3e
Update build_mac.yml
MalteOlle Jun 2, 2023
eddb218
Update build_ubuntu.yml
MalteOlle Jun 2, 2023
d8a7746
Update build_mac.yml
MalteOlle Jun 3, 2023
828fe92
try to fix gstreamer installation
MalteOlle Jun 3, 2023
d6a402e
Update build_ubuntu.yml
MalteOlle Jun 3, 2023
cfaa32f
Update pyinstaller.spec
MalteOlle Jun 3, 2023
8b0b74f
Update build_mac.yml
MalteOlle Jun 3, 2023
9c9ddee
Update dodo.py
MalteOlle Jun 3, 2023
52d7569
Update dodo.py
MalteOlle Jun 3, 2023
63f53d4
Update dodo.py
MalteOlle Jun 3, 2023
5f11eb4
Update build_mac.yml
MalteOlle Jun 3, 2023
23f7813
Update build_mac.yml
MalteOlle Jun 3, 2023
bdfb0a3
Update dodo.py
MalteOlle Jun 3, 2023
e68881d
Update dodo.py
MalteOlle Jun 3, 2023
da97a0f
Update dodo.py
MalteOlle Jun 3, 2023
c93b02f
Update dodo.py
MalteOlle Jun 3, 2023
8c99920
Update dodo.py
MalteOlle Jun 3, 2023
ed42b74
Update dodo.py
MalteOlle Jun 3, 2023
9f0fd91
Update dodo.py
MalteOlle Jun 3, 2023
f305e9f
Update dodo.py
MalteOlle Jun 3, 2023
5d82710
Update pyinstaller.spec
MalteOlle Jun 3, 2023
e5ea8aa
Update pyinstaller.spec
MalteOlle Jun 3, 2023
65ab59b
Update build_mac.yml
MalteOlle Jun 3, 2023
4dbb1b4
Update dodo.py
MalteOlle Jun 3, 2023
811b182
Update dodo.py
MalteOlle Jun 3, 2023
5bbe3cf
Update dodo.py
MalteOlle Jun 3, 2023
63e1b98
Update dodo.py
MalteOlle Jun 3, 2023
8b25708
Update build_mac.yml
MalteOlle Jun 3, 2023
403e55d
Update build_mac.yml
MalteOlle Jun 3, 2023
704475f
Update dodo.py
MalteOlle Jun 3, 2023
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
Prev Previous commit
Next Next commit
Fixed error when popup was closed without data selection
  • Loading branch information
AKuederle committed Apr 21, 2023
commit 446214829bf6d11432a369340020e9c829dda9d3
3 changes: 1 addition & 2 deletions mad_gui/windows/main.py
Original file line number Diff line number Diff line change
@@ -483,11 +483,10 @@ def import_data_from_file(self):
self._set_loaded_data(*view.get_data())

def _set_loaded_data(self, data, loader):
self.global_data.start_time = data["start_time"]

if data is None:
return

self.global_data.start_time = data["start_time"]
self.global_data.active_loader = loader
self.global_data.data_file = data.get("data_file_name", "")
self.global_data.sync_file = data.get("sync_file", "")