Skip to content

Commit

Permalink
Fixed about windows ok button
Browse files Browse the repository at this point in the history
  • Loading branch information
pazuzu156 committed Mar 30, 2016
1 parent eff7d38 commit 2abf04b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ all: app
install:
mkdir /opt/checkmate
cp src/Checkmate /opt/checkmate/Checkmate
# cp updater_src/CheckmateUpdater /opt/checkmate/CheckmateUpdater
ln -s /opt/checkmate/Checkmate /usr/bin/checkmate
cp checkmate.desktop /usr/share/applications/checkmate.desktop
cp src/gear.png /usr/share/icons/checkmate_icon.png
cp src/res/images/gear.png /usr/share/icons/checkmate_icon.png

uninstall:
rm -rf /opt/checkmate
Expand Down
6 changes: 3 additions & 3 deletions src/aboutdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ background-color: rgb(255, 255, 255);</string>
<widget class="QPushButton" name="bClose">
<property name="geometry">
<rect>
<x>390</x>
<x>374</x>
<y>270</y>
<width>75</width>
<width>91</width>
<height>23</height>
</rect>
</property>
Expand Down Expand Up @@ -121,7 +121,7 @@ background-color: rgb(255, 255, 255);</string>
<widget class="QPushButton" name="bSite">
<property name="geometry">
<rect>
<x>240</x>
<x>230</x>
<y>270</y>
<width>141</width>
<height>23</height>
Expand Down
12 changes: 6 additions & 6 deletions src/refs.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#ifndef REFS_H
#define REFS_H

#define VER_FILEVERSION 2,3,7,0
#define VER_FILEVERSION_STR "2.3.7\0"
#define VER_FILEVERSION 2,3,8,0
#define VER_FILEVERSION_STR "2.3.8\0"

#define VER_PRODUCTVERSION 2,3,7,0
#define VER_PRODUCTVERSION_STR "2.3.7\0"
#define VER_PRODUCTVERSION 2,3,8,0
#define VER_PRODUCTVERSION_STR "2.3.8\0"

#define VER_COMPANYNAME_STR "Kaleb Klein"
#define VER_FILEDESCRIPTION_STR "File Checksum Validator"
Expand All @@ -18,8 +18,8 @@

#define VER_COMPANYDOMAIN_STR "kalebklein.com"

#define VERSION_CODE 26
#define VERSION_NAME "2.3.7"
#define VERSION_CODE 27
#define VERSION_NAME "2.3.8"
#define VERSION_GEN "2.1.2"

#endif // REFS_H
Expand Down

0 comments on commit 2abf04b

Please sign in to comment.