Skip to content

Commit

Permalink
Updated verison number to v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Brad-Goff committed Mar 19, 2024
1 parent 30a4698 commit 237edb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions MacroQueue/MacroQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
# In the createc Scan, when I get the Y pixels, it crashes if I haven't set it? There's no default value?
# On close, I cancel the scan. Should I try to prevent that?

VersionNumber = "v1.4.0"
VersionNumber = "v0.1.5"
class MacroQueue(GUIDesign.MyFrame):
MacroPaths = {"RHK":"Macros//RHKMacro.json","CreaTec":"Macros//CreaTecMacro.json","SXM":"Macros//SXMMacro.json"}

Expand Down Expand Up @@ -877,7 +877,7 @@ def License(self, event):
MyMessage.ShowModal()
return
def InfoHelp(self, event):
HelpMessage = f"MacroQueue {VersionNumber} (9/2023)\n"
HelpMessage = f"MacroQueue {VersionNumber} (3/2024)\n"
HelpMessage += "Written by Brad Goff in Jay Gupta's CME Group at the Ohio State University\n"
HelpMessage += "\n"
MyMessage = wx.MessageDialog(self,message=HelpMessage,caption="Info")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
setup(
name = 'MacroQueue', # How you named your package folder (MyLib)
packages = ['MacroQueue'], # Chose the same as "name"
version = '1.4.0', # Start with a small number and increase it with every change you make
version = '0.1.5', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'Automating Scanning Probe Microscopy', # Give a short description about your library
author = 'Brad Goff', # Type in your name
Expand Down

0 comments on commit 237edb1

Please sign in to comment.