NO

Author Topic: Release Candidate for version 12.00 is now available  (Read 17560 times)

Offline larryli

  • Member
  • *
  • Posts: 12
Re: Release Candidate for version 12.00 is now available
« Reply #15 on: April 07, 2023, 10:22:18 AM »
Please add DPI support

https://learn.microsoft.com/en-us/windows/win32/hidpi/setting-the-default-dpi-awareness-for-a-process#setting-default-awareness-with-the-application-manifest

Code: [Select]
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
  <asmv3:application>
    <asmv3:windowsSettings>
      <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
      <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

Offline Akko

  • Member
  • *
  • Posts: 37
Re: Release Candidate for version 12.00 is now available
« Reply #16 on: April 13, 2023, 09:58:57 AM »
Many many thanks for the new version!! I really appreciate your continuing support.

My 5 cents:

Installs and runs on Win11 (for me personally the best Win version so far, although I am nostalgically a bit more inclined towards Win7..).

Compiling my Forth compiler with 12.00 seems to go fine, but the Forth test suite shows some errors with string handling functions (which it does not when compiled with gcc or vc or clang). Unfortunately I have not yet found time for hunting the bug ...


Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2265
    • http://www.smorgasbordet.com
Re: Release Candidate for version 12.00 is now available
« Reply #17 on: April 16, 2023, 05:16:45 PM »
Please add DPI support
Not in this version, maybe in some future version...
/Pelle

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2265
    • http://www.smorgasbordet.com
Re: Release Candidate for version 12.00 is now available
« Reply #18 on: April 16, 2023, 05:20:09 PM »
Compiling my Forth compiler with 12.00 seems to go fine, but the Forth test suite shows some errors with string handling functions (which it does not when compiled with gcc or vc or clang). Unfortunately I have not yet found time for hunting the bug ...
Could be a bug, different default settings, or something else. I can't really comment without more info...
/Pelle