Commit graph

13888 commits

Author SHA1 Message Date
Mirek Fidler
dcf3117643 PdfDraw: Developing color glyph support 2022-01-07 18:50:55 +01:00
Mirek Fidler
5b634b8081 Makefile(s) updated 2022-01-06 08:40:04 +01:00
Mirek Fidler
a5c684f895 PdfDraw: Removed accidental CtrlLib.h include 2022-01-06 08:34:22 +01:00
Mirek Fidler
02ec62e89c CtrlLib: ChWin32: Removed unsupported colors 2022-01-05 09:03:54 +01:00
Mirek Fidler
daf3068438 Makefile(s) updated 2022-01-05 08:50:03 +01:00
Mirek Fidler
f2ce3bfc75 PdfDraw: Improvements 2022-01-05 08:45:00 +01:00
Mirek Fidler
4f32c54c69 Makefile(s) updated 2022-01-02 23:20:04 +01:00
Mirek Fidler
405c6ff0da PdfDraw: Fixed nonBMP glyphs export 2022-01-02 23:14:17 +01:00
Zbigniew Rębacz
815ce70fa2 Ide, Doc: 2022 in about box. 2021-12-31 00:43:09 +01:00
Mirek Fidler
97bc27d7e1 Core: One more fix of addc64 2021-12-28 10:34:28 +01:00
Mirek Fidler
3e1a59166a Core: Reverted add_carry issue, including x86intrin instead (thanks Klugier) 2021-12-28 10:20:49 +01:00
Mirek Fidler
ee220a64aa Draw: Color Emoji now prefered as replacement 2021-12-28 10:14:11 +01:00
Zbigniew Rębacz
1a43549d5b CtrlLib: .cosmetics in tutorial. 2021-12-27 22:03:23 +01:00
Mirek Fidler
1da32a1315 CtrlLib tutorial: 14.1 minimal window size 2021-12-26 09:40:51 +01:00
Zbigniew Rębacz
7f9f8f985b Web: .cosmetics in GITRepository docuemntation. 2021-12-26 01:11:16 +01:00
Zbigniew Rębacz
535fa9f4d1
Website index now points to valid git version number (#54)
* Website index now points to valid git version number.

* Renamed latestsvn to latestgit.
2021-12-25 19:36:18 +01:00
Zbigniew Rębacz
3c5aee70a8
Instant Setup for VS Professional 2022 (#56)
What's changed:
- Added detection for Visual Studio Professional 2022 detection
- The configuration is now gather from both x86 and x64 directories (user could have both)
- minor fixes
2021-12-25 19:32:11 +01:00
Mirek Fidler
a26b8ed890 uppbox - uppweb 2021-12-25 19:26:21 +01:00
Mirek Fidler
e9228d21bd Core: _addcarry_u64 issue with clang 2021-12-25 19:17:11 +01:00
Mirek Fidler
900dcdff41 Core: addc64 using 'slow path' with GCC < 6 as _addcarry_u64 is not available 2021-12-25 19:06:51 +01:00
Zbigniew Rębacz
e68b9c9e10
Git documentation update (#53)
* Git documnetation now remarks that this is major development tool. SVN link was removed from main page.

* Removed SVN install article.
2021-12-21 16:59:46 +01:00
Mirek Fidler
01a518c9d8 CtrlLib: fixed the scrollbar width in MacOS 12.1 2021-12-21 16:49:49 +01:00
Mirek Fidler
6394813c02 ide: Visual Studio 2022 support in instant setup 2021-12-21 09:26:27 +01:00
Mirek Fidler
132aba9d38 ide: MSC22 support (thanks Tom) 2021-12-20 10:23:48 +01:00
Mirek Fidler
d8d16229d1 Fixed reporting leaks for GLCtrl in Linux with Radeon driver, new memory leaks detection related functions. 2021-12-19 14:53:30 +01:00
Mirek Fidler
38b6807ff4 CtrlLib: ArrayCtrl::SetLineColor now does refresh if color is different 2021-12-14 21:37:22 +01:00
Mirek Fidler
9518d09962 Draw: Fixed charset conversion in DrawText 2021-12-13 23:05:14 +01:00
Mirek Fidler
d16b2ab18a Draw: Fixed Color Emoji with FreeType 2021-12-12 16:36:17 +01:00
Mirek Fidler
7edfc57742 CtrlLib: Fixed FileSel icon loading in Win32 2021-12-09 16:29:24 +01:00
Mirek Fidler
802d9f3e9f ide: Fixed to compile 2021-12-09 00:44:12 +01:00
Mirek Fidler
85873b75f0 ide: Fixed deadlock warning issues with context goto AK_ definition 2021-12-06 09:19:05 +01:00
Mirek Fidler
22cf499432 upp.src: Various CHARSET_UNICODE->CHARSET_UTF8 changes, FT_fontsys fix, SDL2GL fix 2021-12-05 20:01:27 +01:00
Mirek Fidler
d2207cd21f .autotest, .cosmetics 2021-12-05 18:54:24 +01:00
Mirek Fidler
198e8114a6 CtrlCore: Ctrl::GetEventLevel 2021-12-05 10:03:47 +01:00
Mirek Fidler
fc6946e016 Core: WebSocket redirect, .autotest 2021-12-04 20:20:46 +01:00
Mirek Fidler
8b8b141f90 ide: Ctrl+D duplicate now works on selection too 2021-12-02 16:37:07 +01:00
Mirek Fidler
a9b5fb9012 ide: Reformat JSON/XML 2021-12-02 15:15:42 +01:00
Mirek Fidler
9473af7dd4 Makefile(s) updated 2021-12-02 12:10:07 +01:00
Mirek Fidler
34ff691308 sizeof(wchar) is changed to 4 (32 bits) to support non BMP unicode characters
This might bring some incompatibilities in the code that expects wchar to be 16 bit, which
  escpecially involves dealing with Win32 (and to lesser extend MacOS) APIs, so if your application
  is doing that, please check all instances of WCHAR (UniChar on MacOS) or even wchar
  especially type casts.

  To support host APIs, char16 is introduced (but there is no 16-bit String varian).

  Use ToSystemCharsetW, FromSystemCharsetW to convert texts to Win32 API.

- Support of drawing non-BMP characters in GUI
- Vastly improved character font replacement code (when drawing characters missing with requested font, replacement font is used)
- Last instances of Win32 ANSI calls (those ending with A) are removed
- UTF handling routines are refactored and their's naming is unified
- RTF is now being able to handle non-BMP characters (RTF is used as clipboard format for RichText)

Other minor changes:

- fixed TryRealloc issue
- improved MemoryCheck
- Removed MemoryAlloc48/MemoryFree48
- In theide Background parsing should less often cause delays in the main thread
2021-12-02 12:03:19 +01:00
Mirek Fidler
a6a071a16c .autotest 2021-11-27 18:08:18 +01:00
Mirek Fidler
1a71bba7ca CtrlLib: Added missing Prompt variant 2021-11-22 15:44:37 +01:00
Mirek Fidler
8b88b59652 Core: Atof fix 2021-11-20 16:45:47 +01:00
Mirek Fidler
05d4eca9e6 plugin/jpg: DEFAULT_MAX_MEM increased to 256MB to avoid back buffer problem 2021-11-17 10:18:08 +01:00
Mirek Fidler
ac77bc500e Atof now does not consider ',' as decimal point 2021-11-08 17:59:38 +01:00
Mirek Fidler
cab3ac794a .autotest 2021-11-07 15:46:24 +01:00
Mirek Fidler
638610092e Fixed problem in Ctrl::NotDrag 2021-11-05 17:43:06 +01:00
Mirek Fidler
3d7cd364e1 .uppbox FontMaps2 2021-10-23 13:07:27 +02:00
Mirek Fidler
89e7015dfe .removed DLOG 2021-10-19 12:33:45 +02:00
Mirek Fidler
c4a5702fa6 ide: Win32 Debugger now displays first chance 'crashing' exceptions (as they now seem to be caught by Win32, preventing the debugging of such situations) 2021-10-19 11:14:00 +02:00
Mirek Fidler
5ea2cb8792 ide: wchar32 support in debugger 2021-10-18 20:49:44 +02:00