This commit is contained in:
olikraus 2016-12-18 20:54:57 +01:00
parent e5eb956796
commit 233dbfaf21
3 changed files with 23 additions and 2 deletions

View File

@ -66,7 +66,7 @@ https://github.com/olikraus/u8g2 ChangeLog
* Speed improvement (issue 96)
2016-12-12 v2.8.5 olikraus@gmail.com
* Bugfix for issue 96 (issue 106)
2016-12-xx v2.9.x olikraus@gmail.com
2016-12-18 v2.9.0 olikraus@gmail.com
* Speed improvement for AVR/KS0108 (issue 104)
* Support for UC1604 (issue 111)
* Support for PCD8544/Nokia Display (issue 107)

View File

@ -187,6 +187,27 @@ int main(void)
tga_is_transparent = 0;
}
tga_save_png("u8x8_draw_tile.png");
u8x8_ClearDisplay(u8g2_GetU8x8(&desc));
u8x8_ClearDisplay(&u8x8);
u8x8_SetPowerSave(&u8x8, 0);
u8x8_SetInverseFont(&u8x8, 0);
//u8x8_SetFont(&u8x8, u8x8_font_pressstart2p_f);
u8x8_SetFont(&u8x8, u8x8_font_amstrad_cpc_extended_f);
u8x8_DrawString(&u8x8, 1, 1, "U8x8");
u8x8_Draw2x2String(&u8x8, 1, 3, "U8x8");
tga_is_transparent = 1;
u8g2_FirstPage(&desc);
do
{
u8g2_SetFont(&desc, u8g2_font_helvB18_tf);
ra(1,1, "x=1, y=1");
ra(1,3, "x=1, y=3");
} while( u8g2_NextPage(&desc) );
tga_is_transparent = 0;
tga_save_png("u8x8_2x2.png");
return 0;
}

View File

@ -1,2 +1,2 @@
# without 'v' prefix
echo -n "2.8.5"
echo -n "2.9.0"