Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update UI |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c56cdd5e08844d2255c018ba8f40bad6 |
User & Date: | kevin 2017-02-09 13:21:39 |
Context
2017-02-27
| ||
02:56 | Add winlibs check-in: b9a1649983 user: kevin tags: trunk | |
2017-02-09
| ||
13:21 | Update UI check-in: c56cdd5e08 user: kevin tags: trunk | |
2016-04-09
| ||
03:11 | Fix corrupted AppleScript dictionary check-in: 0d340e9f73 user: kevin tags: trunk | |
Changes
Changes to QuickWho.py.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #QuickWho: GUI for whois #MIT license. #(c) 2016 WordTech Communications LLC ##let's get started, import our modules and initialize some variables from tkinter import * from tkinter import font from tkinter import filedialog import os import sys from tkinter import ttk as Tile import time import pickle import bwidget import re | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #QuickWho: GUI for whois #MIT license. #(c) 2016 WordTech Communications LLC ##let's get started, import our modules and initialize some variables from tkinter import * from tkinter import font from tkinter import filedialog from tkinter import messagebox import os import sys from tkinter import ttk as Tile import time import pickle import bwidget import re |
︙ | ︙ | |||
290 291 292 293 294 295 296 | """ self.compassphoto = PhotoImage("compass", data=compassdata) #aboutwindow def aboutWindow(self): | < < < < | < < < < < < < < < < < < < < < < < | < < < < < < < < < < < < < < | 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | """ self.compassphoto = PhotoImage("compass", data=compassdata) #aboutwindow def aboutWindow(self): messagebox.showinfo(title='About QuickWho' message='QuickWho: Domain Name Service' icon='info' detail='Version 6.1\n(c) 2017 WordTech Communications LLC') #draw the GUI def drawGUI(self): self.title('QuickWho') self.option_add('*tearOff', FALSE) |
︙ | ︙ |
Changes to buildapp.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh echo "Starting dist process..." python3 setup.py py2app --includes Pmw mkdir dist/QuickWho.app/Contents/lib | > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/bin/sh echo "Starting dist process..." if [ -a QuickWho.dmg ] then rm QuickWho.dmg fi if [ -a dist ] then rm -rf dist fi python3 setup.py py2app --includes Pmw mkdir dist/QuickWho.app/Contents/lib |
︙ | ︙ | |||
33 34 35 36 37 38 39 | find dist/QuickWho.app -type f -name "*.dylib" -exec codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" {} \; codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/8.6/Resources/Wish.app/Contents/MacOS/Wish codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tcl.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Python.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/MacOS/python | | < | < | < < | < < | < < < < < < < < < | < < < < < < < < < < < < < < < < < < < | < < < | < < < < < < < < | | < < < | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | find dist/QuickWho.app -type f -name "*.dylib" -exec codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" {} \; codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/8.6/Resources/Wish.app/Contents/MacOS/Wish codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tk.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Tcl.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/Frameworks/Python.framework/Versions/Current codesign --verbose --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" dist/QuickWho.app/Contents/MacOS/python xattr -cr dist/QuickWho.app codesign --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2 dist/QuickWho.app echo "Creating and signing DMG file..." hdiutil create -srcfolder dist -fs HFS+ -volname QuickWho QuickWho.dmg codesign --signature-size 9400 -f -s "Developer ID Application: Kevin Walzer" --verbose=2 QuickWho.dmg echo "Uploading DMG..." cp -f QuickWho.dmg /Users/kevin/share/kevin/Sites/codebykevin/updates/QuickWho.dmg cp -f quickwho-changes.tcl /Users/kevin/share/kevin/Sites/codebykevin/quickwho-changes.tcl cp -f quickwho-version.tcl /Users/kevin/share/kevin/Sites/codebykevin/quickwho-version.tcl cd ../ #create archive of entire source tree tar cvfz QuickWho-$1.tgz QuickWho fi echo "Done." |