aboutsummaryrefslogtreecommitdiff
path: root/src/lutris.c
AgeCommit message (Collapse)Author
2022-12-13replace str* with strs* where possibleJan200101
2022-12-13set tail to set the correct character to nullJan200101
2022-07-22move filesystem logic into separate fileJan200101
2022-06-12make net init explicit, fix lutris URL escape invalid readJan200101
2022-04-19improve grammar, concat lutris search arguments, patch leaking memoryJan200101
2021-11-07cleanup, make main components optional at compile timeJan200101
2021-07-22fix broken debug define checks, move lutris enums to special headersJan200101
2021-07-04fix wrong comparison, remove whitespace, add Makefile and DoxyfileJan200101
2021-06-13rework command group logic to work linear, replace return with EXIT_*Jan200101
2021-06-06fix win env, add proper mocking code to test implementationJan200101
2021-05-27allow flags to exit prematurely, move defines, add no networking flagJan200101
2021-05-18improve cmake files, add simple curl mock, clean up on download errorJan200101
2021-05-16add NULL checksJan200101
2021-05-13reorder includes, add missing includesJan200101
2021-05-08add work in progress windows supportJan200101
to run lutris installers on windows soon
2021-04-26implement flags and sort commands by alphabetJan200101
stupid standard --help and --version
2021-04-24update allocsize with the largest size we might possibly needJan200101
2021-04-22add list & search command, fix bug in installer parser, […]Jan200101
- add list and search command to find what is on lutris without using lutris or the website - correct info command from not erroring when no slug was found - allow upper and lower Y on installer - remove pointless getInstaller function - fix bug in installer where if a value is not given its NULL and we cannot stringify NULL - replace manual malloc, strcpy with strdup - remove lutris_debug definition
2021-03-26a chunk of changesJan200101
- replace bool with ints, - give enums a t suffix - fix edge case in variable parser where the end of the buffer is not null - make parseVar take an allocated variable list instead of a static one - set the first argument of all tasks to be the prefix - correctly parse chmodx directives - add GAMEDIR variable to the variable list - output known variables on installer info - implement basic task handling - check if file exists before redownloading - remove debug function - make noprogress argument into progress and convert it to int
2021-03-26add files to the variable listJan200101
2021-03-26improve parser logic and math reuseJan200101
2021-03-26allow functions to return an allocated string valueJan200101
to simplify the logic all literal string values are allocated before usage
2021-03-26ensure variable key is fully compared, return head to offset […]Jan200101
- comparing only the first X characters can result inaccurate results - we cannot return head to the start of the string because that would mean it can reparse variables that call a function
2021-03-26add debug method to test out variable parser for memory safetyJan200101
2021-03-26don't output a random number on unknown directiveJan200101
2021-03-26commit variable parserJan200101
this is a simple variable parser written in standard C that tries to be as safe as possible
2020-12-19add conversion warnings, fix existing flawsJan200101
2020-12-18add download progress barJan200101
2020-12-17replace gnu style quoting with normal quoting, comment command macros, …Jan200101
- gnu style quoting (`text') has been replaced with normal quoting ('text') - the command macros defined in command.h have been commented to explain how they are intended to be used and why they are how they - the macro that generates the command group function now prints a message if the given command has not been found (this probably needs to be extended to the other commands to be consistent)
2020-12-16add more warning flags, correct syntax, add UNUSED macro, […]Jan200101
- added -Wall -Wextra -pedantic to the compile options - various syntax has been corrected: - static is used before const - correct integer types are used in for loops - empty newlines are added - every command has an argc and argv but some don't use them so they are marked as potentially unused if compiled on a GNUC compatible compiler - mark JSONC variables as advanced so they do not show up as generic variables
2020-12-11cleanup imports, add completion message for downloadsJan200101
2020-12-11move command definitions (as well as helpers) to macrosJan200101
2020-11-21Update readme (once again), add message for no installer foundJan200101
2020-11-21fix wine version being put into the installer nameJan200101
2020-11-21add basic variable related attributes to the installer structJan200101
2020-10-20improve codebase qualityJan200101
- improve unreachable macro to print a message with a minor traceback then exit(0) instead of assert hackery - add specific wine and dxvk directory methods - rename dxvk install to download - remove sanity asserts from lutris, caught by unreachable - improve comments - rename info to env - only use a single buffer for information fetching - fix formatting on code I had help on - purge unused code - if downloadToRam returns null pointer report that the archive went missing not that its invalid - rename undescriptive "datadir" to be more specific - remove unused code from when we stored the archive on disk
2020-10-12modify argc and argv for help messages like all other function callsJan200101
2020-10-11replace meson with cmakeJan200101
meson is nice but its completly foreign to me and leaves targets to compile to (e.g Makefile) might revisit in the future but now right now
2020-10-05Use Meson build systemMasanori Kakura
2020-09-06fix incorrectly hiding unfinished commandsJan200101
its ifdef not ifndef
2020-09-06improve basic installer, add unreachable, hide unfinished behind debugJan200101
2020-09-05add support for detecting unknown runners, add basic installer logicJan200101
2020-08-18first part of a proper lutris implementation and cleanup0.1.4Jan200101
- remove all old build platform related variables - change behavior of clean - change tabs into spaces - make XDG fetching method static - replace strcpy and cat with strn alternative with proper bounds checking - add cache dir - reenable dxvk and download from ram - completely rework lutris fetching and convert it into an interal struct - only show http errors in debug - add sanity checks to methods with possible NULL return - change extracting methods to extract tar from ram
2020-08-10a lot of changes […]0.1.3Jan200101
- go to next entry of argv and decrement argc the deeper it goes - add basic lutris functionality - remove "help" from help message and as a command - replace all stderr prints with stdout prints (usually stderr is better for directly informing the user but in this case I don't think it will help much) - add libarchive dependency to the README - bump version number