Skip to content

Commit

Permalink
screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy0510 committed Apr 22, 2019
1 parent ba8d69f commit 4f2a2e2
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@

* Microsoft Windows 10
* Other versions of Windows have not been tested yet.

## Screenshot

![screenshot](/assets/images/screenshot-001.png)
Binary file added assets/images/screenshot-001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion makebuild.spec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Analysis = Analysis # noqa

__appname__ = 'PyWinSecure'
__default_python_path__ = 'C:\\Program Files\\Python36'
__api_ms_win_crt_path__ = 'C:\\Windows\\WinSxS\\amd64_microsoft-windows-m..namespace-downlevel_31bf3856ad364e35_10.0.17134.1_none_ace56707ea44b3c5'
__api_ms_win_crt_path__ = 'C:\\Windows\\WinSxS\\amd64_microsoft-windows-m..namespace-downlevel_31bf3856ad364e35_10.0.17763.1_none_b82ac495d943b9d7'


class Path():
Expand Down
10 changes: 5 additions & 5 deletions makeinstaller.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

[Setup]
AppName="PyWinSecure"
AppVerName="PyWinSecure 0.1.2"
AppVerName="PyWinSecure 0.1.3"
DefaultDirName="{pf}\PyWinSecure"
DefaultGroupName="PyWinSecure"
AppVersion="0.1.2"
AppVersion="0.1.3"
AppCopyright="Taehong Kim"
AppPublisher="Taehong Kim"
UninstallDisplayIcon="{app}\PyWinSecure.exe"
Compression=lzma2/max
SolidCompression=yes
OutputDir="dist"
OutputBaseFilename="PyWinSecure-0.1.2-Setup"
; VersionInfoVersion="0.1.2"
VersionInfoProductVersion="0.1.2"
OutputBaseFilename="PyWinSecure-0.1.3-Setup"
; VersionInfoVersion="0.1.3"
VersionInfoProductVersion="0.1.3"
VersionInfoCompany="Taehong Kim"
VersionInfoCopyright="Taehong Kim"
ArchitecturesInstallIn64BitMode="x64"
Expand Down
6 changes: 3 additions & 3 deletions source/main.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


__appname__ = 'PyWinSecure'
__version__ = '0.1.2'
__version__ = '0.1.3'
__author__ = 'Taehong Kim'
__email__ = '[email protected]'
__license__ = ''
Expand Down Expand Up @@ -171,8 +171,8 @@ class MainFrame(wx.Frame, Preference, FrameIcon, MenuBar, StatusBar):
width, height = size
margin = 50
screens = get_screens()
finish_x = min([v.finish.x for v in screens])
finish_y = min([v.finish.y for v in screens])
finish_x = max([v.finish.x for v in screens])
finish_y = max([v.finish.y for v in screens])
if x + margin < finish_x and y + margin < finish_y:
self.SetSize(size)
self.SetPosition(position)
Expand Down

0 comments on commit 4f2a2e2

Please sign in to comment.