Skip to content

Commit

Permalink
Release 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeTheWatchGuy committed May 28, 2019
1 parent e2ef2ae commit 8bfd93a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
13 changes: 11 additions & 2 deletions imwatchingyou.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,17 @@ def InVar(key1):
[sg.T('', size=(WIDTH_VARIABLES,1), key='_WATCH%s_'%i),
sg.T('', size=(WIDTH_RESULTS,2), key='_WATCH%s_RESULT_'%i)] for i in range(1,NUM_AUTO_WATCH+1)]

layout = [ [sg.Frame('Variables or Expressions to Watch', variables_frame, title_color='blue' )],
[sg.Frame('REPL-Light - Press Enter To Execute Commands', interactive_frame, title_color='blue' ),sg.Frame('Auto Watches', autowatch_frame, title_color='blue' )],
col1 = [
[sg.Frame('Auto Watches', autowatch_frame, title_color='blue' )]
]

col2 = [
[sg.Frame('Variables or Expressions to Watch', variables_frame, title_color='blue')],
[sg.Frame('REPL-Light - Press Enter To Execute Commands', interactive_frame, title_color='blue'), ]
]


layout = [[sg.Column(col1), sg.Column(col2)],
[sg.Button('Exit')]]

window = sg.Window("I'm Watching You Debugger", layout, icon=PSGDebugLogo).Finalize()
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,12 @@ Watch this space in the future! COOL SHIT COMING SOON!
* there are 45 differences that I don't feel like listing
* lots of shit changed

### imwatchingyou 1.7.0 28-May-2019

* User interface change - expect lots of those ahead. This was a good enough one to make a new release
* Nice selection interface for auto display
* Next is to create a tiny version of this output that is a floating, tiny window

# Design
# Author
Expand Down

0 comments on commit 8bfd93a

Please sign in to comment.