Skip to content

Commit

Permalink
Fix file dialogs, cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidStirling committed Jun 4, 2024
1 parent 1da492d commit ca3b6bd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 17 deletions.
6 changes: 5 additions & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,8 @@ Version 2.1 - 07/04/2019

Version 2.1.1 - 07/05/2019
- Rename "Clusters" to "Foci".
- Fix error with grid analysis when trying to use box sizes larger than the image.
- Fix error with grid analysis when trying to use box sizes larger than the image.

Version 2.1.2 - 04/06/2024
- Support modern windows/macos versions.
- Proper build system with GH actions.
4 changes: 2 additions & 2 deletions QuantiFish.py
Original file line number Diff line number Diff line change
Expand Up @@ -1359,9 +1359,9 @@ def __init__(self, master):
self.heading.pack()
self.line2 = tk.Label(self.aboutwindow, text="Version " + version, font=("Consolas", 10), justify=tk.CENTER)
self.line2.pack(pady=(0, 5))
self.line3 = tk.Label(self.aboutwindow, text="David Stirling, 2017-2019", font=("Arial", 10), justify=tk.CENTER)
self.line3 = tk.Label(self.aboutwindow, text="David Stirling, 2017-2024", font=("Arial", 10), justify=tk.CENTER)
self.line3.pack()
self.line4 = tk.Label(self.aboutwindow, text="@DavidRStirling", font=("Arial", 10), justify=tk.CENTER)
self.line4 = tk.Label(self.aboutwindow, text="github.com/DavidStirling", font=("Arial", 10), justify=tk.CENTER)
self.line4.pack(pady=(0, 5))
self.aboutwindow.pack()

Expand Down
1 change: 0 additions & 1 deletion build_macos.spec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ exe = EXE(
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file='./entitlements.plist',
icon=['resources/QFIcon.icns'],
)

Expand Down
13 changes: 0 additions & 13 deletions entitlements.plist

This file was deleted.

0 comments on commit ca3b6bd

Please sign in to comment.