| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[REACTOS] Add missing line breaks at end of file | 1 年前 | |
[CACLS] Improve imports, simplify code, and fix x64 build warning cacls\cacls.c(198): warning C4267: '=': conversion from 'size_t' to 'DWORD', possible loss of data | 5 个月前 | |
[TRANSLATION] Add Vietnamese (vi-VN) translation (#9001) Add Vietnamese translation for Calc, Solitaire, Notepad, RAPPS, Setup and Explorer | 3 个月前 | |
[CHARMAP][MSPAINT][WELCOME] Add Croatian (hr-HR) translation (#8654) All strings have been translated and reviewed for clarity, grammar, and consistency with the existing Croatian translations used in ReactOS. | 6 个月前 | |
Move /sdk/include/reactos/wine to /sdk/include/wine, reorder global includes, remove unneeded includes (#8258) - Move sdk\include\reactos\wine to sdk\include\wine - Reorder the directories in include_directories() to be closer to alphabetical. This should make it easier to determine what global include directories can be removed in the future. | 1 年前 | |
[CLEANMGR] Only allow one instance per drive (#7832) CORE-18941 | 1 年前 | |
[BASE] Add and improve Italian (it-IT) translation (#7893) | 1 年前 | |
[WSCRIPT] Sync to Wine 11.10 (#9100) Adds support for script time-out and proper script error reporting. | 2 个月前 | |
[CONTROL] OpenShellFolder: Add file browser fallback If Explorer shell is not available, use ReactOS's alternative file browser instead. CORE-19648 | 2 年前 | |
[PSDK] Add minwinbase.h | 1 年前 | |
[REACTOS] Stop using non-conforming swprintf / vswprintf Use the underscored versions instead. | 4 个月前 | |
[CMAKE] Introduce set_wine_module (Retry) (#7860) Re-trial of #7800. Deleting __WINESRC__ hacks. JIRA issue: CORE-5743 - Add sdk/cmake/set_wine_module.cmake. - Load set_wine_module.cmake at top-level CMakeLists.txt. - Use set_wine_module cmake function and delete __WINESRC__ as possible. - Delete many include_directories. | 1 年前 | |
[FINDSTR] Add Japanese (ja-JP) translation (#7760) JIRA issue: CORE-18706 | 1 年前 | |
[FLTMC] Add Japanese (ja-JP) translation CORE-18706 | 7 个月前 | |
[FONTVIEW] Update Turkish (tr-TR) translation (#9011) | 3 个月前 | |
[TRANSLATION] Add Vietnamese (vi-VN) translation (#9001) Add Vietnamese translation for Calc, Solitaire, Notepad, RAPPS, Setup and Explorer | 3 个月前 | |
[HH] Check LoadLibrary and GetProcAddress return value (#6082) Handle failure cases. | 2 年前 | |
[IEXPLORE] Make the Internet Browser desktop icon use DuckDuckGo instead of Google (#8582) Google recently made modern browser a requirement for their search to work, which the Gecko engine for ReactOS doesn't fulfill. Since ReactOS is already using DuckDuckGo as the default search engine, set it as a default start page. - Before: https://github.com/user-attachments/assets/c544726f-2d83-4a9a-9d53-e9c17fc04fe9 - After: https://github.com/user-attachments/assets/5de5b007-3d1f-458d-a642-6b9e657b4c62 | 7 个月前 | |
[SHELL32][SHLWAPI][BROWSEUI][SHELL32_APITEST][SDK][KBSWITCH][RAPPS] Support SHEvaluateSystemCommandTemplate (#9111) This function has an important role for new ShellExecute implementation. JIRA issue: CORE-19278 - Add evalcmd static library into dll/win32/shell32/evalcmd. - Implement SHEvaluateSystemCommandTemplate in evalcmd. - Link evalcmd to shell32 and shlwapi. - Modify shell32.spec and shlwapi.spec. - Add prototype to <shellapi.h>. - Add SHEvaluateSystemCommandTemplate testcase. - Define PathIsAbsolute inline function in <shlwapi_undoc.h> and use it. | 2 个月前 | |
[CMDUTILS][NETWORK][LOGOFF][RUNAS][CMD][SYSTEM] Improve imports and headers for some tools | 5 个月前 | |
[TRANSLATION] Improve Italian (it-IT) translation part 2 (#7248) | 2 年前 | |
[MMC] Mmc .msc file launcher (#9468) CORE-16431 | 4 天前 | |
[MMC_NEW] Move the snapin root pointer and implement register and unregister for views - MMC maintains one snapin tree per instance. Each console is just a view of this tree. Therefore I moved the snapin root pointer from the console window to the main window. - Implement the register and unregister functions for the view and a common UpdateViews function that call UpdateView for each registered view. | 1 天前 | |
[BASE] Update French (fr-FR) translation (#7563) Updates French translation of base folder. | 1 年前 | |
[MSCONFIG] Disable tree view label editing (#9302) CORE-20447 Remove the `TVS_EDITLABELS` window style from the tree view control of the `SYSTEM.INI`/`WIN.INI` tabs, making the labels read-only as intended. This prevents the UI from opening an editable text box when users click or pause on tree view items, which was misleading since editing/saving here is not implemented. Users are still able to edit configurations using the dedicated "Edit" button on the UI. | 1 个月前 | |
[BASE][CPL] Update Traditional Chinese (zh-TW) translation (#8581) - [MSCONFIG] Update Traditional Chinese (zh-TW) translation - [MSCONFIG_NEW] Update Traditional Chinese (zh-TW) translation - [MSPAINT] Update Traditional Chinese (zh-TW) translation - [NOTEPAD] Update Traditional Chinese (zh-TW) translation - [RAPPS] Update Traditional Chinese (zh-TW) translation - [SETUP:REACTOS] Update Traditional Chinese (zh-TW) translation - [CPL:ACCESS] Update Traditional Chinese (zh-TW) translation - [CPL:APPWIZ] Update Traditional Chinese (zh-TW) translation Take into account documentation updates in b380d23d6f3. | 7 个月前 | |
[MMC] Mmc .msc file launcher (#9468) CORE-16431 | 4 天前 | |
[MSHTA] Implement MSHTA.exe (#577) CORE-12813 Implement mshta.exe. It links directly to the function RunHTMLApplication in mshtml and passes the file name and other optional arguments along. While the function is unimplemented in mshtml, it's a start. [MSHTML] Add ADD_IMPORTLIB to CMakeLists so mshta can link to mshtml. [BOOTDATA] Add the association information for mshta.exe to the registry. | 8 年前 | |
[MSPAINT] Fix unzooming coordinate conversion (#9251) Always rounding of unzooming coordinate values had caused display glitch (e.g. black line on top edge in zooming). JIRA issue: CORE-19466 - Add bRound parameter to UnZoomed function. If bRound is TRUE, then do round by kernel32!MulDiv function. Otherwise don't round. - Add bRound parameter to CCanvasWindow::CanvasToImage. - Make bRound = FALSE default. - Use bRound = TRUE for CCanvasWindow::OnButtonDown, CCanvasWindow::OnButtonDblClk, CCanvasWindow::OnMouseMove, and CCanvasWindow::OnButtonUp. | 1 个月前 | |
[CMAKE] Remove global _CRT_NON_CONFORMING_SWPRINTFS Instead define it only in 3rd-party code where required. Most of these will go away with future wine-syncs. | 4 个月前 | |
[NETSH] Compare the stack entry against the tail, not the head twice (#9473) RemoveContextFromStack tests pStackEntry == pContextStackHead twice in the same condition, so the first branch takes every entry that happens to be the head, not only the one that is head and tail at once. The branch below it, the one that relinks pStackEntry->pNext->pPrev and moves the head forward, is then unreachable. Removing the head of a stack that has more than one entry sets both head and tail to NULL and frees only that entry, so the remaining entries are lost and leaked. The body of the first branch is what says which test was meant: it clears both ends, and that is only correct for the single element case. Compare the second test against pContextStackTail. I found this by reading, not by hitting it in a running netsh session, so I have not confirmed the leak on a live context stack. Reviewed-by: Whindmar Saksit <whindsaks@proton.me> Reviewed-by: Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org> Reviewed-by: Eric Kohl <eric.kohl@reactos.org> Signed-off-by: Dmitry Rantovov <rantovov5@gmail.com> | 3 天前 | |
[TRANSLATION] Add Vietnamese (vi-VN) translation (#9001) Add Vietnamese translation for Calc, Solitaire, Notepad, RAPPS, Setup and Explorer | 3 个月前 | |
[BASE] Update French (fr-FR) translation (#7563) Updates French translation of base folder. | 1 年前 | |
[RAPPS] Remove readonly flag from the downloaded database file CORE-20743 | 20 天前 | |
[REACTOS] Use the ISO C and C++ conformant names: _wcsicmp, _stricmp Stop using non-conforming wcsicmp, stricmp, strcasecmp | 1 年前 | |
[TRANSLATION] Update and improve Turkish (tr-TR) translation (#9018) - [REGEDIT] Update and improve Turkish (tr-TR) translation - [TASKMGR] Update Turkish (tr-TR) translation - [CMD] Update Turkish (tr-TR) translation - [CABVIEW] Update Turkish (tr-TR) translation - [BROWSEUI] Update Turkish (tr-TR) translation | 3 个月前 | |
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys. | 8 年前 | |
[RUNAS] Add Polish (pl-PL) translation (#9180) | 1 个月前 | |
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93. Excluded: 3rd-party code (incl. wine) and most of the win32ss. | 4 年前 | |
[3DTEXT] Add ability to draw any letter or character (#8755) * [3DTEXT] add the ability to draw any letter, not just the first 255 from the character set, limit the text length to 20 Co-authored-by: Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com> Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org> | 1 个月前 | |
[FORMATTING] Remove trailing whitespace. Addendum to 34593d93. Excluded: 3rd-party code (incl. wine) and most of the win32ss. | 4 年前 | |
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys. | 8 年前 | |
[CMDUTILS][NETWORK][LOGOFF][RUNAS][CMD][SYSTEM] Improve imports and headers for some tools | 5 个月前 | |
[SNDREC32] Update Romanian (ro-RO) translation (#6733) | 2 年前 | |
[SNDVOL32] Deduplicate dialog control retrieval code | 4 个月前 | |
[TRANSLATION] Update and improve Turkish (tr-TR) translation (#9018) - [REGEDIT] Update and improve Turkish (tr-TR) translation - [TASKMGR] Update Turkish (tr-TR) translation - [CMD] Update Turkish (tr-TR) translation - [CABVIEW] Update Turkish (tr-TR) translation - [BROWSEUI] Update Turkish (tr-TR) translation | 3 个月前 | |
[TRANSLATION] Improve Simplified Chinese (zh-CN) translation (#6804) - Add and improve translation - Fix mistakes Reviewed-by: Chilung Chan <eason066@gmail.com> Reviewed-by: yangyangdaji <1504305527@qq.com> Reviewed-by: He Yang <1160386205@qq.com> | 2 年前 | |
[REACTOS] Remove unneeded __ROS_LONG64__ | 9 个月前 | |
[WINVER] Display compatibility information (#7661) Also don't hardcode the OS name. This make it compatible with Windows. | 1 年前 | |
[REACTOS] Remove unneeded __ROS_LONG64__ | 9 个月前 | |
[WORDPAD][WRITE] Remove redundant pragma code_page(65001)... ... since this is done in the main RC file, from which the per-language resource files are included. | 3 年前 | |
[UPDATES] New stubs for Automatic Updates service and WUSA.exe. Presence of this modules required for installation by some NT6+ applications. | 7 年前 | |
[MMC_NEW] Add Mark Jansen's MMC Application skeleton (PR #1967) This PR is a great start for a new C++ based MMC. I have some improvements in my source tree which I want to add bit by bit. My modifications to Marks PR are: - Renamed ISnapInAbout to ISnapinAbout for compatibility reasons. - Updated CMakeLists.txt - Removed the patch to shellutils.h because it seems to already have been applied. | 2 天前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 年前 | ||
| 5 个月前 | ||
| 3 个月前 | ||
| 6 个月前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 2 个月前 | ||
| 2 年前 | ||
| 1 年前 | ||
| 4 个月前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 7 个月前 | ||
| 3 个月前 | ||
| 3 个月前 | ||
| 2 年前 | ||
| 7 个月前 | ||
| 2 个月前 | ||
| 5 个月前 | ||
| 2 年前 | ||
| 4 天前 | ||
| 1 天前 | ||
| 1 年前 | ||
| 1 个月前 | ||
| 7 个月前 | ||
| 4 天前 | ||
| 8 年前 | ||
| 1 个月前 | ||
| 4 个月前 | ||
| 3 天前 | ||
| 3 个月前 | ||
| 1 年前 | ||
| 20 天前 | ||
| 1 年前 | ||
| 3 个月前 | ||
| 8 年前 | ||
| 1 个月前 | ||
| 4 年前 | ||
| 1 个月前 | ||
| 4 年前 | ||
| 8 年前 | ||
| 5 个月前 | ||
| 2 年前 | ||
| 4 个月前 | ||
| 3 个月前 | ||
| 2 年前 | ||
| 9 个月前 | ||
| 1 年前 | ||
| 9 个月前 | ||
| 3 年前 | ||
| 7 年前 | ||
| 2 天前 |