Commit Graph

2417 Commits

Author SHA1 Message Date
Adam D. Ruppe 21eec2bc9b use new object from dom.d, breaking change - change your string[string] to AttributesHolder too 2024-09-23 21:33:17 -04:00
Adam D. Ruppe 2f457a1dbe hacks to make it build on Windows 2024-09-23 21:32:32 -04:00
Adam D. Ruppe 6c8d967086 safer by default 2024-09-23 21:32:10 -04:00
Adam D. Ruppe 697214132d port of commommark for my use 2024-09-23 16:10:41 -04:00
Adam D. Ruppe a9a9d75988 mac safer by default 2024-09-22 14:32:20 -04:00
Adam D. Ruppe c13a8cd2e5 more safer by default warning silencing 2024-09-15 09:21:01 -04:00
Adam D. Ruppe d67fae5b1f bold fonts on linux were so wrong lol 2024-09-15 08:38:37 -04:00
Adam D. Ruppe 156e02bee9 more html parsing woes 2024-09-15 08:38:21 -04:00
Adam D. Ruppe d246f4d744 ExternalProcess overhaul to be better pipe citizens 2024-09-13 22:05:01 -04:00
Adam D. Ruppe d5a59f8a3b screenpainter emulator for my block puzzle DO NOT DEPEND ON YEY 2024-09-13 22:04:39 -04:00
Adam D. Ruppe 86ab28abf0 better reconnecting 2024-09-13 22:04:08 -04:00
Adam D. Ruppe 9f9cf2e290 useful month names 2024-09-13 22:03:53 -04:00
Adam D. Ruppe fadcce6082 dox 2024-09-13 22:03:43 -04:00
Adam D. Ruppe 25e46e9d2d opengl3 limited font wip 2024-09-13 22:03:22 -04:00
Adam D. Ruppe 368d1d8c59 some matrix math 2024-09-13 22:02:59 -04:00
Adam D. Ruppe 6e4e2966ca some browser jam stuff 2024-09-13 22:02:07 -04:00
Adam D. Ruppe 21c8eb6cbd handle some other non-nestable html tags too 2024-09-13 15:18:22 -04:00
Adam D. Ruppe 20e675ee99 omg to and cc are not supposed to be the same 2024-09-13 07:51:55 -04:00
Adam D. Ruppe b1c1d86fb8
Merge pull request #458 from analogjupiter/suppress-auto-opengl-viewport
Suppress sdpy's auto-OpenGL-viewport in PixmapPresenter
2024-09-10 22:01:18 -04:00
Elias Batek 9c4a452bb2 Suppress sdpy's auto-OpenGL-viewport in PixmapPresenter 2024-09-11 03:58:21 +02:00
Adam D. Ruppe 5dd6f2bc54
Merge pull request #457 from analogjupiter/timer-conflict
Timer conflict
2024-09-10 21:21:55 -04:00
Elias Batek 2e05986ade Update history of arsd.core.Timer 2024-09-11 03:18:54 +02:00
Elias Batek 39e87df602 Fix "Timer" symbol clash 2024-09-11 03:08:13 +02:00
Adam D. Ruppe 4f2b94e790 omg use after free bug was there 2024-09-09 21:58:13 -04:00
Adam D. Ruppe 701fdf5e25 %F not supported on Windows lol 2024-09-09 21:12:39 -04:00
Adam D. Ruppe ae07d697a3 make compile times great again 2024-09-09 20:51:28 -04:00
Adam D. Ruppe 6d30f2fba9
Merge pull request #456 from analogjupiter/corner-style
Implement "corner style" property for sdpy windows on Windows 11+
2024-09-09 20:47:03 -04:00
Elias Batek a9a596dc20 Support slightly rounded window corners too 2024-09-10 02:29:59 +02:00
Adam D. Ruppe 547ded1eeb
Merge pull request #455 from analogjupiter/json-syntax
Fix JSON syntax
2024-09-09 20:22:15 -04:00
Elias Batek 376fde2e8a Fix JSON syntax 2024-09-10 02:19:43 +02:00
Elias Batek b6b12995f9 Add corner-style preference setting to PixmapPresenter 2024-09-10 02:17:22 +02:00
Elias Batek bbc7aec494 Implement corner-style for sdpy windows on Windows 11+ 2024-09-10 02:15:02 +02:00
Adam D. Ruppe 2e8d9cdeb9
Merge pull request #453 from dkorpel/patch-2
core.d: Fix wrong `return` annotation on UserProvidedBuffer.slice
2024-09-03 07:36:59 -04:00
Dennis 31ab53959e
Fix wrong `return` annotation
There's a compile error when using `-preview=dip1000`:

