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.

js_del fix

+3 -1
+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.2.1.8') 77 + version_conf.set('ANT_VERSION', '0.2.1.9') 78 78 version_conf.set('ANT_GIT_HASH', git_hash) 79 79 version_conf.set('ANT_BUILD_DATE', build_date) 80 80
+2
src/ant.c
··· 20852 20852 saveoff(js, obj_off, (deleted_next & ~3U) | (current & (GCMASK | CONSTMASK | 3U))); 20853 20853 saveoff(js, prop_off, loadoff(js, prop_off) | GCMASK); 20854 20854 invalidate_obj_cache(obj_off); 20855 + invalidate_prop_cache_for_obj(obj_off); 20855 20856 return true; 20856 20857 } 20857 20858 ··· 20864 20865 saveoff(js, prev, deleted_next | prev_flags); 20865 20866 saveoff(js, prop_off, loadoff(js, prop_off) | GCMASK); 20866 20867 invalidate_obj_cache(obj_off); 20868 + invalidate_prop_cache_for_obj(obj_off); 20867 20869 return true; 20868 20870 } 20869 20871 prev = next_prop;