https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8ee0ee6a882f51b056591…
commit 8ee0ee6a882f51b0565910e6f2ea8a898dd5465a
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Sat Oct 10 22:54:39 2020 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Sat Oct 10 22:54:39 2020 +0900
[FONTS] Improve vgaoem.fon compatibilities by Fony
I have edited the font file vgaoem.fon with Fony application.
I adjusted the bitmap and the metrics.
The font name was "XFreeVGA" but now I renamed it as "Terminal".
(C) AJCD 1995 (C) 2009 grischka (C) khmz.
CORE-17327
---
media/fonts/vgaoem.fon | Bin 5712 -> 4656 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/media/fonts/vgaoem.fon b/media/fonts/vgaoem.fon
index e2fcad29bc7..440bede854c 100644
Binary files a/media/fonts/vgaoem.fon and b/media/fonts/vgaoem.fon differ
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a5f36688cdfdf5071ac44…
commit a5f36688cdfdf5071ac445102fbc87c752eff1e6
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Sat Oct 10 22:53:04 2020 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Sat Oct 10 22:53:15 2020 +0900
[FONTS] Add CORE-* comments into CMakeLists.txt
CORE-17327
---
media/fonts/CMakeLists.txt | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/media/fonts/CMakeLists.txt b/media/fonts/CMakeLists.txt
index 382b6362857..dd9b257f2a8 100644
--- a/media/fonts/CMakeLists.txt
+++ b/media/fonts/CMakeLists.txt
@@ -41,14 +41,14 @@ list(APPEND FONT_FILES
SourceSansPro-Bold.ttf
SourceSansPro-BoldIt.ttf
SourceSansPro-It.ttf
- #ssee874.fon # to be added
- #ssee1255.fon # to be added
- #ssee1256.fon # to be added
- #ssee1257.fon # to be added
- #sserife.fon # to be added
- #sserifeg.fon # to be added
- #sserifer.fon # to be added
- #sserifet.fon # to be added
+ #ssee874.fon # to be added (CORE-16165 and CORE-16166)
+ #ssee1255.fon # to be added (CORE-16165 and CORE-16166)
+ #ssee1256.fon # to be added (CORE-16165 and CORE-16166)
+ #ssee1257.fon # to be added (CORE-16165 and CORE-16166)
+ #sserife.fon # to be added (CORE-16165 and CORE-16166)
+ #sserifeg.fon # to be added (CORE-16165 and CORE-16166)
+ #sserifer.fon # to be added (CORE-16165 and CORE-16166)
+ #sserifet.fon # to be added (CORE-16165 and CORE-16166)
symbol.ttf
tahoma.ttf
tahomabd.ttf
@@ -65,7 +65,7 @@ list(APPEND FONT_FILES
verdanaz.ttf
verdanai.ttf
verdana.ttf
- #vgaoem.fon # to be added
+ #vgaoem.fon # to be added (CORE-17327)
wingding.ttf)
foreach(item ${FONT_FILES})
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=c464b02c90e448ea45772…
commit c464b02c90e448ea45772709f741dbcde6c8a08c
Author: Dmitry Borisov <di.sean(a)protonmail.com>
AuthorDate: Sun Sep 13 17:36:40 2020 +0600
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Sat Oct 10 16:24:17 2020 +0300
[NTOS:PNP] Install mouse driver on NEC PC-98 series (#3173)
The current implementation of device tree enumeration does not distinguish
between possible identifier strings. This change is not a hack,
NT 5.2 still creates a new device node for this hardware ID.
The entire function should be rewritten to match Windows implementation.
---
ntoskrnl/io/pnpmgr/pnpmgr.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/ntoskrnl/io/pnpmgr/pnpmgr.c b/ntoskrnl/io/pnpmgr/pnpmgr.c
index ac9d71a9b99..50e608e3730 100644
--- a/ntoskrnl/io/pnpmgr/pnpmgr.c
+++ b/ntoskrnl/io/pnpmgr/pnpmgr.c
@@ -1065,7 +1065,15 @@ IopEnumerateDetectedDevices(
UNICODE_STRING HardwareIdKeyboard = RTL_CONSTANT_STRING(L"*PNP0303\0");
static ULONG DeviceIndexKeyboard = 0;
const UNICODE_STRING IdentifierMouse = RTL_CONSTANT_STRING(L"PointerController");
+ /* FIXME: IopEnumerateDetectedDevices() should be rewritten.
+ * The PnP identifiers can either be hardcoded or parsed from a LegacyXlate
+ * sections of driver INF files.
+ */
+#if defined(SARCH_PC98)
+ UNICODE_STRING HardwareIdMouse = RTL_CONSTANT_STRING(L"*nEC1F00\0");
+#else
UNICODE_STRING HardwareIdMouse = RTL_CONSTANT_STRING(L"*PNP0F13\0");
+#endif
static ULONG DeviceIndexMouse = 0;
const UNICODE_STRING IdentifierParallel = RTL_CONSTANT_STRING(L"ParallelController");
UNICODE_STRING HardwareIdParallel = RTL_CONSTANT_STRING(L"*PNP0400\0");
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4cd2a93bda62b00973a71…
commit 4cd2a93bda62b00973a71af733eea15f62fe22a8
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Sat Oct 10 21:09:59 2020 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Sat Oct 10 21:12:26 2020 +0900
[FONTS] Disable vgaoem.fon to fix font display problems
The vgaoem.fon font file was added at 383ea7d.
But adding vgaoem.fon made a regression in font display on FireFox 48.
So, we temporarily disable this font file.
CORE-17327
---
media/fonts/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media/fonts/CMakeLists.txt b/media/fonts/CMakeLists.txt
index 2bb1a844709..382b6362857 100644
--- a/media/fonts/CMakeLists.txt
+++ b/media/fonts/CMakeLists.txt
@@ -65,7 +65,7 @@ list(APPEND FONT_FILES
verdanaz.ttf
verdanai.ttf
verdana.ttf
- vgaoem.fon
+ #vgaoem.fon # to be added
wingding.ttf)
foreach(item ${FONT_FILES})
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=247f2e4705e7d2bc5f112…
commit 247f2e4705e7d2bc5f1128bcdd2df79da983ad7f
Author: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
AuthorDate: Sat Oct 10 21:05:09 2020 +0900
Commit: Katayama Hirofumi MZ <katayama.hirofumi.mz(a)gmail.com>
CommitDate: Sat Oct 10 21:05:09 2020 +0900
[FONTS] Make vgaoem.fon monospaced in settings
The font file vgaoem.fon was not monospaced in font file settings.
CORE-17327
---
media/fonts/vgaoem.fon | Bin 5728 -> 5712 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/media/fonts/vgaoem.fon b/media/fonts/vgaoem.fon
index 25c7544dd18..e2fcad29bc7 100644
Binary files a/media/fonts/vgaoem.fon and b/media/fonts/vgaoem.fon differ