MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gcmask fixes

+2 -3
+1 -1
meson.build
··· 74 74 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 75 75 76 76 version_conf = configuration_data() 77 - version_conf.set('ANT_VERSION', '0.0.7.37') 77 + version_conf.set('ANT_VERSION', '0.0.7.38') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+1 -2
src/ant.c
··· 1943 1943 jsoff_t entity_val = loadoff(js, offset); 1944 1944 uint8_t entity_type = entity_val & 3; 1945 1945 1946 - if (entity_type == T_OBJ && is_builtin_or_system(offset, js)) return; 1947 - if (entity_type == T_PROP) return; 1946 + if (entity_type == T_OBJ && is_builtin_or_system(offset, js)) return; 1948 1947 if (entity_type == T_STR && offset < 0x1000) return; 1949 1948 1950 1949 FreeListEntry entry = {0};