WildCard65

Results 30 issues of WildCard65

You all may recall that SteamKit has an EResult enum that is designed for use to check to result of steam's response stuff. Maybe SteamBot should use it to check...

Ok, discussing with @BlueRaja over steam, he agreed that it would be nice to have unit tests for steamtrade. Only downside is that in order for AppVeyor to run tests,...

Due to #702 I feel like SteamBot needs a wrapper class for SteamKit2's friend stuff. Anyone else agree?

Enhancement

I was running a test to see if anything gets called when a program exits using the method that steambot uses and by using the X button instead of Ctrl+...

Enhancement

Note: This requires using "actions/setup-python' in order to find 'yapf' script. I also added a debugging echo to test variable arguments input.

enhancement

http://en.cppreference.com/w/User:D41D8CD98F/feature_testing_macros list macros for C++ features per version (C++11, C++14, C++17), these could be useful for am-cxx along with compiler version testing (like testing for compiler versions where issues prevent...

**Describe the bug** When executing certain commands, mainly configuration commands like `accessrole`, the bot will check to see if it has Manage Channel and Manage Permissions enabled in the channel...

bug

The way zlib-ng handles FORCE_SSE2 option in its CMakeLists.txt is incorrect, as cmake_dependent_option() will always force it OFF on the very first run of configuration, this is because the required...

Build Env

This small pull request fixes the issue #1113 by doing 2 things: 1) Actually pass the library name being searched for to find_library 2) Use unique variables when invoking find_library...

The current implementation of the custom helper function 'find_link_library' is ```cmake function(find_link_library libname outlibname) check_linker_flag(C "-l${libname}" mi_has_lib${libname}) if (mi_has_lib${libname}) message(VERBOSE "link library: -l${libname}") set(${outlibname} ${libname} PARENT_SCOPE) else() find_library(MI_LIBPATH libname) if...