..
arrays
arrays: add arrays.chunk_while/2, where arrays.chunk_while([0,9,2,2,3,2],fn(x int,y int)bool{return x<=y})==[[0,9],[2,2,3],[2]]
2024-07-03 19:05:34 +03:00
benchmark
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
bitfield
bitfield: correct a few typos ( #21187 )
2024-04-05 11:24:31 +03:00
builtin
builtin, strings: improve consistency and behavior regarding explicit mutability ( #21566 )
2024-07-10 15:26:51 +03:00
cli
cli: fix default flags when their command equivalents are disabled ( #21469 )
2024-05-08 14:11:40 +03:00
clipboard
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
compress
vlib: make ./v -Wimpure-v -W test vlib/
pass on Linux ( #21554 )
2024-05-23 16:21:01 +03:00
context
time: update unix time acces, fix issues related to deviating unix times ( #21293 )
2024-04-17 00:33:37 +03:00
coroutines
coroutines: reduce default stack size from 8 MB to 8 KB
2024-05-21 06:07:27 +03:00
crypto
crypto.blowfish: apply @[direct_array_access]
to very commonly used functions ( #21771 )
2024-06-30 20:48:05 +03:00
datatypes
datatypes: fix for set -
operator, union and intersection, now they no longer change the receiver ( fix #21315 ) ( #21362 )
2024-05-01 22:05:24 +03:00
db
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
dl
vlib: refactor empty string checks to use s == ''
or s != ''
, instead of s.len == 0
( #21300 )
2024-04-18 02:44:31 +03:00
dlmalloc
dlmalloc: fix notice for ambiguous expression with both >> and & ( #21539 )
2024-05-21 01:56:54 +03:00
encoding
encoding.binary: add an f32 test; checker: remove "(s)" from the assignment mismatch error
2024-07-01 15:07:07 +03:00
eventbus
ci: run VAUTOFIX=1 ./v check-md -hide-warnings .
to fix doc failures
2023-11-25 09:34:46 +02:00
flag
flag: include args after end-of-options(--
) when checking min and max args ( #21310 )
2024-04-19 21:12:00 +03:00
fontstash
breaking,vlib: update handling of imports whose symbols are not directly used in imported file, remove pub const is_used = 1
workarounds ( #21160 )
2024-04-01 22:07:05 +03:00
gg
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
gx
breaking,vlib: update handling of imports whose symbols are not directly used in imported file, remove pub const is_used = 1
workarounds ( #21160 )
2024-04-01 22:07:05 +03:00
hash
all: fix typos ( #21089 )
2024-03-25 12:18:27 +02:00
io
io: cleanup prefix_and_suffix/1 util function ( #21562 )
2024-05-25 03:46:34 +03:00
js
doc: update trim_doc_node_description, make module readmes more uniform ( #20792 )
2024-02-12 12:38:47 +02:00
json
time: update unix time acces, fix issues related to deviating unix times ( #21293 )
2024-04-17 00:33:37 +03:00
log
breaking,checker: disallow initializing private struct fields outside structs module ( #21183 )
2024-04-12 13:53:02 +03:00
maps
doc: update trim_doc_node_description, make module readmes more uniform ( #20792 )
2024-02-12 12:38:47 +02:00
math
math: avoid unused calculations for math.modulo_floored/2 and math.modulo_euclid/2
2024-06-29 11:33:46 +03:00
net
net.http, veb, vweb, x.vweb: add mime type text/x-vlang
, for .v
and .vsh
file extensions ( #21851 )
2024-07-12 14:23:50 +03:00
orm
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
os
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
picoev
picoev: handle EAGAIN
or EWOULDBLOCK
quietly ( #21480 )
2024-05-10 11:19:20 +03:00
picohttpparser
vlib: refactor empty string checks to use s == ''
or s != ''
, instead of s.len == 0
( #21300 )
2024-04-18 02:44:31 +03:00
rand
time: update unix time acces, fix issues related to deviating unix times ( #21293 )
2024-04-17 00:33:37 +03:00
readline
breaking,checker: disallow initializing private struct fields outside structs module ( #21183 )
2024-04-12 13:53:02 +03:00
regex
regex: implement \xAF
and \X1234
BSLS escape codes ( fix #21607 ) ( #21632 )
2024-06-02 00:39:59 +03:00
runtime
os,runtime: workaround for v.c generation instability
2024-05-01 21:51:28 +03:00
semver
builtin: update last_index_u8
, deprecate index_u8_last
string methods, make consistent with last_index
( #21604 )
2024-06-04 13:21:47 +03:00
sokol
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
stbi
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
strconv
vlib: refactor empty string checks to use s == ''
or s != ''
, instead of s.len == 0
( #21300 )
2024-04-18 02:44:31 +03:00
strings
builtin, strings: improve consistency and behavior regarding explicit mutability ( #21566 )
2024-07-10 15:26:51 +03:00
sync
sync,os,thirdparty: fix cross compilation from macos to windows ( #21484 )
2024-05-10 22:04:52 +03:00
szip
vlib: make ./v -Wimpure-v -W test vlib/
pass on Linux ( #21554 )
2024-05-23 16:21:01 +03:00
term
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
time
fmt: implement wrapping function's super long arguments ( fix #15545 , fix #21643 ) ( #21782 )
2024-07-02 23:10:00 +03:00
toml
vlib: simplify byte character conditions by using methods like is_capital, is_lower, is_letter etc ( #21725 )
2024-06-25 09:55:08 +03:00
v
vrepl: fix infix shift operation ( #21855 )
2024-07-13 00:08:52 +03:00
v2
vlib: simplify byte character conditions by using methods like is_capital, is_lower, is_letter etc ( #21725 )
2024-06-25 09:55:08 +03:00
veb
net.http, veb, vweb, x.vweb: add mime type text/x-vlang
, for .v
and .vsh
file extensions ( #21851 )
2024-07-12 14:23:50 +03:00
vweb
net.http, veb, vweb, x.vweb: add mime type text/x-vlang
, for .v
and .vsh
file extensions ( #21851 )
2024-07-12 14:23:50 +03:00
wasm
doc: update trim_doc_node_description, make module readmes more uniform ( #20792 )
2024-02-12 12:38:47 +02:00
x
net.http, veb, vweb, x.vweb: add mime type text/x-vlang
, for .v
and .vsh
file extensions ( #21851 )
2024-07-12 14:23:50 +03:00
.vdocignore
vdoc: remove obsolete entries from .vdocignore
( #21320 )
2024-04-20 16:32:31 +03:00
README.md