https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e0b32f28f401742f80b78…
commit e0b32f28f401742f80b78ce7958d7afa70b041ba
Author: Jared Smudde <computerwhiz02(a)hotmail.com>
AuthorDate: Mon Nov 6 15:17:56 2017 -0600
[mspaint] Replace the current 16 pixel program icon with one from the Tango icon theme.
---
base/applications/mspaint/icons/paint.ico | Bin 22486 -> 22486 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/base/applications/mspaint/icons/paint.ico b/base/applications/mspaint/icons/paint.ico
index 730f8d44a2..e14e1db16e 100644
Binary files a/base/applications/mspaint/icons/paint.ico and b/base/applications/mspaint/icons/paint.ico differ
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=23bc0b505228159c92787…
commit 23bc0b505228159c927877a399dce0865964b97b
Author: Joachim Henze <Joachim.Henze(a)reactos.org>
AuthorDate: Tue Nov 7 19:25:46 2017 +0100
[RAPPS-DB] CORE-13199 pingus.txt fix typo in spanish description spotted by Javier Fernandez
---
media/rapps/pingus.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media/rapps/pingus.txt b/media/rapps/pingus.txt
index 86f01b7d4b..ff8062733e 100644
--- a/media/rapps/pingus.txt
+++ b/media/rapps/pingus.txt
@@ -15,7 +15,7 @@ Description = Freies Lemmings-ähnliches Puzzle Spiel.
Size = 15,8 MiB
[Section.0a]
-Description = Un juego de puzles parecido a los Lemmings.
+Description = Un juego de puzzles parecido a los Lemmings.
[Section.0410]
Description = Pingus è un gioco gratuito simile a Lemmings.
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=03d5be6437a1f2e4376ac…
commit 03d5be6437a1f2e4376ac117421133ebfdde799e
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Mon Nov 6 20:09:23 2017 +0100
[CDFS_NEW] Add a hack that allows locking a volume and thus, unmounting it. All that work, just to be able to do this...
---
drivers/filesystems/cdfs_new/fsctrl.c | 10 ++++++++++
drivers/filesystems/cdfs_new/wdk_wnet_to_ros.diff | 17 +++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/drivers/filesystems/cdfs_new/fsctrl.c b/drivers/filesystems/cdfs_new/fsctrl.c
index 31c4965f9f..562bdc6482 100755
--- a/drivers/filesystems/cdfs_new/fsctrl.c
+++ b/drivers/filesystems/cdfs_new/fsctrl.c
@@ -225,6 +225,16 @@ Return Value:
CdReleaseVcb( IrpContext, Vcb );
Status = CcWaitForCurrentLazyWriterActivity();
+#ifdef __REACTOS__
+ if (Status == STATUS_NOT_IMPLEMENTED)
+ {
+ Status = STATUS_SUCCESS;
+ }
+ else
+ {
+ DbgPrint("CcWaitForCurrentLazyWriterActivity got implemented! Remove hack in %s:%s\n", __FILE__, __LINE__);
+ }
+#endif
//
// This is intentional. If we were able to get the Vcb before, just
diff --git a/drivers/filesystems/cdfs_new/wdk_wnet_to_ros.diff b/drivers/filesystems/cdfs_new/wdk_wnet_to_ros.diff
index a4bface2e4..b27df5692d 100644
--- a/drivers/filesystems/cdfs_new/wdk_wnet_to_ros.diff
+++ b/drivers/filesystems/cdfs_new/wdk_wnet_to_ros.diff
@@ -895,6 +895,23 @@ Index: drivers/filesystems/cdfs_new/fsctrl.c
CdIsVolumeDirty (
IN PIRP_CONTEXT IrpContext,
IN PIRP Irp
+@@ -225,6 +225,16 @@
+ CdReleaseVcb( IrpContext, Vcb );
+
+ Status = CcWaitForCurrentLazyWriterActivity();
++#ifdef __REACTOS__
++ if (Status == STATUS_NOT_IMPLEMENTED)
++ {
++ Status = STATUS_SUCCESS;
++ }
++ else
++ {
++ DbgPrint("CcWaitForCurrentLazyWriterActivity got implemented! Remove hack in %s:%s\n", __FILE__, __LINE__);
++ }
++#endif
+
+ //
+ // This is intentional. If we were able to get the Vcb before, just
@@ -918,7 +919,7 @@
if (CdIsRemount( IrpContext, Vcb, &OldVcb )) {