```D
	static SocketAddress[] localhost(ushort port, return UserProvidedBuffer!SocketAddress buffer = null) {
		buffer.append(ip6("::1", port));
		buffer.append(ip4("127.0.0.1", port));
		return buffer.slice;
	}
```

```
C:\Users\Dennis\AppData\Local\dub\packages\arsd-official\11.4.2\arsd-official\core.d(3066,10): Error: returning `buffer.slice()` escapes a reference to parameter `buffer`
C:\Users\Dennis\AppData\Local\dub\packages\arsd-official\11.4.2\arsd-official\core.d(3181,10): Error: returning `buffer.slice()` escapes a reference to parameter `buffer`
```

The `UserProvidedBuffer.slice` method is annotated `return (ref)` but it should be `return scope`, or since it's a template, just inferred.
2024-09-03 11:48:38 +02:00
Adam D. Ruppe 5c26eeb447 trying to track down a random hang and as quick as it came it was gone agian but meh 2024-08-29 20:33:12 -04:00
Adam D. Ruppe 9881f555a5 some more screenpainter compat in arsd.game 2024-08-27 10:19:41 -04:00
Adam D. Ruppe 3cc5028486 new dmd compat 2024-08-27 10:19:32 -04:00
Adam D. Ruppe cdeca0a686 preserve order of attributes with new wrapper - has breaking changes 2024-08-27 10:19:12 -04:00
Adam D. Ruppe a49f64893c a few adrdox fixups 2024-08-20 16:06:01 -04:00
Adam D. Ruppe d646bc17ca
Merge pull request #451 from analogjupiter/pixmappaint
Document Pixmap Paint module
2024-08-18 12:24:58 -04:00
Adam D. Ruppe cb76629376
Merge pull request #450 from analogjupiter/pixmap-recorder
Pixmap Recorder revision Ⅰ
2024-08-18 12:24:49 -04:00
Elias Batek 8a68748bd6 Adjust placement of @safe for better readability 2024-08-18 03:39:20 +02:00
Elias Batek 3b33ac7f30 Document arsd.pixmappaint module 2024-08-18 03:24:26 +02:00
Elias Batek 997a7c8fd5 Fix spelling and grammar 2024-08-18 02:59:28 +02:00
Elias Batek 8efa5c7720 Overhaul Pixmap Recorder 2024-08-18 02:40:18 +02:00
Elias Batek f432e7d744 Improve documentation of Pixmap Recorder 2024-08-18 02:11:34 +02:00
Elias Batek 1d39d3b61e Remove unused stdout-getter from Pixmap Recorder
Wasn't even properly implemented anyway
and would have returned `stderr` instead.
2024-08-18 01:19:52 +02:00
Elias Batek 2a12df337d Mark PixmapRecorder as Output Range
Because why not? :P
2024-08-18 01:17:49 +02:00
Elias Batek 2f32267898 Fix bogus return statement in PixmapRecorder.close() 2024-08-18 01:16:48 +02:00
Adam D. Ruppe b6e54b8b85
Merge pull request #449 from analogjupiter/pixmap-recorder
Add Pixmap Recorder module
2024-08-17 07:36:15 -04:00