Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-03-26 | add files to the variable list | Jan200101 | |
2021-03-26 | improve parser logic and math reuse | Jan200101 | |
2021-03-26 | allow functions to return an allocated string value | Jan200101 | |
to simplify the logic all literal string values are allocated before usage | |||
2021-03-26 | ensure 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-26 | add debug method to test out variable parser for memory safety | Jan200101 | |
2021-03-26 | don't output a random number on unknown directive | Jan200101 | |
2021-03-26 | commit variable parser | Jan200101 | |
this is a simple variable parser written in standard C that tries to be as safe as possible | |||
2021-02-03 | clean up logic some more | Jan200101 | |
2021-01-12 | replace float with int math, silence conversions, improve wine call […] | Jan200101 | |
improve parser logic and math reuse | |||
2021-01-02 | quote executable/script path to not deal with whitespace problems | Jan200101 | |
2020-12-20 | add some memory allocation failure checks | Jan200101 | |
2020-12-19 | add conversion warnings, fix existing flaws | Jan200101 | |
2020-12-19 | remove useless struct, add json length type macro | Jan200101 | |
- previously used progress struct was a leftover from when libcurl examples were used - json_object_array_length returns int pre 0.13 and site_t on any other version | |||
2020-12-18 | add stderr checks, print carriage return when done downloading | Jan200101 | |
- no reason to print out a progress bar when outputting to a descriptor - control over the current line is given back so whatever downloaded something can print whatever it wants on that line | |||
2020-12-18 | move carriage return to start, remove spaces | Jan200101 | |
keeping it at the end makes the cursor always appear right on the first character which looks kind of ugly | |||
2020-12-18 | add dots to downloading prompt | Jan200101 | |
2020-12-18 | add download progress bar | Jan200101 | |
2020-12-17 | replace 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-16 | add 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-14 | allow downloading multiple wine versions at the same time | Jan200101 | |
2020-12-14 | make directory creation create all parent directories too | Jan200101 | |
2020-12-12 | improve fish-env message | Jan200101 | |
2020-12-12 | Merge branch 'fish' | Jan200101 | |
2020-12-12 | add fish env support | Jan200101 | |
2020-12-12 | change download routines to require a version name, not a random ID | Jan200101 | |
2020-12-11 | cleanup imports, add completion message for downloads | Jan200101 | |
2020-12-11 | add remove commands to dxvk and wine | Jan200101 | |
2020-12-11 | move command definitions (as well as helpers) to macros | Jan200101 | |
2020-12-07 | improve grammar in descriptions, add newline to wine check warning | Jan200101 | |
2020-12-07 | add some safety around stat failures | Jan200101 | |
2020-12-05 | update wine env output to output actual given wine version | Jan200101 | |
2020-12-05 | send warning and error msgs to stderr, output context messages if tty[…] | Jan200101 | |
- a lot of puts and printf calls have been replaced with fprintf() to ensure the error or warning message reaches the end user - messages like "Installable wine versions:" are only output if we are in a TTY, this will using polecat in shell scripts easier | |||
2020-12-05 | add wine env command […] | Jan200101 | |
- wine env outputs a POSIX compatible env string to add a wine installation to your current PATH - outputs human readable messages to stderr so they are not swallowed by the shell | |||
2020-11-23 | get the size of the correct variable0.1.9 | Jan200101 | |
sizeof(dxvkdir) returns the size of void*, not what we want | |||
2020-11-22 | bump version, quality of life changes […]0.1.8 | Jan200101 | |
- add cmake install target - remove unused code from dxvk | |||
2020-11-22 | implement DXVK functionality, renamed installed to list-installed, […]0.1.7 | Jan200101 | |
- main DXVK functionality implemented, installing (etc.) can be done now this adds a dependency on the system installed wine to modify the registry but that isn't too huge of an issue right now - <command> installed has been renamed to <command> list-installed to be more user friendly - comments have been improved | |||
2020-11-21 | Update readme (once again), add message for no installer found | Jan200101 | |
2020-11-21 | fix wine version being put into the installer name | Jan200101 | |
2020-11-21 | add proton support | Jan200101 | |
2020-11-21 | add required header to tar.h, quote default string and version number | Jan200101 | |
2020-11-21 | add basic variable related attributes to the installer struct | Jan200101 | |
2020-10-20 | improve codebase quality | Jan200101 | |
- 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-20 | properly include header directories, change how json-c is found | Jan200101 | |
2020-10-12 | modify argc and argv for help messages like all other function calls | Jan200101 | |
2020-10-12 | append system arch to wine version if wine version was not found | Jan200101 | |
2020-10-11 | replace meson with cmake | Jan200101 | |
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-05 | fix compiler warning, replace bin,obj ignore with build | Jan200101 | |
2020-10-05 | Use Meson build system | Masanori Kakura | |
2020-09-06 | fix incorrectly hiding unfinished commands | Jan200101 | |
its ifdef not ifndef | |||
2020-09-06 | improve basic installer, add unreachable, hide unfinished behind debug | Jan200101 | |