Skip to content

Commit

Permalink
Bump to 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-goeldi committed Mar 21, 2024
1 parent 86f3831 commit 242d6e2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# klive 0.3.1
# klive 0.3.2

klive is a small extension to KLayout that allows automatic loading for GDS files by sending a json with the gds path to klive.

Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ bey opening the macro editor under `Macros -> Macro Development` (or by pressing

In the editor, go to the python section on the left and
look for the "Package klive" folder and open the `klive` script. Run it with the "Run scrip from current tab" (or \[Shift + F5\]).
Make sure to switch the Console on the bottom to python. If you don't get an error message or don't see a "klive 0.3.1 is running",
Make sure to switch the Console on the bottom to python. If you don't get an error message or don't see a "klive 0.3.2 is running",
klive is not running. If you cannot debug your problem, please feel free to open an
issue on [GitHub](https://github.com/gdsfactory/klive/issues).

Expand Down
2 changes: 1 addition & 1 deletion klayout/grain.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<name>klive</name>
<token/>
<hidden>false</hidden>
<version>0.3.1</version>
<version>0.3.2</version>
<api-version>0.28.17</api-version>
<title>klive</title>
<doc>klive server to be able to stream a gds by tcp/ip</doc>
Expand Down
6 changes: 3 additions & 3 deletions klayout/python/klive_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def new_connection(self):
current_view = window.current_view()
previous_view = current_view.box() if current_view else None

send_data = {"version": "0.3.1"}
send_data = {"version": "0.3.2"}

libs = data.get("libraries", {})
for lib_dict in libs:
Expand Down Expand Up @@ -164,7 +164,7 @@ def __init__(self, server, parent=None, action=None):
self.server = server
if self.action is not None and self.isListening():
self.action.on_triggered = self.on_action_click
print("klive 0.3.1 is running")
print("klive 0.3.2 is running")
self.action.icon = live
else:
print("klive didn't start correctly. Most likely port tcp/8082")
Expand All @@ -176,7 +176,7 @@ def on_action_click(self):
def close(self):
super().close()

print("klive 0.3.1 stopped")
print("klive 0.3.2 stopped")
if self.action is not None and not self.action._destroyed():
self.action.icon = off

Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# github_url = "https://github.com/<user or organization>/<project>/"

[version]
current = "0.3.1"
current = "0.3.2"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down

0 comments on commit 242d6e2

Please sign in to comment.