Commit Graph

2404 Commits

Author SHA1 Message Date
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
Elias Batek d209923433 Allow PixmapRecorder.close() to be called on inactive recorders 2024-08-17 06:10:16 +02:00
Elias Batek a49e7c16e5 Add Pixmap Recorder to the changelog 2024-08-17 05:39:22 +02:00
Elias Batek f1b69132af Improve description of Pixmap Recorder 2024-08-17 05:35:16 +02:00
Elias Batek aba6a49f74 Add Pixmap Recorder module 2024-08-17 05:32:32 +02:00
Adam D. Ruppe ad0f6109e6 glvw first dragt 2024-08-12 12:48:44 -04:00
Adam D. Ruppe d8861809e3 unfinished thing i think can be cool 2024-08-12 12:35:38 -04:00
Adam D. Ruppe d0930025c1 first draft of rounded rectangle border option 2024-08-12 12:35:01 -04:00
Adam D. Ruppe 03fb5aa82b svg preprocessor to make use kinda work sometimes 2024-08-12 12:34:42 -04:00
Adam D. Ruppe 86154c5c09 capability to gzip request bodies 2024-08-06 21:14:53 -04:00
Adam D. Ruppe 9897accfd1 bigger buffer for better performance 2024-08-06 07:00:46 -04:00
Adam D. Ruppe c58afec041
Merge pull request #448 from rodevasia/patch-1
Fix for error at string to char* conversion in `executePreparedStatement` in Postgres.d
2024-08-05 16:04:20 -04:00
Robert Devasia 8344debe27
Fix for error at string to char* conversion in `executePreparedStatement`
Dependency was throwing error 
`
template instance `arsd.postgres.PostgreSql.executePreparedStatement!(char, char)` error instantiating
`
when  use executePreparedStatement

DUB : 1.38.1
PostgreSQL: 16

I got this error in the package 

`
template `to` is not callable using argument types `!(string)(char)`
`
where the usage is ` db.executePreparedStatement("update_tbl_cmd",'3','a');`
2024-08-05 00:09:22 -04:00
Adam D. Ruppe a3d532bc5a expose CustomTextWidget on all platforms 2024-08-02 08:47:27 -04:00