Společnost Meta představila OpenZL. Jedná se o open source framework pro kompresi dat s ohledem na jejich formát. Zdrojové kódy jsou k dispozici na GitHubu.
Google postupně zpřístupňuje českým uživatelům Režim AI (AI Mode), tj. nový režim vyhledávání založený na umělé inteligenci. Režim AI nabízí pokročilé uvažování, multimodalitu a možnost prozkoumat jakékoliv téma do hloubky pomocí dodatečných dotazů a užitečných odkazů na weby.
Programovací jazyk Python byl vydán v nové major verzi 3.14.0. Podrobný přehled novinek v aktualizované dokumentaci.
Bylo oznámeno, že Qualcomm kupuje Arduino. Současně byla představena nová deska Arduino UNO Q se dvěma čipy: MPU Qualcomm Dragonwing QRB2210, na kterém může běžet Linux, a MCU STM32U585 a vývojové prostředí Arduino App Lab.
Multiplatformní open source voxelový herní engine Luanti byl vydán ve verzi 5.14.0. Podrobný přehled novinek v changelogu. Původně se jedná o Minecraftem inspirovaný Minetest v říjnu loňského roku přejmenovaný na Luanti.
Byla vydána nová stabilní verze 6.10 (YouTube) multiplatformního frameworku a GUI toolkitu Qt. Podrobný přehled novinek v poznámkách k vydání.
Netwide Assembler (NASM) byl vydán v nové major verzi 3.00. Přehled novinek v poznámkách k vydání v aktualizované dokumentaci.
Linuxová distribuce Frugalware (Wikipedie) ke konci roku 2025 oficiálně končí.
Byla vydána nová verze 3.0.6 svobodné aplikace pro úpravu a vytváření rastrové grafiky GIMP (GNU Image Manipulation Program). Přehled novinek v oznámení o vydání a v souboru NEWS na GitLabu. Nový GIMP bude brzy k dispozici také na Flathubu.
display
z balíku ImageMagick. Nezobrazuje žádná tlačítka okolo a na Esc
skončí (nadpis okna a pozici lze určit při spuštění).
image -a 50 -f 0 -t 0 -p 1 -i droplets.jpg
(vykreslí to obrázok hore v strede s 50% priehľadnosťou; nepoužije sa žiadny fade-in a fade-out efekt)
error while loading shared libraries: libaosd.so.2: cannot open shared object file: No such file or directory
Při pokusu kompilace pomocí make v adresáři image dostanu následující:
image.c:6:18: error: glib.h: No such file or directory
image.c:17: error: expected specifier-qualifier-list before ‘gboolean’
image.c:24: error: ‘TRUE’ undeclared here (not in a function)
image.c:24: warning: excess elements in struct initializer
image.c:24: warning: (near initialization for ‘opts’)
image.c:25: warning: excess elements in struct initializer
image.c:25: warning: (near initialization for ‘opts’)
image.c:26: warning: excess elements in struct initializer
image.c:26: warning: (near initialization for ‘opts’)
image.c:26: warning: excess elements in struct initializer
image.c:26: warning: (near initialization for ‘opts’)
image.c:27: warning: excess elements in struct initializer
image.c:27: warning: (near initialization for ‘opts’)
image.c:29: warning: excess elements in struct initializer
image.c:29: warning: (near initialization for ‘opts’)
image.c: In function ‘render’:
image.c:60: error: ‘struct anonymous’ has no member named ‘alpha’
image.c: At top level:
image.c:65: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘parse_options’
image.c: In function ‘main’:
image.c:137: warning: implicit declaration of function ‘parse_options’
image.c:137: warning: nested extern declaration of ‘parse_options’
image.c:137: error: ‘FALSE’ undeclared (first use in this function)
image.c:137: error: (Each undeclared identifier is reported only once
image.c:137: error: for each function it appears in.)
image.c:145: error: ‘struct anonymous’ has no member named ‘filename’
image.c:151: error: ‘struct anonymous’ has no member named ‘transparent’
image.c:153: error: ‘struct anonymous’ has no member named ‘pos’
image.c:154: error: ‘struct anonymous’ has no member named ‘x’
image.c:154: error: ‘struct anonymous’ has no member named ‘y’
Failed to compile image.c!
make[1]: *** [image.o] Error 1
make: *** [all] Error 1
make install
) je potrebné ako root spustiť aj program ldconfig
.
Inak v originálnej verzii sa glib nepoužíva, takže predpokladám, že sa pokúšaš skompilovať tú upravenú verziu. Aby to fungovalo je potrebné mierne upraviť makefile (aby sa tam pridali aj potrebné gdk knižnice). Napr. sa to môže upraviť tak, aby to vyzeralo nejako takto (upravujú sa len dva riadky, ostatné sú nezmenené):CPPFLAGS += ${CAIRO_CFLAGS} ${GLIB_CFLAGS} -I../../ -I../../libaosd `pkg-config gdk-2.0 --cflags` LDFLAGS += ${GLIB_LIBS} -L../../libaosd -laosd `pkg-config gdk-2.0 --libs`
SUBDIRS = libaosd ${TEXT_DIR} examplesčili výsledkem je kompilace všech příkladů.
bash$ make Entering directory libaosd. Successfully generated dependencies. Successfully compiled aosd.c. Successfully compiled aosd-internal.c. Successfully compiled aosd-main.c. Successfully linked libaosd.so. Leaving directory libaosd. Entering directory libaosd-text. Successfully generated dependencies. Successfully compiled aosd-text.c. Successfully linked libaosd-text.so. Leaving directory libaosd-text. Entering directory examples. Entering directory animation. Successfully generated dependencies. Successfully compiled animation.c. Successfully linked animation. Leaving directory animation. Entering directory scroller. Successfully generated dependencies. Successfully compiled scroller.c. Successfully linked scroller. Leaving directory scroller. Entering directory image. Successfully generated dependencies. Successfully compiled image.c. Successfully linked image. Leaving directory image.
Tiskni
Sdílej: