Skip to content

Commit

Permalink
v 2.5.7
Browse files Browse the repository at this point in the history
Updated some numbers
  • Loading branch information
Frederic Delhoume committed Jun 15, 2022
1 parent 6323086 commit c4b3518
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/dialogs.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ INT_PTR DialogProcAbout (HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
case WM_INITDIALOG :
ShowWindow (hDlg, SW_HIDE);
if (GetDlgItem(hDlg, IDC_HYPERLINK))
StaticToURLControl(hDlg, IDC_HYPERLINK, "http://vlivviewer.free.fr/vliv.htm", -1);
StaticToURLControl(hDlg, IDC_HYPERLINK, "https://github.com/delhoume/vliv", -1);
if (isRegistered == TRUE && GetDlgItem(hDlg, 3)) {
char buffer[100];
LoadString(languageInst, IDS_REGISTERED_TO, sz, sizeof(sz));
Expand Down
2 changes: 1 addition & 1 deletion src/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LD = link
DEBUG=/Ox

VERSION=2.5
VERSIONSHORT=256
VERSIONSHORT=257

CFLAGS = /nologo /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I.
LDFLAGS = $(LDDEBUG) /SUBSYSTEM:WINDOWS /nodefaultlib:libc /VERSION:$(VERSION)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/lyapunov/lyapunov.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ LD = link

VLIVDIR = ..\..

DEBUG=/Ox
DEBUG = /Ox

CFLAGS = /nologo /W3 $(DEBUG) /D_CRT_SECURE_NO_DEPRECATE /DWIN32 /DWINDOWS /I. /I$(VLIVDIR)

Expand Down
18 changes: 9 additions & 9 deletions src/resources/vliv.rc
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ STYLE DS_SETFONT | DS_MODALFRAME | WS_POPUP
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "OK",IDOK,68,75,50,14
CTEXT "Vliv 2.5.6",IDC_VERSION,6,14,180,8
CTEXT "(c) 2003-2022, Fr�d�ric Delhoume",4,6,45,180,8
CTEXT "http://vlivviewer.free.fr/vliv.htm",IDC_HYPERLINK,6,58,180,8
CTEXT "Vliv 2.5.7",IDC_VERSION,6,14,180,8
CTEXT "(c) 2003-2022, Frederic Delhoume",4,6,45,180,8
CTEXT "https://github.com/delhoume/vliv",IDC_HYPERLINK,6,58,180,8
END

CREDITSDLG DIALOGEX 0, 0, 240, 254
Expand Down Expand Up @@ -141,19 +141,19 @@ BEGIN
END

1 VERSIONINFO
FILEVERSION 2,5,5,0
PRODUCTVERSION 2,5,5,0
FILEVERSION 2,5,7,0
PRODUCTVERSION 2,5,7,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "Fr�d�ric Delhoume\0"
VALUE "CompanyName", "Frederic Delhoume\0"
VALUE "FileDescription", "Very Large Image Viewer\0"
VALUE "FileVersion", "2.5.5\0"
VALUE "LegalCopyright", "Copyright � Fr�d�ric Delhoume 2003-2022\0"
VALUE "FileVersion", "2.5.7\0"
VALUE "LegalCopyright", "Copyright (c) Frederic Delhoume 2003-2022\0"
VALUE "ProductName", "Vliv\0"
VALUE "ProductVersion", "2.5.5\0"
VALUE "ProductVersion", "2.5.7\0"
END
END
END

0 comments on commit c4b3518

Please sign in to comment.