1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
|
------------------------------------------------------------------
2025-12-07 14:21:39 +0100 Martin Preuss
Prepared release 5.14
------------------------------------------------------------------
2025-12-06 22:40:54 +0100 Martin Preuss
qt5-gui: use H/VLayout instead of H/VSplitter.
nLayout have no handle but they at least show subwindows the same way as nSplitter,
except that the subpanels can't be resized manually.
------------------------------------------------------------------
2025-12-06 22:38:26 +0100 Martin Preuss
increased verbosity.
------------------------------------------------------------------
2025-12-06 15:11:20 +0100 Martin Preuss
gtk3_gui: correctly apply widget flags to child widgets in packing widgets.
------------------------------------------------------------------
2025-12-06 15:10:32 +0100 Martin Preuss
fixed a bug in scrollArea widget.
------------------------------------------------------------------
2025-12-05 16:56:21 +0100 Martin Preuss
gui/GTK3: apply flags FILLX and FILLY to created widgets.
------------------------------------------------------------------
2025-12-05 16:55:14 +0100 Martin Preuss
gui/fox16: added dialog test.
------------------------------------------------------------------
2025-12-04 22:18:03 +0100 Martin Preuss
gui: added test for vsplitter (works with GTK3!!).
------------------------------------------------------------------
2025-12-04 22:17:28 +0100 Martin Preuss
gui/gtk3: fixed a bug.
stupid, stupid bug...
------------------------------------------------------------------
2025-12-04 16:44:02 +0100 Martin Preuss
gtk3-gui: changed order of gtk_paned_add1/2 (looks nicer to me that way).
------------------------------------------------------------------
2025-12-04 16:22:31 +0100 Martin Preuss
GUI: Implemented VSplitter and HSplitter for GTK3.
------------------------------------------------------------------
2025-12-03 22:57:49 +0100 Martin Preuss
Implemented HSplitter and VSplitter for FOX16.
------------------------------------------------------------------
2025-12-03 22:57:12 +0100 Martin Preuss
GUI: defined widgets HSplitter and VSplitter
HSplitter/VSplitter are used to interactively repartition two subpanels.
VSplitter is for vertical splitting, HSplitter for horizontal splitting.
GetIntProperty() is supposed to return the size of the first subpanel.
SetIntProperty() is supposed to set the size of the first subpanel (leaving
the remainder to the second subpanel).
------------------------------------------------------------------
2025-12-03 20:21:06 +0100 Martin Preuss
Merge branch 'mp-20251201-logger'
------------------------------------------------------------------
2025-12-03 20:20:34 +0100 Martin Preuss
guard unistd.h
------------------------------------------------------------------
2025-12-01 13:54:51 +0100 Martin Preuss
logger: improved readability.
------------------------------------------------------------------
2025-12-01 12:42:32 +0100 Martin Preuss
simplify logger code.
------------------------------------------------------------------
2025-12-01 12:40:16 +0100 Martin Preuss
GWEN_Gui_WaitForSockets: use given argument instead of defined value
------------------------------------------------------------------
2025-12-01 12:39:02 +0100 Martin Preuss
added GWEN_Tag16_GetTagDataAsDouble()
------------------------------------------------------------------
2025-10-06 11:55:56 +0200 Martin Preuss
Prepared release 5.13.0. Applied patch by rhabacker (remove escapes).
------------------------------------------------------------------
2025-10-05 18:13:38 +0200 Martin Preuss
fixed a typo.
------------------------------------------------------------------
2025-10-05 18:13:30 +0200 Martin Preuss
remove "register" keyword.
------------------------------------------------------------------
2025-09-29 21:28:19 +0200 Martin Preuss
added two GWEN_Data functions:
- GWEN_Date_GetThisWeekStartFromMonday(): get start of week for the
given date (week starting with Monday, like in DE)
- GWEN_Date_GetThisWeekStartFromSunday(): same as above except week
starts at Sunday
------------------------------------------------------------------
2025-09-20 01:50:13 +0200 Martin Preuss
Fixed a bug in uint8_t_array.
------------------------------------------------------------------
2025-09-12 17:29:53 +0200 Thomas Baumgart
Fix br_init_lib to work with modern compilers
More modern compiler place the string used to locate the filename of the
library in a different (non-executable) segment. Therefore, the routine
to find the filename failed. This problem only shows one configures
with --enable-binreloc which is used when packaging it into an AppImage
format.
Using a code symbol of the library as reference solves the problem.
------------------------------------------------------------------
2025-09-05 19:23:57 +0200 Martin Preuss
Merge branch 'rel-5.12.2'
------------------------------------------------------------------
2025-09-05 18:23:54 +0200 Martin Preuss
Prepared release 5.12.2
------------------------------------------------------------------
2025-09-01 19:05:16 +0200 Martin Preuss
fox16: changed dialog placement/layout code.
------------------------------------------------------------------
2025-09-01 17:59:23 +0200 Martin Preuss
fox16: Hopefully fixed problem with windows on Gnome.
------------------------------------------------------------------
2025-08-12 21:37:50 +0200 Martin Preuss
build: fixed handling of libdl.
For some unknown reason autoconf is test-compiling C++ code with gcc
instead of g++. This change forces the use C code with a C compiler.
------------------------------------------------------------------
2025-07-24 11:55:47 +0200 Thomas Baumgart
Support out-of-source build for Qt6 gui
------------------------------------------------------------------
2025-07-06 19:55:49 +0200 Martin Preuss
Prepared release 5.12.1
------------------------------------------------------------------
2025-07-05 10:40:11 +0200 Thomas Baumgart
Added missing symlink for Qt6
------------------------------------------------------------------
2025-06-16 20:12:10 +0200 Thomas Baumgart
Support building for Qt6
------------------------------------------------------------------
2025-06-18 00:22:56 +0200 Martin Preuss
nogui: fixed a bug.
returning 1 completely disables logging in NOGUI module which isn't exactly
what's intended; we don't want console output by NOGUI, but we don't want
to suppress logs to files or syslog.
------------------------------------------------------------------
2025-06-18 00:20:01 +0200 Martin Preuss
logger: don't open already opened logger.
------------------------------------------------------------------
2025-06-16 19:59:53 +0200 Thomas Baumgart
Fix name of output variable
------------------------------------------------------------------
2025-03-20 01:10:01 +0100 Martin Preuss
inetsocket: added flags (for raw dumping).
------------------------------------------------------------------
2025-03-20 01:08:44 +0100 Martin Preuss
tag16: added some tag read/write functions.
------------------------------------------------------------------
2025-03-20 01:08:20 +0100 Martin Preuss
added GWEN_Timestamp_GetWeekDay()
------------------------------------------------------------------
2025-02-23 21:44:55 +0100 Micha Lenk
Remove double declaration of HtmlObject_Grid_new
This fixes a build failure when compiling with GCC 15 due to conflicting
declarations of HtmlObject_Grid_new.
The build failure was initially reported by Matthias Klose <doko@debian.org> as
Debian bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097194
------------------------------------------------------------------
2024-12-25 15:43:00 +0100 Thomas Baumgart
Fix compilation under MacOS
------------------------------------------------------------------
2024-12-17 20:15:01 +0100 Martin Preuss
Released 5.12.0
------------------------------------------------------------------
2024-12-17 19:57:07 +0100 Martin Preuss
Prepared release 5.12.0
------------------------------------------------------------------
2024-12-17 19:51:11 +0100 Martin Preuss
msgio: add argument REASON to GWEN_MsgRequest_Abort()
------------------------------------------------------------------
2024-10-01 21:36:51 +0200 Martin Preuss
msgio: add class GWEN_REQUEST.
------------------------------------------------------------------
2024-10-01 21:36:05 +0200 Martin Preuss
msgio/endpoint: added reference counter.
------------------------------------------------------------------
2024-10-01 21:35:25 +0200 Martin Preuss
timestamp: added GWEN_Timestamp_AddSeconds().
------------------------------------------------------------------
2024-09-24 16:41:33 +0200 Martin Preuss
msgio: improved error handling.
------------------------------------------------------------------
2024-09-24 16:41:07 +0200 Martin Preuss
test: adjusted to latest changes.
------------------------------------------------------------------
2024-09-24 16:40:28 +0200 Martin Preuss
parser: fixed a typo.
------------------------------------------------------------------
2024-09-24 16:40:11 +0200 Martin Preuss
msgio: added fields ID and REFID to ipc messages. Use new convenience fns of GWEN_MSG.
------------------------------------------------------------------
2024-09-24 16:38:52 +0200 Martin Preuss
msgio: added missing change.
------------------------------------------------------------------
2024-09-24 16:38:32 +0200 Martin Preuss
msgio: improved GWEN_MSG, added convenience functions.
------------------------------------------------------------------
2024-09-24 16:37:54 +0200 Martin Preuss
msgio: introduce GWEN_MsgEndpoint_GetNextMessageId()
------------------------------------------------------------------
2024-08-03 11:57:04 +0200 Micha Lenk
Use pkgconf for gpg-error build flags
On some build systems the old automake macro AM_PATH_GPG_ERROR doesn't work
because the binary gpg-error-config no longer exists. As a gpg-error.pc file is
available, let's switch to this more contemporary approach to determine the
gpg-error build flags.
------------------------------------------------------------------
2024-07-05 23:52:17 +0200 Martin Preuss
Fixed call to readlink().
readlink() doesn't append a NULL!!
------------------------------------------------------------------
2024-06-14 21:46:54 +0200 Martin Preuss
gsa: fixed handling of symbolic links.
------------------------------------------------------------------
2024-06-14 21:08:38 +0200 Martin Preuss
incremented version.
------------------------------------------------------------------
2024-06-14 21:08:27 +0200 Martin Preuss
gwenbuild: use lstat if possible (otherwise symbolic links will be resolved).
------------------------------------------------------------------
2024-06-14 21:07:44 +0200 Martin Preuss
gwenbuild: also install symbolic links for libs.
------------------------------------------------------------------
2024-04-21 18:18:46 +0200 Martin Preuss
Incremented version.
------------------------------------------------------------------
2024-04-21 18:18:34 +0200 Martin Preuss
README: remove var from documentation (no longer used).
------------------------------------------------------------------
2024-04-21 16:10:40 +0200 Martin Preuss
Added GWENHYWFAR_CB to function implementations also (seems to be required from MinGW64, see #306)
------------------------------------------------------------------
2024-04-21 16:06:29 +0200 Martin Preuss
Use GWEN_Text_strndup() instead of strndup (the latter is not available with MinGW64).
------------------------------------------------------------------
2024-04-21 16:02:18 +0200 Martin Preuss
Added license info for portable_endian.h (public domain).
------------------------------------------------------------------
2024-04-21 15:57:35 +0200 Martin Preuss
Fixed a bug in GWEN_Date (day numbering starts at 1, not zero).
------------------------------------------------------------------
2024-04-21 15:56:42 +0200 Martin Preuss
Use new "portable_endian.h" instead of endian.h
------------------------------------------------------------------
2024-04-21 15:56:16 +0200 Martin Preuss
Added "portable_endian.h" from https://gist.github.com/panzi/6856583
------------------------------------------------------------------
2024-04-12 12:36:09 +0200 Martin Preuss
gwenbuild: improved error message handling.
Frame error messages from gcc or other called tools with
"entering directory ..." and "leaving directory ..." to improve error
handling when calling gwbuild from an IDE (or in my case FTE).
Those lines help the IDE to locate files (e.g. when there are errors in
included files).
------------------------------------------------------------------
2024-03-19 22:47:52 +0100 Martin Preuss
incremented version.
------------------------------------------------------------------
2024-03-19 22:39:30 +0100 Martin Preuss
make list types typesafe.
"typedef GWEN_LIST1 t##_LIST" will not allow to detect when a wrong list
type is used as long as any list type is used. That will most likely lead
to undefined behaviour.
Maybe we will need to increment the major build version because of this.
------------------------------------------------------------------
2024-03-19 22:13:37 +0100 Martin Preuss
gwen_buffer: corrected use of va_start and va_end.
------------------------------------------------------------------
2024-03-19 00:03:17 +0100 Martin Preuss
Released 5.11.0beta.
------------------------------------------------------------------
2024-02-24 18:40:20 +0100 Martin Preuss
Decreased verbosity.
------------------------------------------------------------------
2024-02-24 18:39:43 +0100 Martin Preuss
Fixed problem with arrays and objects when searching for keys.
------------------------------------------------------------------
2024-02-23 21:00:51 +0100 Martin Preuss
Fixed a memory leak.
------------------------------------------------------------------
2023-11-08 23:28:46 +0100 Martin Preuss
Cleanup GWEN_Gui_Internal_GetPassword()
Make this function easier to understand.
------------------------------------------------------------------
2023-11-08 22:29:19 +0100 Martin Preuss
Fixed a memory leak.
------------------------------------------------------------------
2023-10-07 17:16:49 +0200 Martin Preuss
Hopefully fixed delay between two messages in the output queue.
------------------------------------------------------------------
2023-10-06 14:47:17 +0200 Martin Preuss
added missing files to Makefiles.
------------------------------------------------------------------
2023-10-01 15:25:35 +0200 Martin Preuss
msgio: add INHERIT functionality to GWEN_MSG.
------------------------------------------------------------------
2023-10-01 14:08:06 +0200 Martin Preuss
gwentest: added missing NEWLINE.
------------------------------------------------------------------
2023-10-01 14:07:51 +0200 Martin Preuss
tag16: added functions with test
- GWEN_Tag16_StartTagInBuffer()
- GWEN_Tag16_EndTagInBuffer()
------------------------------------------------------------------
2023-09-20 17:23:21 +0200 Martin Preuss
endpoint_multilayer: added "stage" field.
this field can be used by complex derived classes to store the current stage.
------------------------------------------------------------------
2023-09-17 19:13:47 +0200 Martin Preuss
msgio: added multilayer endpoint
Use this endpoint to allow for autoconnect while using a handshake protocol
------------------------------------------------------------------
2023-09-17 19:11:20 +0200 Martin Preuss
msg: allow for dynamic memory allocation.
------------------------------------------------------------------
2023-09-17 19:10:50 +0200 Martin Preuss
Fixed a bug.
------------------------------------------------------------------
2023-09-13 10:31:12 +0200 Martin Preuss
tag16: added function GWEN_Tag16_WriteTagToBuffer().
will replace GWEN_Tag16_DirectlyToBuffer().
------------------------------------------------------------------
2023-09-12 21:31:40 +0200 Martin Preuss
Revert "Add INHERIT logic to GWEN_MSG."
This reverts commit 240977be4e76ed784450eddad08aa0a1c6764e52.
------------------------------------------------------------------
2023-09-12 21:31:26 +0200 Martin Preuss
Add INHERIT logic to GWEN_MSG.
------------------------------------------------------------------
2023-09-10 16:58:20 +0200 Martin Preuss
Added apidoc, allow to use header from c++.
------------------------------------------------------------------
2023-09-10 16:51:37 +0200 Martin Preuss
tag16: code cleanup, added functions, added unit tests.
------------------------------------------------------------------
2023-09-10 14:23:31 +0200 Martin Preuss
Fixed function params, added GWEN_Msg_GetUint64At().
------------------------------------------------------------------
2023-09-09 10:28:15 +0200 Micha Lenk
Fix cross compilation
libgwenhywfar failed to cross build from source, because it fails running
mklistdoc with an "Exec format error". This happens when attempting to
run a tool that is built for the host architecture. mklistdoc really
needs to be built for the host architecture, because it is installed
into gwenhywfar-tools. On the flip side that means that we can just run
the mklistdoc from a system gwenhywfar-tools. Note that this change only
affects cross compilation. In native builds, the built mklistdoc will
continue to be used.
These changes were initially reported by Helmut Grohne <helmut@subdivi.de> via
the Debian bug tracker (see https://bugs.debian.org/1051173).
------------------------------------------------------------------
2023-08-11 17:30:49 +0200 Martin Preuss
fixed a typo.
------------------------------------------------------------------
2023-08-11 17:29:49 +0200 Martin Preuss
Modified toObject/fromObject functions for "double" type.
Those templates are only used in projects using AqDatabase. Those
projects will need the latest git version of AqDatabase.
------------------------------------------------------------------
2023-08-10 12:26:36 +0200 Martin Preuss
gwbuild: added some "static"s.
------------------------------------------------------------------
2023-08-10 12:26:18 +0200 Martin Preuss
gwbuild: no longer try to install symlinks for sharedlibs.
Those symlinks are needed when running freshly built binaries from within
the build folder without installing them. But after installation the command
"ldconfig" is responsible for creating appropriate symlinks.
------------------------------------------------------------------
2023-08-10 12:05:44 +0200 Martin Preuss
gwbuild: added comment for <alias> element inside <option>.
|