message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Fix wrong button check in booter (STM32F4 disco) | @@ -58,7 +58,7 @@ int main(void) {
// if the USER button (blue one) is pressed, skip the check for a valid CLR image and remain in booter
// the user button in this board has a pull-up resistor so the check has to be inverted
- if (palReadPad(GPIOA, GPIOA_BUTTON))
+ if (!palReadPad(GPIOA, GPIOA_BUTTON))
{
// check for ... |
hfuzz/memorycmp: update cmp even if strings match | @@ -31,13 +31,10 @@ static inline int HF_strcmp(const char* s1, const char* s2, uintptr_t addr) {
}
}
- int ret = (int)s1[i] - (int)s2[i];
- if (ret) {
instrumentUpdateCmpMap(HF_cmphash(addr, s1, s2), i);
instrumentAddConstStr(s1);
instrumentAddConstStr(s2);
- }
- return ret;
+ return (unsigned char)s1[i] - (unsigned c... |
mac: always pass a non-NULL output size pointer to providers.
The backend code varies for the different MACs and sometimes sets the output
length, sometimes checks the return pointer and sometimes neither. | @@ -120,15 +120,14 @@ int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen)
int EVP_MAC_final(EVP_MAC_CTX *ctx,
unsigned char *out, size_t *outl, size_t outsize)
{
- int l = EVP_MAC_size(ctx);
+ size_t l = EVP_MAC_size(ctx);
+ int res = 1;
- if (l < 0)
- return 0;
+ if (out != NULL)
+ res = ct... |
nlinv: add option to provide initialization | @@ -42,6 +42,7 @@ int main_nlinv(int argc, char* argv[])
bool normalize = true;
float restrict_fov = -1.;
const char* psf = NULL;
+ const char* init_file = NULL;
struct noir_conf_s conf = noir_defaults;
bool out_sens = false;
bool scale_im = false;
@@ -55,6 +56,7 @@ int main_nlinv(int argc, char* argv[])
OPT_CLEAR('N',... |
Update build readme to reflect correct library deps | @@ -36,11 +36,13 @@ The following packages (libraries + headers) should be installed on your system:
* build-essentials (gcc/g++ or clang/clang++)
* git
* java (for packaging bundles)
- * cmake (3.2 or higher)
+ * make (3.2 or higher)
* Apache Celix Dependencies
- * curl
- * jansson
- * libffi
+ * zlib
+ * uuid
+ * cur... |
core/device: Add test for duplicate nodes with dt_attach_root() | @@ -103,7 +103,7 @@ const char **props_to_fix(struct dt_node *node)
int main(void)
{
- struct dt_node *root, *c1, *c2, *gc1, *gc2, *gc3, *ggc1, *ggc2;
+ struct dt_node *root, *other_root, *c1, *c2, *gc1, *gc2, *gc3, *ggc1, *ggc2;
struct dt_node *addrs, *addr1, *addr2;
struct dt_node *i, *subtree, *ev1, *ut1, *ut2;
cons... |
Fix cmake config path on Linux.
CMake config files were installed to `/usr/local/share/hiredis`, which is not recognizable by `find_package()`.
I'm not sure why it was set that way.
Given the commit introducing it is for Windows, I keep that behavior consistent there, but fix the rest. | @@ -135,7 +135,11 @@ export(EXPORT hiredis-targets
FILE "${CMAKE_CURRENT_BINARY_DIR}/hiredis-targets.cmake"
NAMESPACE hiredis::)
+if(WIN32)
SET(CMAKE_CONF_INSTALL_DIR share/hiredis)
+else()
+ SET(CMAKE_CONF_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/cmake/hiredis)
+endif()
SET(INCLUDE_INSTALL_DIR include)
include(CMakePackage... |
Remove unused quant field from btq_counts | @@ -334,9 +334,6 @@ static const uint8_t integer_of_trits[3][3][3][3][3] {
*/
struct btq_count
{
- /** @brief The quantization level. */
- uint8_t quant;
-
/** @brief The number of bits. */
uint8_t bits;
@@ -351,27 +348,27 @@ struct btq_count
* @brief The table of bits, trits, and quints needed for a quant encode.
*/
s... |
SDK30 does not allow access to external storage
SDK30 does not allow access to external storage, I think reasonable to use officially provided folder for app document | @@ -815,7 +815,10 @@ implements SensorEventListener
break;
case 3: // Docs
- path = Environment.getExternalStorageDirectory();
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
+ path = mContext.getExternalFilesDir(Environment.DIRECTORY_DOCUMENTS);
+ else
+ path = Environment.getExternalStorageDirectory();//ac... |
include: Add nitems() definition to sys/param.h | # define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif /* MAX */
+/* Macros for number of items.
+ * (aka. ARRAY_SIZE, ArraySize, Size of an Array)
+ */
+
+#ifndef nitems
+# define nitems(_a) (sizeof(_a) / sizeof(0[(_a)]))
+#endif /* nitems */
+
/****************************************************************************
... |
Add convenience hs function `preloadTextModule` | @@ -50,6 +50,9 @@ pushModuleText = do
addFunction "sub" sub
return 1
+preloadTextModule :: String -> Lua ()
+preloadTextModule = flip addPackagePreloader pushModuleText
+
addPackagePreloader :: String -> Lua NumResults -> Lua ()
addPackagePreloader name modulePusher = do
Lua.getglobal' "package.preload"
|
tests: internal: fuzzers: add missing header | #include <stdlib.h>
#include <fluent-bit/flb_parser.h>
#include <fluent-bit/flb_slist.h>
+#include <fluent-bit/flb_kv.h>
#include "flb_fuzz_header.h"
/* A sample of configurations */
|
Use stage.dpiScale for UiScale on ios | @@ -15,12 +15,15 @@ class Scale
scale = getDensity();
return scale;
}
- #end
+ #elseif ios
+ return nme.Lib.current.stage.dpiScale;
+ #else
scale = nme.system.Capabilities.screenDPI;
if (scale>120)
scale /= 120;
else
scale = 1.0;
+ #end
}
return scale;
}
|
sys/console: Rename helpers to add/pull char to ring | @@ -51,14 +51,14 @@ inc_and_wrap(int i, int max)
}
static void
-console_add_char(struct console_ring *cr, char ch)
+console_ring_add_char(struct console_ring *cr, char ch)
{
cr->buf[cr->head] = ch;
cr->head = inc_and_wrap(cr->head, cr->size);
}
static uint8_t
-console_pull_char(struct console_ring *cr)
+console_ring_pu... |
Fix NN col buffer size. | @@ -211,7 +211,7 @@ int nn_load_network(nn_t *net, const char *path)
prev_layer = layer->prev;
if (layer->type == LAYER_TYPE_IP) {
- uint32_t fc_buffer_size = 2 * layer->c;
+ uint32_t fc_buffer_size = 2 * prev_layer->c * prev_layer->w * prev_layer->h;
net->max_colbuf_size = IM_MAX(net->max_colbuf_size, fc_buffer_size);... |
remove unused MODULETYPE config | #ifndef MAX_MSG_NB
#define MAX_MSG_NB 2 * MAX_VM_NUMBER
#endif
-
-#ifndef MODULETYPE
-#define MODULETYPE DEV_BOARD
-#endif
/*******************************************************************************
* Variables
******************************************************************************/
|
http_client: validate errno before printing the message | @@ -1135,7 +1135,10 @@ int flb_http_do(struct flb_http_client *c, size_t *bytes)
c->header_buf, c->header_len,
&bytes_header);
if (ret == -1) {
+ /* errno might be changed from the original call */
+ if (errno != 0) {
flb_errno();
+ }
return -1;
}
|
Fix alpha indexed images with 1 bit color depth | @@ -575,7 +575,7 @@ static lv_res_t lv_img_draw_core(const lv_area_t * coords, const lv_area_t * mas
else {
lv_coord_t width = lv_area_get_width(&mask_com);
- uint8_t * buf = lv_draw_get_buf(lv_area_get_width(&mask_com) * ((LV_COLOR_DEPTH >> 3) + 1)); /*+1 because of the possible alpha byte*/
+ uint8_t * buf = lv_draw_... |
wordsmiting from the guru
Have I mentioned how much I appreciate our docs guys? | @@ -48,7 +48,7 @@ AppScope does not support the following runtimes:
### Linux
-We build on Ubuntu 18.04 currently and do not support other build environments at this time. The goal is to produce a "build-once, run-anywhere" executable. Consider building with [Docker](#docker) if you are running somthing other than Ubun... |
Router: joint must be added to engine's joint list in the
engine thread. | @@ -1067,8 +1067,6 @@ nxt_router_engine_joints_create(nxt_router_temp_conf_t *tmcf,
joint->socket_conf = skcf;
joint->engine = recf->engine;
-
- nxt_queue_insert_tail(&joint->engine->joints, &joint->link);
}
return NXT_OK;
@@ -1304,6 +1302,8 @@ nxt_router_listen_socket_create(nxt_task_t *task, void *obj, void *data)
ls... |
remove unsupported configuration
latency and debug are not supported so that configurations are needed. | @@ -1058,8 +1058,3 @@ config PTHREAD_STACK_DEFAULT
Default pthread stack size
endmenu # Stack size information
-comment "Kernel Latency utility"
-source kernel/latency/Kconfig
-
-comment "Kernel Debug and Simulation"
-source kernel/debug/Kconfig
|
Fix select tool after adding actor | @@ -98,7 +98,7 @@ class SceneCursor extends Component {
if (tool === "actors") {
addActor({sceneId, x, y, defaults: actorDefaults});
- setTool("select");
+ setTool({ tool: "select" });
} else if (tool === "triggers") {
addTrigger({sceneId, x, y, width: 1, height: 1, defaults: triggerDefaults});
this.startX = x;
|
VERSION bump to version 1.4.86 | @@ -45,7 +45,7 @@ endif()
# micro version is changed with a set of small changes or bugfixes anywhere in the project.
set(SYSREPO_MAJOR_VERSION 1)
set(SYSREPO_MINOR_VERSION 4)
-set(SYSREPO_MICRO_VERSION 85)
+set(SYSREPO_MICRO_VERSION 86)
set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_MI... |
Useless call to ngtcp2_conn_set_loss_detection_timer() upon PTO expirations. | @@ -9821,8 +9821,6 @@ int ngtcp2_conn_on_loss_detection_timer(ngtcp2_conn *conn, ngtcp2_tstamp ts) {
ngtcp2_log_info(&conn->log, NGTCP2_LOG_EVENT_RCV, "pto_count=%zu",
cstat->pto_count);
- ngtcp2_conn_set_loss_detection_timer(conn, ts);
-
return 0;
}
|
DEV fix handle unsupported binding table status
Xiaomi sensors send a response which has only 2 bytes of payload. | @@ -938,15 +938,13 @@ void DEV_BindingTableReadHandler(Device *device, const Event &event)
else if (event.what() == REventZdpMgmtBindResponse)
{
uint8_t buf[128];
- if (event.hasData() && event.dataSize() >= 5 && event.dataSize() < sizeof(buf))
+ if (event.hasData() && event.dataSize() >= 2 && event.dataSize() < sizeof... |
Markdown parser now parses sail expressions. | :: ::
++ fine :: item to flow
^- flow
- ?: ?=($head p.cur)
+ ?: ?=(?($head $expr) p.cur) ::XX deal with ;= expr?
?> ?=({* $~} q.cur)
?@ -.i.q.cur !! ::REVIEW over-strict?
i.q.cur
=- [[- ~] (flop q.cur)]
- ?+ p.cur !!
+ ?- p.cur
$down %div
$list %ul
$lord %ol
$lime %li
$bloc %bq
$code %pre
+ $poem !! ::XX what does this... |
remove subversion, make and gcc from /etc/apk/world | @@ -82,7 +82,7 @@ echo $alpine_url/community >> $root_dir/etc/apk/repositories
chroot $root_dir /bin/sh <<- EOF_CHROOT
apk update
-apk add openssh iw wpa_supplicant dhcpcd dnsmasq hostapd-rtl871xdrv iptables avahi dcron chrony gpsd-timepps subversion make gcc musl-dev fftw-dev libconfig-dev alsa-lib-dev alsa-utils curl... |
Don't call unknown Linux systems "GNU+Linux"
Should fix | @@ -99,8 +99,8 @@ static const char *os[][2] = {
{"OpenBSD", "BSD"},
{"DragonFly", "BSD"},
- {"Linux", "GNU+Linux"},
- {"linux", "GNU+Linux"},
+ {"Linux", "Linux"},
+ {"linux", "Linux"},
{"PlayStation", "BSD"},
|
examples/apache-httpd: use \x0A and \x0D insetad of \n and \r | # Wordlist for Apache (HTTP/1 and HTTP/2)
# Format of the dictionary: http://llvm.org/docs/LibFuzzer.html#dictionaries
-"PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n"
+"PRI * HTTP/2.0\x0D\x0A\x0D\x0ASM\x0D\x0A\x0D\x0A"
"GET"
"PUT"
"POST"
"HTTP/1.0"
"AAAAAAAAAAAAAAAAA=BBBBBBBBBBBBBBBBBB&CCCCCCCCCCCCCCCCCC=DDDDDDDDDDDDDDDD"
","
-"\n... |
hw/ipc_nrf5340: Add note to some APIs
APIs that access IPC channel in general can be used outside callback
assuming caller takes care that other context on the same MCU does not
try to write to that IPC channel. | @@ -87,8 +87,11 @@ int ipc_nrf5340_send(int channel, const void *data, uint16_t len);
int ipc_nrf5340_write(int channel, const void *data, uint16_t len, bool last);
/**
- * Reads data from IPC ring buffer to specified flat buffer. Should be used only
- * from ipc_nrf5340_recv_cb context.
+ * Reads data from IPC ring bu... |
py/nlr.h: Factor out constants to specific macros. | #include "py/mpconfig.h"
+#define MICROPY_NLR_NUM_REGS_X86 (6)
+#define MICROPY_NLR_NUM_REGS_X64 (8)
+#define MICROPY_NLR_NUM_REGS_X64_WIN (10)
+#define MICROPY_NLR_NUM_REGS_ARM_THUMB (10)
+#define MICROPY_NLR_NUM_REGS_ARM_THUMB_FP (10 + 6)
+#define MICROPY_NLR_NUM_REGS_XTENSA (10)
+
// If MICROPY_NLR_SETJMP is not ena... |
[hardware] Remove FPU signals from wave files | @@ -109,8 +109,6 @@ add wave -noupdate -group core[$1][$2][$3] -group Internal /mempool_tb/dut/gen_g
add wave -noupdate -group core[$1][$2][$3] -group Internal /mempool_tb/dut/gen_groups[$1]/i_group/gen_tiles[$2]/i_tile/i_tile/gen_cores[$3]/riscv_core/i_snitch/is_branch
add wave -noupdate -group core[$1][$2][$3] -group... |
Added back missing scope assignment. | @@ -166,6 +166,7 @@ celix_properties_t* pubsubEndpoint_createFromPublisherTrackerInfo(bundle_context
struct retrieve_topic_properties_data data;
data.props = NULL;
data.isPublisher = true;
+ data.scope = scope;
data.topic = topic;
celix_bundleContext_useBundle(ctx, bundleId, &data, retrieveTopicProperties);
|
test: MSVC doesn't like empty macro parameters in C++ mode | @@ -13,12 +13,13 @@ HEDLEY_BEGIN_C_DECLS
MunitSuite* SIMDE_TESTS_GENERATE_SYMBOL_FULL(op, SIMDE_TESTS_CURRENT_ARCH, neon, emul, c) (void); \
MunitSuite* SIMDE_TESTS_GENERATE_SYMBOL_FULL(op, SIMDE_TESTS_CURRENT_ARCH, neon, emul, cpp)(void)
-#define SIMDE_TESTS_NEON_GENERATE_INTRIN(vtype, variant) HEDLEY_CONCAT(v, SIMDE_... |
Tweak hash computation | @@ -95,9 +95,9 @@ static uint32_t hash(key_type key, uint32_t mod) {
p = (uint8_t *)&key;
end = p + sizeof(key_type);
- for (; p != end; ++p) {
- h ^= *p;
- h *= 0x01000193u;
+ for (; p != end;) {
+ h ^= *p++;
+ h += (h << 1) + (h << 4) + (h << 7) + (h << 8) + (h << 24);
}
return h & (mod - 1);
|
Missed the stat function when removing. | @@ -2237,24 +2237,6 @@ fgetpos(FILE *stream, fpos_t *pos)
return rc;
}
-EXPORTON int
-stat(const char *pathname, struct stat *statbuf)
-{
- int rc;
-
- WRAP_CHECK(stat, -1);
- doThread();
- rc = g_fn.stat(pathname, statbuf);
-
- if (rc != -1) {
- scopeLog("stat", -1, CFG_LOG_DEBUG);
- if (pathname) {
- //doFSMetric(FS_... |
Material ordering corrected in unv database plugin | @@ -4840,7 +4840,10 @@ avtunvFileFormat::GetAuxiliaryData(const char *var, const char *type, void *,Des
if (debuglevel >= 3) fprintf(stdout,"Material #cells=%d\n",dims[0]);
#endif
for (itre = meshUnvElements.begin(); itre != meshUnvElements.end(); itre++)
- matlist[itre->number] = itre->matid;
+ {
+ matlist[k] = itre->... |
test/recipes/66-test_ossl_store.t: ensure native paths | use strict;
use warnings;
+use File::Spec::Functions;
use OpenSSL::Test::Simple;
use OpenSSL::Test qw/:DEFAULT srctop_dir data_dir/;
@@ -17,5 +18,5 @@ setup("test_ossl_store");
plan tests => 1;
ok(run(test(["ossl_store_test", "-dir", srctop_dir("test"),
- "-in", "testrsa.pem", "-sm2", "certs/sm2-root.crt",
+ "-in", "te... |
hdat: Fix interrupt & device_type of UART node
The interrupt should use a standard "interrupts" property. The UART
node also need a device_type="serial" property for historical reasons
otherwise Linux won't pick it up. | @@ -264,8 +264,10 @@ static void add_uart(const struct spss_iopath *iopath, struct dt_node *lpc)
be32_to_cpu(iopath->lpc.uart_baud));
dt_add_property_cells(serial, "clock-frequency",
be32_to_cpu(iopath->lpc.uart_clk));
- dt_add_property_cells(serial, "serirq-interrupt",
+ dt_add_property_cells(serial, "interrupts",
be3... |
Test entities with similar names to predefined entity are rejected | @@ -4145,6 +4145,27 @@ START_TEST(test_invalid_tag_in_dtd)
}
END_TEST
+/* Test entities not quite the predefined ones are not mis-recognised */
+START_TEST(test_not_predefined_entities)
+{
+ const char *text[] = {
+ "<doc>&pt;</doc>",
+ "<doc>&amo;</doc>",
+ "<doc>&quid;</doc>",
+ "<doc>&apod;</doc>",
+ NULL
+ };
+ int... |
Add assertType documentation entry | @@ -415,6 +415,15 @@ This helper method ensures that the value passed in is equal to nil.
This helper method ensures that the value passed in is not equal to nil.
+### assertType(value, value)
+
+This helper method checks the type of the first value is equal to the type as a string.
+
+```cs
+this.assertType("Dictu", "... |
fix foldernames in CODEOWNERS
Folder names need to end with a slash | /hypervisor/ @anthonyzxu @dongyaozu
/devicemodel/ @anthonyzxu @ywan170
/doc/ @dbkinder @deb-intel @NanlinXie
-/misc/tools/acrn-crashlog @chengangc @dizhang417
-/misc/tools/acrnlog @lyan3
-/misc/tools/acrntrace @lyan3
-/misc/acrn-manager @lyan3
-/misc/acrnbridge @lyan3
-/misc/acrn-config @binbinwu1
+/misc/tools/acrn-cra... |
config/conf_mmap; clarify comments. | @@ -63,13 +63,13 @@ extern "C" {
*/
struct conf_mmap_kv {
const char *cmk_key; /* key (string) */
- uint16_t cmk_off; /* offset from conf_mmap.cm_base */
+ uint16_t cmk_off; /* offset of value from conf_mmap.cm_base */
uint16_t cmk_maxlen; /* maximum length of value */
};
struct conf_mmap {
struct conf_store cm_store;
... |
BugID:17738427:[sdk-ref]save Hal device info in IOT_SetupConnInfo | @@ -57,6 +57,10 @@ int IOT_SetupConnInfo(const char *product_key,
STRING_PTR_SANITY_CHECK(product_key, -1);
STRING_PTR_SANITY_CHECK(device_name, -1);
+ HAL_SetProductKey((char *)product_key);
+ HAL_SetDeviceName((char *)device_name);
+ HAL_SetDeviceSecret((char *)device_secret);
+
/* Dynamic Register Device If Need */
... |
sysrepo BUGFIX missing rwlock init
Refs | @@ -77,9 +77,15 @@ sr_conn_new(const sr_conn_options_t opts, sr_conn_ctx_t **conn_p)
conn->main_shm.fd = -1;
conn->ext_shm.fd = -1;
+ if ((conn->opts & SR_CONN_CACHE_RUNNING) && (err_info = sr_rwlock_init(&conn->mod_cache.lock, 0))) {
+ goto error5;
+ }
+
*conn_p = conn;
return NULL;
+error5:
+ sr_rwlock_destroy(&conn-... |
travis: Add nrf port to Travis CI build. | @@ -113,6 +113,18 @@ jobs:
- make ${MAKEOPTS} -C mpy-cross
- make ${MAKEOPTS} -C ports/windows CROSS_COMPILE=i686-w64-mingw32-
+ # nrf port
+ - stage: test
+ env: NAME="nrf port build"
+ install:
+ # need newer gcc version to support variables in linker script
+ - sudo add-apt-repository -y ppa:team-gcc-arm-embedded/pp... |
Add a TODO(TLS1.3) around certificate selection | @@ -2823,6 +2823,12 @@ int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s)
static int ssl_get_server_cert_index(const SSL *s)
{
int idx;
+
+ /*
+ * TODO(TLS1.3): In TLS1.3 the selected certificate is not based on the
+ * ciphersuite. For now though it still is. Our only TLS1.3 ciphersuite
+ * forces the use of an RSA ... |
Yan LR: Also check C++ source files with OCLint | @@ -13,7 +13,7 @@ oclint -p "@PROJECT_BINARY_DIR@" -enable-global-analysis -enable-clang-static-an
"@CMAKE_SOURCE_DIR@/src/libs/ease/array.c" \
"@CMAKE_SOURCE_DIR@/src/libs/ease/keyname.c" \
"@CMAKE_SOURCE_DIR@/src/libs/utility/text.c" \
- "@CMAKE_SOURCE_DIR@/src/plugins/yanlr/"*.c \
+ "@CMAKE_SOURCE_DIR@/src/plugins/y... |
Try to fix blurry looking fonts (PixelSnapH shouldn't be required and it disables oversampling) | @@ -303,8 +303,7 @@ bool D3D12::InitializeImGui(size_t aBuffersCounts)
ImFontConfig config;
config.SizePixels = std::floorf(m_options.FontSize * scaleFromReference);
- config.OversampleH = config.OversampleV = 2;
- config.PixelSnapH = true;
+ config.OversampleH = 2;
config.MergeMode = false;
// add default font
|
Add std/bzip2 comment re QUIRK_IGNORE_CHECKSUM | @@ -95,7 +95,8 @@ pub struct decoder? implements base.io_transformer(
)
pub func decoder.set_quirk_enabled!(quirk: base.u32, enabled: base.bool) {
- // TODO: support base.QUIRK_IGNORE_CHECKSUM.
+ // We do not support base.QUIRK_IGNORE_CHECKSUM. Benchmarks suggest that
+ // checksum calculation has an insignificant effe... |
Work around crash issue with Oj::Doc | @@ -819,6 +819,8 @@ parse_json(VALUE clas, char *json, bool given, bool allocated) {
int ex = 0;
volatile VALUE self;
+ // TBD are both needed? is stack allocation ever needed?
+
if (given) {
doc = ALLOCA_N(struct _doc, 1);
} else {
@@ -862,6 +864,7 @@ parse_json(VALUE clas, char *json, bool given, bool allocated) {
if... |
added skin name thing to parseskintest | @@ -15,6 +15,7 @@ class TestScore(unittest.TestCase):
def testskin(self):
for i in range(len(self.tests)):
s = Skin("", "", inipath=self.tests[i])
+ print('Testing skin:', s.general['Name'])
result = str(s.colours) + "\n" + str(s.fonts)
if self.update: # ignore this if
|
[mod_accesslog] strftime %z for numeric timestamp | @@ -896,20 +896,7 @@ static int log_access_record (const request_st * const r, buffer * const b, form
if (buffer_string_is_empty(&f->string)) {
#if defined(HAVE_STRUCT_TM_GMTOFF)
- long scd, hrs, min;
- buffer_append_strftime(ts_accesslog_str, "[%d/%b/%Y:%H:%M:%S ", tmptr);
-
- scd = labs(tmptr->tm_gmtoff);
- hrs = scd... |
Add excitation with RF phase utest | @@ -347,8 +347,10 @@ static bool test_ode_sa_bloch(void)
return true;
}
-
UT_REGISTER_TEST(test_ode_sa_bloch);
+
+
+
static bool test_bloch_relaxation(void)
{
float x0[3] = { 0., 1., 0. };
@@ -402,3 +404,28 @@ static bool test_bloch_excitation(void)
UT_REGISTER_TEST(test_bloch_excitation);
+
+
+static bool test_bloch_e... |
Standard shader uses material alpha; | @@ -219,7 +219,7 @@ const char* lovrStandardFragmentShader = ""
" vec3 result = vec3(0.); \n"
// Parameters
-" vec3 baseColor = texture(lovrDiffuseTexture, lovrTexCoord).rgb * lovrDiffuseColor.rgb; \n"
+" vec4 baseColor = texture(lovrDiffuseTexture, lovrTexCoord) * lovrDiffuseColor; \n"
" float metalness = texture(lovr... |
doc: fix a coupe of typos in rtvm_performance_tips.rst doc
Fix a couple of typos that sneaked in in the 'rtvm_performance_tips.rst'
document. | @@ -73,7 +73,7 @@ using LAPIC passthrough. A few exceptions exist:
- NMI - ACRN uses NMI for system-level notification.
You should avoid VM-exits triggered by operations initiated by the
-vCPU. Refer to the `Intel Software Developer Manuals (SMD)
+vCPU. Refer to the `Intel Software Developer Manuals (SDM)
<https://soft... |
SOVERSION bump to version 2.5.1 | @@ -63,7 +63,7 @@ set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_
# set version of the library
set(LIBYANG_MAJOR_SOVERSION 2)
set(LIBYANG_MINOR_SOVERSION 5)
-set(LIBYANG_MICRO_SOVERSION 0)
+set(LIBYANG_MICRO_SOVERSION 1)
set(LIBYANG_SOVERSION_FULL ${LIBYANG_MAJOR_SOVERSION}.${LIBYANG_MI... |
Fix bug with Mesh:setVertices; | @@ -315,7 +315,7 @@ static int l_lovrMeshSetVertices(lua_State* L) {
luaL_checktype(L, -1, LUA_TTABLE);
int component = 0;
for (uint32_t j = 0; j < attributeCount; j++) {
- const MeshAttribute* attribute = lovrMeshGetAttribute(mesh, i);
+ const MeshAttribute* attribute = lovrMeshGetAttribute(mesh, j);
if (attribute->bu... |
make sure wifi is available with a rpi3 | @@ -406,17 +406,24 @@ void DeRestPluginPrivate::initWiFi()
QList<QNetworkInterface>::Iterator i = ifaces.begin();
QList<QNetworkInterface>::Iterator end = ifaces.end();
- bool wlan0 = false;
+ bool wifiAvailable = false;
// only show wifi if wlan0 interface is found
for (; i != end; ++i)
{
if (i->name() == QLatin1Strin... |
Fix FireChip MultiCycleRegfileImp mixin | @@ -8,6 +8,7 @@ import freechips.rocketchip.tilelink._
import freechips.rocketchip.subsystem._
import freechips.rocketchip.amba.axi4._
import freechips.rocketchip.util._
+import freechips.rocketchip.tile._
import freechips.rocketchip.subsystem._
import freechips.rocketchip.rocket.TracedInstruction
import firesim.endpoi... |
range: Update range's README.md:
1. Add info about using `type` as fallback.
2. Improve readability of section "Usage" | @@ -20,9 +20,12 @@ The package is called `libelektra5-experimental`.
## Usage
-The plugin checks every `Key` in the `KeySet` for the metakey `check/range` which contains either a single range with the syntax `[-]min-[-]max`, or a list of ranges or values separated by `,` and tests if the `Key`'s value is within the ran... |
fix(lru): Fix use of undefined variables | @@ -102,7 +102,7 @@ void lv_draw_sdl_texture_cache_put_advanced(lv_draw_sdl_ctx_t * ctx, const void
}
if(flags & LV_DRAW_SDL_CACHE_FLAG_MANAGED) {
/* Managed texture doesn't count into cache size */
- LV_LOG_INFO("cache texture %p, %d*%d@%dbpp", texture, width, height, SDL_BITSPERPIXEL(format));
+ LV_LOG_INFO("cache te... |
hamlet: user_cap_predicates.c: only include static_assert.h and barrelfish_kpi/capabilities.h instead of barrelfish/barrelfish.h | >
> let compiledCode = (compile $! (userbackend $! ast))
> fileC <- openFile filenameUserCode WriteMode
-> hPutStrLn fileC "#include <barrelfish/barrelfish.h>"
+> hPutStrLn fileC "#include <barrelfish/static_assert.h>"
+> hPutStrLn fileC "#include <barrelfish_kpi/capabilities.h>"
> hPutStrLn fileC "#include <barrelfish... |
Allow negative EN_SETTING value in EN_setlinkvalue
Makes EN_setlinkvalue consistent with how an input file is read. This addresses issue . | @@ -3886,7 +3886,6 @@ int DLLEXPORT EN_setlinkvalue(EN_Project p, int index, int property, double valu
case EN_INITSETTING:
case EN_SETTING:
- if (value < 0.0) return 211;
if (Link[index].Type == PIPE || Link[index].Type == CVPIPE)
{
return EN_setlinkvalue(p, index, EN_ROUGHNESS, value);
@@ -3896,6 +3895,7 @@ int DLLEX... |
Changed LV_KB_MODE_TEXT_UC to LV_KB_MODE_TEXT_UPPER as suggested to make
it more intuitive. | @@ -205,7 +205,7 @@ void lv_kb_set_mode(lv_obj_t * kb, lv_kb_mode_t mode)
} else if(mode == LV_KB_MODE_NUM) {
lv_btnm_set_map(kb, kb_map_num);
lv_btnm_set_ctrl_map(kb, kb_ctrl_num_map);
- } else if(mode == LV_KB_MODE_TEXT_UC) {
+ } else if(mode == LV_KB_MODE_TEXT_UPPER) {
lv_btnm_set_map(kb, kb_map_uc);
lv_btnm_set_ctr... |
py/mpstate.h: Remove obsolete comment about nlr_top being coded in asm. | @@ -215,7 +215,6 @@ typedef struct _mp_state_thread_t {
mp_obj_dict_t *dict_locals;
mp_obj_dict_t *dict_globals;
- // Note: nlr asm code has the offset of this hard-coded
nlr_buf_t *nlr_top; // ROOT POINTER
// Stack top at the start of program
|
Bump firmware version to 0x261c0500
This version uses classic mesh routing only and has experimental source and
many-to-one routiung disabled. | @@ -61,7 +61,7 @@ DEFINES += GIT_COMMMIT=\\\"$$GIT_COMMIT\\\" \
# Minimum version of the RaspBee firmware
# which shall be used in order to support all features for this software release (case sensitive)
-DEFINES += GW_MIN_RPI_FW_VERSION=0x26190500
+DEFINES += GW_MIN_RPI_FW_VERSION=0x261c0500
# Minimum version of the d... |
Optimize RelationFindReplTupleSeq() for CLOBBER_CACHE_ALWAYS.
Specifically, remember lookup_type_cache() results instead of retrieving
them once per comparison. Under CLOBBER_CACHE_ALWAYS, this reduced
src/test/subscription/t/001_rep_changes.pl elapsed time by an order of
magnitude, which reduced check-world elapsed t... | @@ -225,7 +225,8 @@ retry:
* Compare the tuples in the slots by checking if they have equal values.
*/
static bool
-tuples_equal(TupleTableSlot *slot1, TupleTableSlot *slot2)
+tuples_equal(TupleTableSlot *slot1, TupleTableSlot *slot2,
+ TypeCacheEntry **eq)
{
int attrnum;
@@ -256,12 +257,18 @@ tuples_equal(TupleTableSl... |
Add missing psa_pake_cs_get_bits() | @@ -1238,6 +1238,20 @@ static psa_pake_family_t psa_pake_cs_get_family(
const psa_pake_cipher_suite_t* cipher_suite
);
+/** Retrieve the PAKE primitive bit-size from a PAKE cipher suite.
+ *
+ * This function may be declared as `static` (i.e. without external
+ * linkage). This function may be provided as a function-li... |
Refresh i2c.c from STM32 CubeMX output
To try and keep the project in line with the STM32 CubeMX IOC file, I've refreshed i2c.c with a freshly generated copy from CubeMX. | I2C_HandleTypeDef hi2c4;
/* I2C4 init function */
-
void MX_I2C4_Init(void)
{
+
hi2c4.Instance = I2C4;
- hi2c4.Init.Timing = 0x10C0ECFF; // ORIGINAL VALUE, WTF IS THIS SO CRYPTIC!!?!?!?
- //hi2c4.Init.Timing = 0x103039FF; // WHO KNOWS!
+ hi2c4.Init.Timing = 0x307075B1;
hi2c4.Init.OwnAddress1 = 0;
hi2c4.Init.AddressingM... |
Use default background bitmap in case of CartoCSS with no background define | @@ -29,7 +29,7 @@ namespace carto {
_buildingRenderOrder(VectorTileRenderOrder::VECTOR_TILE_RENDER_ORDER_LAST),
_tileDecoder(decoder),
_tileDecoderListener(),
- _backgroundColor(),
+ _backgroundColor(0, 0, 0, 0),
_backgroundBitmap(),
_skyColor(),
_skyBitmap(),
@@ -455,7 +455,11 @@ namespace carto {
Color backgroundColo... |
docs: include ucx/ofi discussion for mpi on aarch64 | For MPI development and runtime support, \OHPC{} provides pre-packaged builds
-for two MPI families that are compatible with ethernet fabrics. These MPI
-stacks can be installed as follows:
+for two MPI families that are compatible with both ethernet and high-speed
+fabrics. These MPI stacks can be installed as follows... |
doc: prettify OPAL_SYNC_HOST_REBOOT | +.. _OPAL_SYNC_HOST_REBOOT:
+
OPAL_SYNC_HOST_REBOOT
=====================
-::
- static int64_t opal_sync_host_reboot(void)
+.. code-block:: c
+
+ #define OPAL_SYNC_HOST_REBOOT 87
+
+ static int64_t opal_sync_host_reboot(void);
This OPAL call halts asynchronous operations in preparation for something
like kexec. It will... |
libcupsfilters: Fix page range like "10-" in pdftopdf() filter function | @@ -256,7 +256,7 @@ static void parseRanges(const char *range,IntervalSet &ret) // {{{
} else {
upper=strtol(range,(char **)&range,10);
if (upper>=2147483647) {
- ret.add(1);
+ ret.add(lower);
} else {
ret.add(lower,upper+1);
}
|
Update cook tool. | (defn make-archive
"Build a janet archive. This is a file that bundles together many janet
- scripts into a janet form. This file can the be moved to any machine with
+ scripts into a janet image. This file can the be moved to any machine with
a janet vm and the required dependencies and run there."
[& opts]
- (error "... |
ames: honor -p for galaxies, with warning | @@ -413,25 +413,16 @@ _ames_io_start(u3_pier* pir_u)
u3_noun rac = u3do("clan:title", u3k(who));
if ( c3__czar == rac ) {
- u3_noun imp = u3dc("scot", 'p', u3k(who));
- c3_c* imp_c = u3r_string(imp);
c3_y num_y = (c3_y)pir_u->who_d[0];
+ c3_s zar_s = _ames_czar_port(num_y);
- if ( 0 != por_s ) {
- u3l_log("ames: czar: ... |
Fix no-sm3/no-sm2 (with strict-warnings) | @@ -2751,6 +2751,7 @@ static const struct {
}
};
+#ifndef OPENSSL_NO_SM2
static const struct {
EC_CURVE_DATA h;
unsigned char data[0 + 32 * 6];
@@ -2787,6 +2788,7 @@ static const struct {
0x53, 0xbb, 0xf4, 0x09, 0x39, 0xd5, 0x41, 0x23,
}
};
+#endif /* OPENSSL_NO_SM2 */
typedef struct _ec_list_element_st {
int nid;
|
nimble/socket: Enhance error log with hci dev num | @@ -540,7 +540,7 @@ ble_hci_sock_config(void)
rc = bind(s, (struct sockaddr *)&shci, sizeof(shci));
if (rc) {
- dprintf(1, "bind() failed %d\n", errno);
+ dprintf(1, "bind() failed %d hci%d\n", errno, shci.hci_dev);
goto err;
}
|
Update docs/Advanced-Concepts/Chip-Communication.rst | @@ -210,7 +210,7 @@ Bringup Setup of the Example Test Chip after Tapeout
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Assuming this example test chip is taped out and now ready to be tested, we can communicate with the chip using this serial-link.
-For example, some Berkeley tapeouts of Chipyard chips have an F... |
link-server-hook: add tile serving, %png mounts
Front-end work necessitates images being mounted, and the tile served on
Landscape. This commit adds it to link-server-hook. | ::
++ on-init
^- (quip card _this)
- :_ this
- [start-serving:do]~
+ :- [start-serving:do launch-tile:do ~]
+ this
::
++ on-save !>(state)
++ on-load
^- (quip card _this)
?: ?=([%http-response *] path)
[~ this]
+ ?: =(/primary path)
+ [~ this]
(on-watch:def path)
::
++ on-poke
^- card
[%pass / %arvo %e %connect [~ /'~l... |
Fix inclusion on watchdog source file | @@ -21,7 +21,11 @@ list(APPEND TARGET_CHIBIOS_NANOCLR_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/targetPA
# append target HAL source files
list(APPEND TARGET_CHIBIOS_NANOCLR_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/targetHAL_Power.c")
list(APPEND TARGET_CHIBIOS_NANOCLR_SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/targetHAL_Time.cpp")
+
... |
OcMachoLib: Remove redundant symbol sanity check. | @@ -318,13 +318,7 @@ MachoGetSymbolByExternRelocationOffset64 (
Relocation = InternalGetExternalRelocationByOffset (Context, Address);
if (Relocation != NULL) {
- Sym = MachoGetSymbolByIndex64 (Context, Relocation->SymbolNumber);
- if ((Sym != NULL) && InternalSymbolIsSane (Context, Sym)) {
- *Symbol = (MACH_NLIST_64 *... |
fix building with multiliple targets | @@ -152,6 +152,8 @@ namespace "config" do
$version_app = "1.0"
end
+ if $app_config["sailfish"]["target_sdk"].nil?
+
require 'nokogiri'
current_targets = File.join($qtdir, "mersdk", "targets", "targets.xml")
current_targets = current_targets.gsub("\\", "/")
@@ -162,17 +164,22 @@ namespace "config" do
target = t.attr("n... |
Mercator: check txfillbyte in the padding field | @@ -490,8 +490,12 @@ void cb_endFrame(PORT_TIMER_WIDTH timestamp) {
}
// check txfillbyte
- if (rx_temp->txfillbyte != mercator_vars.txpk_txfillbyte){
+ for (int i = offsetof(RF_PACKET_ht, txfillbyte);
+ i < mercator_vars.rxpk_len - LENGTH_CRC; i++){
+ if(mercator_vars.rxpk_buf[i] != mercator_vars.txpk_txfillbyte){
is_... |
Fix wrong Datafari version | <link rel="stylesheet" type="text/css" href="<c:url value="/resources/css/footer.css" />" media="screen">
<footer class="bar-footer" id="footer-bar">
<img id="footer-logo" class="datafari-logo" src="<c:url value="/resources/images/empty-pixel.png" />">
- <a id="footer-link" href="mailto:support@francelabs.com" class="l... |
Add MBEDTLS_POLY1305_C and MBEDTLS_CHACHA20_C
MBEDTLS_POLY1305_C and MBEDTLS_CHACHA20_C are needed
when PSA_WANT_ALG_CHACHA20_POLY1305 is defined | @@ -450,6 +450,8 @@ extern "C" {
#if !defined(MBEDTLS_PSA_ACCEL_ALG_CHACHA20_POLY1305)
#if defined(PSA_WANT_KEY_TYPE_CHACHA20)
#define MBEDTLS_CHACHAPOLY_C
+#define MBEDTLS_CHACHA20_C
+#define MBEDTLS_POLY1305_C
#define MBEDTLS_PSA_BUILTIN_ALG_CHACHA20_POLY1305 1
#endif /* PSA_WANT_KEY_TYPE_CHACHA20 */
#endif /* !MBEDT... |
improved colour code: green=wpa, cyan=extended eapol, magenta=ip, red=warning | @@ -1758,9 +1758,9 @@ pcap_close(pcapin);
printf("%ld packets processed (%ld wlan, %ld lan, %ld loopback)\n", packetcount, wlanpacketcount, ethpacketcount, loopbpacketcount);
if(hcxwritecount == 1)
- printf("found %ld usefull wpa handshake\n", hcxwritecount);
+ printf("\x1B[32mfound %ld usefull wpa handshake\x1B[0m\n",... |
vioinput: fix problem with high resolution mouse
High resultion mouse often provides values out of range (-127,+127).
Unfortunately the interface of vioinput does not provide any
information about logical limits of relative pointer.
So, let's keep the value inside the range. | @@ -73,6 +73,16 @@ typedef struct _tagInputClassMouse
ULONG uFlags;
} INPUT_CLASS_MOUSE, *PINPUT_CLASS_MOUSE;
+static UCHAR FORCEINLINE TrimRelative(long val)
+{
+ if (val < -127) {
+ return (UCHAR)(-127);
+ } else if (val > 127) {
+ return 127;
+ }
+ return (UCHAR)val;
+}
+
static NTSTATUS
HIDMouseEventToReport(
PINPU... |
Update PR#3925 | @@ -240,7 +240,9 @@ int s_time_main(int argc, char **argv)
www_path);
if (buf_len <= 0 || SSL_write(scon, buf, buf_len) <= 0)
goto end;
- while ((i = SSL_read(scon, buf, sizeof(buf))) > 0 || SSL_get_error(scon, i) == SSL_ERROR_WANT_READ)
+ while ((i = SSL_read(scon, buf, sizeof(buf))) > 0 ||
+ SSL_get_error(scon, i) ==... |
BugID:23266661: Rename httpclient MBEDTLS_ENTROPY_C_ALIOS to MBEDTLS_ENTROPY_C | @@ -1548,7 +1548,7 @@ static int httpclient_send_header(httpclient_t *client, char *url, int method, h
#if CONFIG_HTTP_SECURE
if (client->is_http == false) {
- http_log("Enter PolarSSL_write");
+ http_log("Enter SSL_write");
httpclient_ssl_t *ssl = (httpclient_ssl_t *)client->ssl;
if (httpclient_ssl_send_all(&ssl->ssl_... |
Made ecpg compatibility mode and run-time behaviour options case insensitive. | @@ -251,7 +251,7 @@ main(int argc, char *const argv[])
snprintf(informix_path, MAXPGPATH, "%s/informix/esql", pkginclude_path);
add_include_path(informix_path);
}
- else if (strncmp(optarg, "ORACLE", strlen("ORACLE")) == 0)
+ else if (pg_strcasecmp(optarg, "ORACLE") == 0)
{
compat = ECPG_COMPAT_ORACLE;
}
@@ -262,11 +26... |
Clear subscriptions after user code. | @@ -314,11 +314,11 @@ static ws_s *new_websocket(intptr_t uuid) {
return ws;
}
static void destroy_ws(ws_s *ws) {
- clear_subscriptions(ws);
if (ws->on_close)
ws->on_close(ws->fd, ws->udata);
if (ws->msg)
fiobj_free(ws->msg);
+ clear_subscriptions(ws);
free_ws_buffer(ws, ws->buffer);
free(ws);
}
|
vcs ps2: blip scale fix | @@ -422,6 +422,15 @@ void init()
injector.MakeJAL(0x116D50, (intptr_t)BlipsScaling);
+ //CRadar::DrawRotatingRadarSprite
+ float f6 = 6.0f;
+ float f6_pequeno = f6 / (1.0f / BlipsScale);
+ MakeInlineWrapperWithNOP(0x116BE0,
+ lui(v0, HIWORD(f6_pequeno)),
+ ori(v0, v0, LOWORD(f6_pequeno)),
+ mtc1(v0, f3)
+ );
+
// Cross... |
Add a few more pinning tests for increaseBackoff | @@ -29,11 +29,13 @@ class TransmissionPolicyManager4Test : public TransmissionPolicyManager {
TransmissionPolicyManager::scheduleUpload(delay, latency, force);
}
+ using TransmissionPolicyManager::increaseBackoff;
using TransmissionPolicyManager::addUpload;
using TransmissionPolicyManager::removeUpload;
using Transmiss... |
tighten test for fixed scaling | @@ -20,7 +20,7 @@ tests/test-nufft-forward: traj nufft reshape nrmse $(TESTS_OUT)/shepplogan.ra $(
$(TOOLDIR)/traj -x128 -y128 traj.ra ;\
$(TOOLDIR)/nufft -P traj.ra $(TESTS_OUT)/shepplogan.ra shepplogan_ksp2.ra ;\
$(TOOLDIR)/reshape 7 128 128 1 shepplogan_ksp2.ra shepplogan_ksp3.ra ;\
- $(TOOLDIR)/nrmse -t 0.0015 $(TE... |
Fix build if build dir is outside source dir
tests/debugger/host/host.c was moved from tests/debugger/oegdb/host/host.c.
The relative #include must be adapted to this. | #include <openenclave/internal/error.h>
#include <openenclave/internal/tests.h>
#include <string.h>
-#include "../../../../host/sgx/enclave.h"
+#include "../../../host/sgx/enclave.h"
// The following variables are initialized so that the assertions below will
// fail by default. The test expects the debugger to update ... |
AFR NimBLE: Fix memory overrun bug during GATT cleanup | @@ -540,7 +540,7 @@ void vESPBTGATTServerCleanup( void )
serviceCnt = 0;
memset( espServices, 0, sizeof( struct ble_gatt_svc_def ) * ( MAX_SERVICES + 1 ) );
- memset( afrServices, 0, sizeof( struct BTService_t * ) * ( MAX_SERVICES + 1 ) );
+ memset( afrServices, 0, sizeof( struct BTService_t * ) * ( MAX_SERVICES ) );
}... |
[scripts] Avoid rounding errors in tracevis | @@ -36,9 +36,9 @@ def flush(buf, hartid):
for i in range(len(buf)-1):
(time, cyc, priv, pc, instr, args) = buf.pop(0)
- next_time = 1.0e-3*int(buf[0][0])
+ next_time = int(buf[0][0])
- time = 1.0e-3*int(time)
+ time = int(time)
# print(f'time "{time}", cyc "{cyc}", priv "{priv}", pc "{pc}", instr "{instr}", args "{args... |
uip-ds6.c: Avoid compilation warning | @@ -91,7 +91,9 @@ static uip_ds6_maddr_t *locmaddr;
static uip_ds6_aaddr_t *locaaddr;
#endif /* UIP_DS6_AADDR_NB */
static uip_ds6_prefix_t *locprefix;
+#if (UIP_LLADDR_LEN == 2)
static const uint8_t iid_prefix[] = { 0x00, 0x00 , 0x00 , 0xff , 0xfe , 0x00 };
+#endif /* (UIP_LLADDR_LEN == 2) */
/*-----------------------... |
Logic fix for guardpoints. | @@ -19461,7 +19461,7 @@ void set_opponent(entity *ent, entity *other)
int check_blocking_eligible(entity *ent, entity *other, s_collision_attack *attack)
{
// If guardpoints are set, then find out if they've been depleted.
- if(!ent->modeldata.guardpoints.max)
+ if(ent->modeldata.guardpoints.max)
{
if(ent->modeldata.gu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.