Eric Kohl
01fd69dfe2
[STOBJECT] Remove obsolete code and use string resources instead of hard-coded strings
2020-03-22 11:32:35 +01:00
Eric Kohl
fc999e18af
[STDOBJECT] Show the hotplug icon when a USB-Stick is inserted
...
- Enable the hotplug service by default
- Start a timer on WM_DEVICECHANGE:DBT_DEVNODES_CHANGED to trigger the removable device detection.
2020-03-21 23:46:24 +01:00
Tibor Lajos Füzi
432a5ddc7f
[TRANSLATION] Update Hungarian translation of usetup, syssetup, explorer, netshell, userenv, shortcuts ( #2442 )
2020-03-20 17:52:46 +01:00
Oleg Dubinskiy
b749501976
[APPCOMPAT][ACCPAGE][SDB][ROSTESTS] Implement compatibility modes for Windows 10, Server 2016 and 2019
2020-02-23 17:43:40 +01:00
Katayama Hirofumi MZ
0bf9f4b301
[ZIPFLDR] Show 'Click Next to extract' on initial status
2020-02-12 11:06:54 +09:00
Mark Jansen
0c7b07dc89
[SDK] Move HIDA helper functions to shellutils.h
2020-02-08 22:09:13 +01:00
Guntha
645c77335c
[ZIPFLDR] Extraction is now in its own thread ( #2261 )
...
Extraction happens now in its own thread, allowing for cancelling in the middle of extraction or moving the window during the extraction.
File extraction was previously happening in the main thread, freezing the whole window until the end. Now when the user clicks "Next", a new thread is created and the extraction starts from there, allowing to move the window during the extraction, or to cancel the extraction in the middle. (Note: after clicking "Cancel", extraction continues until the current file is extracted).
CORE-14934
2020-02-07 19:21:21 +01:00
Katayama Hirofumi MZ
fcc4347898
[SHELLEXT][ZIPFLDR] Be case sensitive ( #2292 )
...
The filenames in a zip folder were all lowercase. Now the filenames are case sensitive.
2020-01-30 15:05:50 +09:00
Katayama Hirofumi MZ
9c5017808a
[SHELLEXT][ZIPFLDR] Use CStringA::FormatMessage ( #2287 )
...
Simplify our code.
2020-01-30 08:32:21 +09:00
Mark Jansen
c09636f946
[FONTEXT] Add detail view columns to font folder
...
CORE-16476
2020-01-29 22:55:50 +01:00
Hermès Bélusca-Maïto
1d14463947
[ACPPAGE] Enlarge the "Edit the Compatibility Modes" button for some languages. CORE-16573
2019-12-24 21:22:04 +01:00
Katayama Hirofumi MZ
f1bc04d7e6
[SHELL32][ZIPFLDR] Implement SendTo ZIP folder ( #2118 )
...
Follow-up of #2114 .
- s/Creater/Creator/
- Add an empty file in the SendTo folder.
- Trick.
CORE-16495
2019-12-02 02:26:34 +09:00
Katayama Hirofumi MZ
962ff6e2fa
[SHELLEXT][ZIPFLDR] Implement ZIP creation ( #2114 )
...
This PR will implement *.ZFSendToTarget file type that will realize SendTo ZIP folder in future.
CORE-16495, CORE-12562
2019-12-01 21:20:53 +09:00
Katayama Hirofumi MZ
004e08383a
[SENDMAIL][INCLUDE][INF] Add sendmail.dll for DeskLink ( #2092 )
...
*.DeskLink file realizes SendTo Desktop (Create shortcut) in Windows. DeskLink is implemented in the sendmail.dll module. CORE-12562
2019-11-27 19:26:49 +09:00
Serge Gautherie
f5ab9cb723
[NTOBJSHEX] StringCbCopy*() need sizeof(), not _countof() ( #2066 )
...
And use explicit StringCbCopyW().
2019-11-20 15:41:08 +01:00
Pierre Schweitzer
3098692068
[SHELLBTRFS] Use again .data() method of vector class
...
This reverts commit 45a643a136
.
This reverts commit a3c13c624f
.
This reverts commit 1725ddfd8f
.
2019-11-18 23:50:33 +01:00
Pierre Schweitzer
986f6a4b24
[SHELLBTRFS] Properly fix AppVeyor build
...
This reverts bb6fece
2019-11-13 08:22:13 +01:00
Katayma Hirofumi MZ
bb6feced9f
[SHELLBTRFS] Fix build (don't use C++11 auto)
2019-11-13 12:30:33 +09:00
Pierre Schweitzer
45a643a136
[SHELLBTRFS] Addendum to 1725ddf
2019-11-12 23:46:53 +01:00
Pierre Schweitzer
5f779048d3
[SHELLBTRFS] Replace emplace_back by something less efficient if not avaible
2019-11-12 23:29:08 +01:00
Pierre Schweitzer
a3c13c624f
[SHELLBTRFS] Addendum to 1725ddf
2019-11-12 23:12:48 +01:00
Pierre Schweitzer
1725ddfd8f
[SHELLBTRFS] Fix build when std::vector.data() is not implemented
2019-11-12 22:59:27 +01:00
Pierre Schweitzer
a837184300
[SHELLBTRFS] Fix build?
...
(Not sure why it works locally...)
2019-11-12 21:52:16 +01:00
Pierre Schweitzer
aed50d7e21
[SHELLBTRFS] Upgrade to 1.5
...
CORE-16494
2019-11-12 21:45:49 +01:00
Katayama Hirofumi MZ
c214c04964
[SHELLEXT][FONTEXT] An attempt to implement IDropTarget ( #2019 )
...
CORE-12861
2019-11-12 20:26:56 +09:00
Eric Kohl
2b39b42a0a
[NETSHELL] Fix checkboxes in the network adapter properties
...
- Use AUTOCHECKBOX instead of BS_AUTOCHECKBOX
- Use multiline checkboxes (BS_MULTILINE | BS_TOP) in order to display long text
CORE-15248
2019-11-11 00:15:06 +01:00
Oleg Dubinskiy
218118e994
[CRYPTEXT] Add Ukrainian translation ( #1999 )
2019-10-28 15:27:03 +01:00
Serge Gautherie
e133817811
[CMAKE] Use modules instead of shared libraries
...
Follow-up to 23373acbb9
.
2 missed cases: apisets, lunar.msstyles.
4 new cases: w32time, netplwiz, msxml3r, mizu.msstyles.
2019-10-27 09:51:28 +01:00
Katayama Hirofumi MZ
6cca46453c
[SHELLEXT][ZIPFLDR] Performance: Initialize m_Filename quickly
2019-10-22 09:55:06 +09:00
Mark Jansen
87fa11f54b
[FONTEXT] Return the correct error in GetDisplayNameOf
2019-10-20 17:10:04 +02:00
Mark Jansen
d9e7c48c1a
[FONTEXT] Initial implementation
...
Create Fonts\desktop.ini when registering the shell ext
Also list the shell extension as needing to be registered at install
CORE-14690
2019-10-19 18:42:15 +02:00
Mark Jansen
a99325c716
[ZIPFLDR] Fix number of menu items returned for DFM_MERGECONTEXTMENU
2019-10-19 18:42:14 +02:00
Thomas Faber
b2992e7a5e
[SHELL] IShellExtInit::Initialize uses PCIDLIST_ABSOLUTE. CORE-16385
2019-09-29 12:09:02 +02:00
Thomas Faber
c2b476bd77
[SHELL] IPersistFolder::Initialize takes a PCIDLIST_ABSOLUTE. CORE-16385
2019-09-22 16:19:11 +02:00
Thomas Faber
b90c24d640
[SHELL] IPersistFolder2::GetCurFolder takes a PIDLIST_ABSOLUTE*. CORE-16385
2019-09-22 16:19:09 +02:00
Adam Słaboń
c81af08f51
[TRANSLATION] Polish translation update ( #1916 )
...
Added translation for netstat, utilman and netplwiz. Updated translation of find, reg, rapps, regedit, sndvol32, usetup, hivesys, mmsys, openglcfg, powercfg, sysdm, shellext, browseui, devmgr, msgina, netcfgx, shell32, syssetup, shortcuts and vcdcontroltool.
2019-09-20 21:51:47 +02:00
Carlo Bramini
6f5ea7cfba
[NETPLWIZ] Add Italian translation. ( #1912 )
2019-09-19 21:58:00 +02:00
Pierre Schweitzer
318da0c18c
[BTRFS] Upgrade to 1.4
...
CORE-16354
2019-09-02 08:19:48 +02:00
Ioannis Adamopoulos
e419195d37
[HEADERS] Move some helpers from undocshell.h to shellutils.h as they didn't cover anything undocumented. Merge traycmd.h in undocshell.h as both contain just undocumented shell definitions.
2019-08-25 12:20:52 +03:00
Serge Gautherie
cb77f1701f
[SHELL32][STOBJECT] Enforce ShellExecuteW(..., file, parameters, ...)
...
CORE-16299
2019-08-19 13:01:08 +02:00
Jose Carlos Jesus
23cac56740
[DESKMON] Update Portuguese Translation
2019-08-16 19:32:23 +02:00
Jose Carlos Jesus
f699cc96ac
[NETSHELL][SYSSETUP] Minor improvements for pt_PT translation and object position adjustments ( #1761 )
2019-07-29 00:20:40 +02:00
Hermès Bélusca-Maïto
b6135732d4
[DLLs] Fix .spec files regarding OLE-specific exports.
...
- Do not use hardcoded ordinals, add missing '-private'.
Except for MSXML3, OLE32 and RSAENH, see commit bff824b2
for more details.
- SHSVCS: The 6 first exports are nonamed with ordinals. Replace exported
commented stubs by actual exported stubs instead.
Co-Authored-By: Timo Kreuzer <timo.kreuzer@reactos.org>
2019-07-28 16:26:22 +02:00
Eric Kohl
214692ff5e
[NETSHELL] Improvements to the network setup (2a/x)
...
Step 2a: Really check the binding between network components.
Next Step: Bind the Tcpip transport to all enumerated network adapters.
2019-06-20 22:08:39 +02:00
Eric Kohl
78f13ae5ad
[NETSHELL] Improvements to the network setup (1/x)
...
Step 1: Find the TcpIp transport and enumerate the installed network adapters using INetCfg.
Next Step: Find out how the binding process works and bind the TcpIp transport to all enumerated network adapters. This will replace the blind binding process we are using right now.
2019-06-17 01:18:05 +02:00
Pierre Schweitzer
72d229b38c
[NETPLWIZ] Add French translation
2019-06-10 19:01:30 +02:00
Eric Kohl
de0e19bc72
[NETSHELL] Network connections can't be renamed
...
Enable the 'Rename' and 'Delete' menu items for Administrators.
CORE-15348
2019-06-10 17:23:13 +02:00
Jose Carlos Jesus
7f5e960e32
[TRANSLATIONS] Update/Add Portuguese translations.
...
Translations for: reactos/setup, usetup, syssetup, netshell, shell32.
2019-05-26 21:19:31 +02:00
Jose Carlos Jesus
73d7fd1415
[TRANSLATIONS] Update/Add Portuguese translations. ( #1564 )
...
Translations for: deskadp, deskmon, reactos/setup, usetup, syssetup.
Co-Authored-By: Bișoc George <fraizeraust99@gmail.com>
2019-05-19 17:04:47 +02:00
Jared Smudde
d1404a7a2a
[NETPLWIZ] Implement the Disconnect Network Drive dialog. ( #1522 )
...
CORE-13516, CORE-13518
2019-04-24 04:26:12 +02:00