Skip to content

Commit a23f7bb

Browse files
committed
#102 - x64 manifest
1 parent 705ac30 commit a23f7bb

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

mcsrc/src/filemanager/panel.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4714,12 +4714,10 @@ panel_sized_with_dir_new (const char *panel_name, const WRect *r, const vfs_path
47144714
if (curdir != NULL)
47154715
{
47164716
vfs_path_t *tmp_vpath;
4717-
int err;
47184717

47194718
tmp_vpath = vfs_path_from_str (curdir);
47204719
mc_chdir (tmp_vpath);
47214720
vfs_path_free (tmp_vpath, TRUE);
4722-
(void) err;
47234721
}
47244722
g_free (curdir);
47254723

mcwin32/autoupdater/mcupdater.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// $Id: mcupdater.cpp,v 1.8 2023/10/08 17:25:11 cvsuser Exp $
1+
// $Id: mcupdater.cpp,v 1.9 2025/02/21 20:06:10 cvsuser Exp $
22
//
33
// Midnight Commander AutoUpdater command line.
44
//
@@ -32,7 +32,11 @@ int
3232
main(int argc, char *argv[])
3333
{
3434
const char *version = VERSION "." BUILD_NUMBER,
35+
#if defined(_M_AMD64) // x64; XXX as channel?
36+
*hosturl = "https://sourceforge.net/projects/mcwin32/files/mcwin32x64.manifest/download";
37+
#else
3538
*hosturl = "https://sourceforge.net/projects/mcwin32/files/mcwin32.manifest/download";
39+
#endif
3640
int mode = 2, interactive = 0;
3741
int ch;
3842

mcwin32/autoupdater/updater.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ VS_VERSION_INFO VERSIONINFO
8989
BEGIN
9090
VALUE "CompanyName", ""
9191

92-
VALUE "FileDescription", "GNU Midnight Commander, Auto Updater"
92+
VALUE "FileDescription", "Midnight Commander, Auto Updater"
9393

9494
VALUE "FileVersion", VERSION ", Build:" BUILD_DATE "-" BUILD_NUMBER /* match mc.rc */
9595

9696
VALUE "InternalName", "WIN32 Midnight Commander"
9797

9898
VALUE "Copyright",
99-
"Copyright (C) 2012-2024, Adam Young. All rights reserved. \n"
99+
"Copyright (C) 2012-" BUILD_YEAR ", Adam Young. All rights reserved. \n"
100100
"Copyright (c) 1998-2000 Thai Open Source Software Center Ltd and Clark Cooper. \n"
101101
"Copyright (c) 2001-2019 Expat maintainers. \n"
102102
"This is free software; see the source for copying conditions. \n"

0 commit comments

Comments
 (0)