Skip to content

Commit

Permalink
Fix for OME tiff capture with exe (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcoreymv authored Mar 22, 2024
1 parent 7436b86 commit 74ced6d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
16 changes: 10 additions & 6 deletions scripts/config/lumaviewpro_win_release.spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,23 @@ from kivy_deps import sdl2, glew
block_cipher = None
app_name = 'lumaviewpro'

hiddenimports = [
'imagecodecs._imcd',
'imagecodecs._shared',
'plyer.platforms.win.notification',
'plyer.platforms.win.filechooser',
'skimage.measure',
'win32timezone',
]

a = Analysis(
['lumaviewpro.py'],
pathex=['.'],
binaries=[],
datas=[
('.','.')
],
hiddenimports=[
'plyer.platforms.win.notification',
'plyer.platforms.win.filechooser',
'skimage.measure',
'win32timezone',
],
hiddenimports=hiddenimports,
hookspath=[],
hooksconfig={},
runtime_hooks=[],
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.1
1.7.2

0 comments on commit 74ced6d

Please sign in to comment.