-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.2 Release Highlights: - Waffle Method Integration - New User Interface - Minimap Integration
- Loading branch information
1 parent
028a4f6
commit c5b7189
Showing
65 changed files
with
5,285 additions
and
2,617 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
try: | ||
import importlib.metadata | ||
__version__ = importlib.metadata.version('autolamella') | ||
except ModuleNotFoundError: | ||
__version__ = "unknown" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,36 @@ | ||
# this file is used to define the microscope model, and enabled components | ||
|
||
system: | ||
name: "FIBSEM" | ||
manufacturer: "Demo" | ||
description: "FIBSEM" | ||
version: "0.1" | ||
id: 00000 | ||
|
||
# define the microscope model | ||
electron: | ||
enabled: True | ||
enabled: true | ||
gis: | ||
enabled: true | ||
multichem: true | ||
ion: | ||
enabled: True | ||
stage: | ||
enabled: True | ||
rotation: True | ||
tilt: True | ||
enabled: true | ||
manipulator: | ||
enabled: True | ||
rotation: True | ||
tilt: True | ||
gis: | ||
enabled: True | ||
multichem: True | ||
enabled: true | ||
positions: | ||
calibrated: true | ||
parking: | ||
x: -0.008918395 | ||
y: 0.0006548000000000001 | ||
z: -0.004848865 | ||
standby: | ||
x: 0.0 | ||
y: 0.0 | ||
z: 0.00545 | ||
working: | ||
x: 0.0 | ||
y: 0.0 | ||
z: 0.00585 | ||
rotation: false | ||
tilt: false | ||
|
||
stage: | ||
enabled: true | ||
rotation: true | ||
tilt: true | ||
system: | ||
description: FIBSEM | ||
id: 0 | ||
manufacturer: Demo | ||
name: FIBSEM | ||
version: '0.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: autolamella | ||
display_name: AutoLamella | ||
contributions: | ||
commands: | ||
|
||
# Widgets | ||
- id: autolamella.viewer | ||
python_name: autolamella.autolamella_ui:UiInterface | ||
title: AutoLamella UI | ||
|
||
widgets: | ||
- command: autolamella.viewer | ||
display_name: AutoLamella UI |
Oops, something went wrong.