Commit Graph

256 Commits

Author SHA1 Message Date
OBattler
36bccdf7a9 Changed the version number to 4.2.2. 2024-09-28 18:32:43 +02:00
Jasmine Iwanek
f4b63caf0b One line per file in CmakeLists.txt 2024-09-04 18:34:06 -04:00
OBattler
52a78f3ffb Bumped the version to 4.3. 2024-09-02 00:17:05 +02:00
Jasmine Iwanek
924db10d13 Update dates for 4.2.1 release 2024-08-31 16:17:05 -04:00
Jasmine Iwanek
0ce0f477b5 Compile fix for dummy_cdrom_ioctl.c logging 2024-08-07 02:23:51 -04:00
OBattler
aca6355eb2 Rewrote a line in unix.c, fixes #4658. 2024-07-27 16:58:36 +02:00
OBattler
ad04a7735e Bump version to 4.2.1. 2024-07-26 21:09:47 +02:00
OBattler
70c6e39c02 Ran bumpversion.sh to update the dates. 2024-07-26 00:46:38 +02:00
rilysh
189be035d2 Mark plat_vidapi() argument as const and remove the NULL
* plat_vidapi() accepts char pointer, which never gets modifed
later on. Mark it as const.

* In src/config.c, va_name is initialized as NULL, however,
plat_vidapi_name() never returns a NULL pointer, nor it was
initialized under a condition branch. Removing NULL, might
save one instruction, which requires zeroing the register
before setting its initial value.
2024-07-21 12:49:06 +05:30
Jasmine Iwanek
322adf1c2b Initial underlying code support for more than 2 video cards 2024-07-19 23:27:21 -04:00
Cacodemon345
a44936f3e1 Add Generic PCL Printer 2024-06-21 15:36:28 +06:00
Jasmine Iwanek
19f4d4f914 Fix 10 more warnings in the code 2024-06-10 20:10:50 -04:00
OBattler
d07f018e6b Removed the io.c #include from the dummy IOCTL handler and added the handler to the Unix SDL UI as well. 2024-05-20 04:04:13 +02:00
OBattler
7c74a977fa There goes the legacy host_drive. 2024-05-20 02:15:17 +02:00
cold-brewed
aaf3ab575e Add new platform functions for global directories 2024-05-17 15:09:04 -04:00
Alexander Babikov
0a1e92e239 clang-format modem and serial passthrough related files 2024-04-01 21:08:55 +05:00
OBattler
f45fe7b121 Bump version to 4.2. 2024-03-23 17:19:33 +01:00
Alexander Babikov
8e06b5449f Overhaul plat_get_string()
Now takes constants with human-readable names instead of
Win32 string table IDs, language.h is no longer needed

ui_msgbox*() no longer accepts string IDs as arguments directly,
plat_get_string() must be explicitly called to retrieve the string
2024-03-20 20:33:28 +05:00
Alexander Babikov
e587cda80d Translations: Remove a few unused strings 2024-03-20 20:33:21 +05:00
Alexander Babikov
23ba920bbf Clean up the plat and ui API
Remove functions no longer defined or used on any plat/UI
Remove the old non-multi-monitor-aware plat_resize() and rename
plat_resize_monitor() to plat_resize()
2024-03-19 14:30:24 +05:00
Cacodemon345
7f68245eae unix_netsocket.c: Fix comparison value 2024-03-13 17:46:36 +06:00
Cacodemon345
b2a4d7457e netsockets: Swap port number 2024-03-13 16:38:32 +06:00
Cacodemon345
324299a6f3 unix_netsocket.c: Unused variables cleanup 2024-03-12 21:01:46 +06:00
Cacodemon345
515a69b318 Deal with accidental includes 2024-03-12 19:49:17 +06:00
Cacodemon345
3e623c88f4 More type fixes 2024-03-12 19:43:11 +06:00
Cacodemon345
097c9b4169 Fix SDL2 builds 2024-03-12 19:41:34 +06:00
Cacodemon345
59466a74f4 More TCP/IP related changes 2024-03-12 16:01:00 +06:00
Cacodemon345
d51ba85814 TCP/IP support 2024-03-12 14:27:19 +06:00
Alexander Babikov
4335c3e085 Fix ACPI poweroffs disabling exit confirmations
Use confirm_exit_cmdl to skip the confirmation prompt without
saving it in the config
2024-03-01 22:24:30 +05:00
Miran Grča
9d78fb7474 Merge pull request #4199 from mystuffs/errno
unix_serial_passthrough.c: check errno for EWOULDBLOCK
2024-02-24 16:23:56 +01:00
AsciiWolf
52ffbe582f Fix AppStream metainfo file 2024-02-24 14:08:26 +01:00
rilysh
6b435088f9 unix_serial_passthrough.c: check errno for EWOULDBLOCK
plat_serpt_write_vcon(): write() returns how much data it has written
to the file descriptor, and in case an error, it returns -1. So the
EWOULDBLOCK never really triggers, as in the following condition we're
not checking the errno, but the return value of the write() function.
2024-02-24 13:59:14 +05:30
OBattler
5c1cdb3c45 Bump version to 4.1.1. 2024-02-23 07:13:02 +01:00
Alexander Babikov
307e15019e Remove a long-unused string 2024-02-13 21:41:01 +05:00
Alexander Babikov
224daa92d0 qt: Remove fullscreen status icons 2024-02-13 21:13:25 +05:00
OBattler
441b2422d9 Unix SDL and Win32: Remove excess parenthesis from the recent CD-ROM change, fixes compile. 2024-01-15 14:00:27 +01:00
OBattler
5c15da4a17 CD-ROM: Converted the wrong kind of trailing slash, fixes #4038. 2024-01-14 21:31:46 +01:00
RichardG867
23039a35b4 More thread name clean-ups 2024-01-10 10:27:11 -03:00
RichardG867
02a1a8ec1b More non-cppthreads build fixes 2024-01-09 20:28:10 -03:00
RichardG867
30043d7b00 Fix unix and win32 build without C++ threads 2024-01-09 20:20:18 -03:00
RichardG867
67c84f1ae6 Add automatically-generated names to threads 2024-01-09 20:14:21 -03:00
OBattler
13d582b56f Unix: Use proper parentheses to cast the result, not the flags, fixes #3994. 2024-01-05 13:01:17 +01:00
OBattler
e614103f04 Unix: Temporarily disable the use of f_readline, fixes #3949. 2023-12-28 11:38:34 +01:00
OBattler
46d01e30da Actually unpause it at the correct time. 2023-12-27 21:39:51 +01:00
OBattler
62917d5ef6 Unix SDL: Unpause the main window after initialization, fixes #3940. 2023-12-27 21:39:23 +01:00
OBattler
b239f4c102 Unix SDL: Actually honor the return value of pc_init(), fixes #3948. 2023-12-27 21:35:39 +01:00
OBattler
dd005d74ea Unix SDL: Fix plat_pause(). 2023-12-27 21:30:47 +01:00
OBattler
87f5d01fda Unix: Separate XDG_DATA_DIRS paths by colon instead of semicolon, fixes #3946. 2023-12-27 21:13:55 +01:00
Jasmine Iwanek
8e74ee2726 Fix most of the warnings in the macos builds 2023-12-17 18:30:16 -05:00
Jasmine Iwanek
4c87164692 Fix remaining warnings in windows and linux builds 2023-12-17 15:08:22 -05:00