Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
fem_draw
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Peter Zhigalov
fem_draw
Commits
77f7030e
Commit
77f7030e
authored
Jul 03, 2016
by
Peter Zhigalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Сменил версию на 1.8
parent
0b3d7d46
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
13 deletions
+13
-13
resources/Info.plist
resources/Info.plist
+2
-2
src_qt/main.cpp
src_qt/main.cpp
+1
-1
src_qt/mainwindow.cpp
src_qt/mainwindow.cpp
+1
-1
src_qt/resources.rc
src_qt/resources.rc
+4
-4
src_winapi/main.cpp
src_winapi/main.cpp
+1
-1
src_winapi/resources.rc
src_winapi/resources.rc
+4
-4
No files found.
resources/Info.plist
View file @
77f7030e
...
...
@@ -19,9 +19,9 @@
<key>
CFBundlePackageType
</key>
<string>
APPL
</string>
<key>
CFBundleVersion
</key>
<string>
1.
7
</string>
<string>
1.
8
</string>
<key>
CFBundleShortVersionString
</key>
<string>
1.
7
</string>
<string>
1.
8
</string>
<key>
CFBundleSignature
</key>
<string>
????
</string>
<key>
NSPrincipalClass
</key>
...
...
src_qt/main.cpp
View file @
77f7030e
...
...
@@ -17,7 +17,7 @@ int main(int argc, char *argv[])
a
.
setOrganizationDomain
(
"fami.codefreak.ru"
);
a
.
setOrganizationName
(
"fami_net_team"
);
a
.
setApplicationName
(
"fem_draw"
);
a
.
setApplicationVersion
(
"1.
7
"
);
a
.
setApplicationVersion
(
"1.
8
"
);
MainWindow
w
;
w
.
update_translations
();
if
(
argc
>
1
)
...
...
src_qt/mainwindow.cpp
View file @
77f7030e
...
...
@@ -751,7 +751,7 @@ void MainWindow::on_actionAbout_FEM_Draw_triggered()
msgBox
.
setStandardButtons
(
QMessageBox
::
Ok
);
msgBox
.
setDefaultButton
(
QMessageBox
::
Ok
);
msgBox
.
setWindowTitle
(
trUtf8
(
"About"
));
msgBox
.
setText
(
QString
(
"<b>%1 v1.
7
(Qt)</b>"
).
arg
(
trUtf8
(
"FEM Draw"
)).
replace
(
" "
,
" "
));
msgBox
.
setText
(
QString
(
"<b>%1 v1.
8
(Qt)</b>"
).
arg
(
trUtf8
(
"FEM Draw"
)).
replace
(
" "
,
" "
));
msgBox
.
setInformativeText
(
QString
(
"<a href=
\"
https://fami.codefreak.ru/osp/fem_draw/
\"
>https://fami.codefreak.ru/osp/fem_draw/</a><br>"
"%1: <a href=
\"
http://www.gnu.org/copyleft/gpl.html
\"
>GNU GPL v3</a><br><br>"
...
...
src_qt/resources.rc
View file @
77f7030e
...
...
@@ -2,10 +2,10 @@ IDI_ICON1 ICON DISCARDABLE "../resources/icon.ico"
#include <windows.h>
#define VER_FILEVERSION 1,
7
,0,0
#define VER_FILEVERSION_STR "1.
7
.0.0\0"
#define VER_PRODUCTVERSION 1,
7
,0,0
#define VER_PRODUCTVERSION_STR "1.
7
\0"
#define VER_FILEVERSION 1,
8
,0,0
#define VER_FILEVERSION_STR "1.
8
.0.0\0"
#define VER_PRODUCTVERSION 1,
8
,0,0
#define VER_PRODUCTVERSION_STR "1.
8
\0"
#define VER_FILEDESCRIPTION_STR "Tool for plot scalar and vector fields"
#define VER_INTERNALNAME_STR "fem_draw_qt"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter Zhigalov, 2014-2016"
...
...
src_winapi/main.cpp
View file @
77f7030e
...
...
@@ -828,7 +828,7 @@ void on_actionAbout_FEM_Draw_triggered()
// Надпись "FEM Draw <version_name> (WinAPI)"
CreateWindow
(
WC_STATIC
,
TEXT
(
"FEM Draw v1.
7
(WinAPI)"
),
WC_STATIC
,
TEXT
(
"FEM Draw v1.
8
(WinAPI)"
),
WS_CHILD
|
WS_VISIBLE
|
SS_CENTERIMAGE
,
92
,
10
,
205
,
15
,
hwnd_about
,
(
HMENU
)
ABOUT_LABEL_VERSION
,
hInstance
,
NULL
...
...
src_winapi/resources.rc
View file @
77f7030e
...
...
@@ -19,10 +19,10 @@ END
#define RT_MANIFEST 24
1 RT_MANIFEST manifest.manifest
#define VER_FILEVERSION 1,
7
,0,0
#define VER_FILEVERSION_STR "1.
7
.0.0\0"
#define VER_PRODUCTVERSION 1,
7
,0,0
#define VER_PRODUCTVERSION_STR "1.
7
\0"
#define VER_FILEVERSION 1,
8
,0,0
#define VER_FILEVERSION_STR "1.
8
.0.0\0"
#define VER_PRODUCTVERSION 1,
8
,0,0
#define VER_PRODUCTVERSION_STR "1.
8
\0"
#define VER_FILEDESCRIPTION_STR "Tool for plot scalar and vector fields"
#define VER_INTERNALNAME_STR "fem_draw_winapi"
#define VER_LEGALCOPYRIGHT_STR "(c) Peter Zhigalov, 2014-2016"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment