summaryrefslogtreecommitdiffhomepage
path: root/examples/text
AgeCommit message (Collapse)Author
2022-09-22Update text_codepoints_loading.cRay
2022-09-10Minor format tweaksRay
2022-08-02Remove unneeded commentRay
2022-08-02Remove line breaksRay
2022-07-20REVIEWED: examples descriptionsRay
2022-07-07ADDED: example: `text_codepoints_loading`Ray
2022-06-21Added new comment to examplesRay
2022-06-12Update text_font_filters.cRay
2022-06-11WARNING: BREAKING: REDESIGNED: Filepath loading APIRay
REDESIGNED: `LoadDirectoryFiles()` ADDED: `LoadDirectoryFilesEx()` REDESIGNED: `LoadDroppedFiles()` ADDED: `IsPathFile()` This BIG BREAKING change simplifies the functions and gives more control to the user: - A new `struct FilePathList` has been added to avoid exposing complex pointers. - User is responsible of memory loading/unloading - Filepaths loading support recursive directories and file extension filters
2022-06-06WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()`Ray
RENAMED: `ClearDroppedFiles()` to `UnloadDroppedFiles()`
2022-06-02Update text_draw_3d.cRay
2021-12-01Update LICENSE.md (#2179)Tobias Berger
Fix typo in link
2021-10-25Fix VC warnings for examples (#2085)Jeffery Myers
2021-10-19Remove trailing spacesraysan5
2021-10-17Reviewed makefile and examples buildingraysan5
2021-09-02REVIEWED: GlyphsRay
2021-09-01REVIEWED: Naming: length vs sizeRay
2021-09-01WARNING: BREAKING: RENAMED: Font struct variablesRay
RENAMED: GetCodepointsCount() -> GetCodepointCount() RENAMED: GetTouchPointsCount() -> GetTouchPointCount()
2021-08-26REVIEWED: Examples compilationRay
2021-08-25Renamed some static functions for more consistent namingRay
2021-08-11WARNING: REMOVED: DrawTextRec() and DrawTextRecEx()raysan5
- DrawTextRec() and DrawTextRecEx() have been moved to example, those functions could be very specific depending on user needs so it's better to give the user the full source in case of special requirements instead of allowing a function with +10 input parameters.
2021-07-28Replace TABS by 4 spacesraysan5
2021-07-16Improve assets license informationraysan5
2021-06-26WARNING: REMOVED: Some deprecated function names mappingraysan5
Some functions/values have been deprecated for long time but some mapping was kept for convenience. Some of those mappings have been removed...
2021-06-23WARNING: BREAKING: Functions renamed!Ray
RENAMED: GetCodepoints() -> LoadCodepoints(), now codepoint array data is loaded dynamically instead of reusing a limited static buffer. ADDED: UnloadCodepoints() to safely free loaded codepoints RENAMED: GetNextCodepoint() -> GetCodepoint()
2021-06-10Added missing null terminator (#1820)Francisco Javier Andrés Casas Barrientos
Added missing null terminator when adding characters to the string, otherwise garbage values are read (often zeros which are equal to '\0', but not every time). This error results in random characters appearing in the text box every one in a while: ``` asdfg??? ll?? ``` It is corrected with the proposed fix. This problem was observed by my student, Gonzalo Rivera Lazo.
2021-05-31Update text_draw_3d.cRay
2021-05-08Added support for additional mouse buttons (#1753)Lambert Wang
* Added support for additional mouse buttons * Renamed mouse button enum Co-authored-by: Lambert Wang <[email protected]>
2021-04-25Fixes for 64 bit typecast warnings (#1733)Jeffery Myers
2021-04-22Remove trail spacesRay
2021-04-19Added zoom independent sharp edges to the SDF text example. (#1727)Stephan Soller
2021-03-28REVIEWED: text_draw_3d, code formattingraysan5
2021-03-28Added draw 3d text example (#1689)Vlad Adrian
2021-03-23Update text_raylib_fonts.cRay
2021-03-23Update text_raylib_fonts.cRay
2021-03-23[Examples] Warning fixes (pt 1) (#1668)Jeffery Myers
* Fix some warnings in examples. * cleanups from review Co-authored-by: Jeffery Myers <[email protected]>
2021-03-19Update text_input_box.cRay
2021-03-03Update text_font_filters.cRay
2020-12-24Updated several files while porting examples to webraysan5
2020-12-18WARNING: GetKeyPressed() <-> GetCharPressed() #1336Ray
Previous GetKeyPressed() method was actually returning unicode codepoints equivalent values instead of the key-code of the pressed key. So, it has been replaced by GetCharPressed(), returning unicode codepoints and GetKeyPressed() now returns key-codes.
2020-12-13Fixed #1455 (#1456)Alexander Buhl
* Fixed #1455 Fixed writing out of array bounds Adjusted FPS comment to match value Deleted unused function at the end, which has never been in use in the history of this file * Fixed #1455 Readded the function
2020-10-21Reviewed PR #1407Ray
2020-10-21Added desktop cursor getter and setter functions (#1407)Chance Snow
* [core] Added desktop cursor getter and setter functions * Example: Set mouse cursor in text input box * Setup standard cursors _after_ GLFW window initialization * Remove old `int GetMouseWheelMove` declaration
2020-09-14Review memory loading functions signesnessRay
2020-09-07REDESIGNED: ColorFromHSV()raysan5
Replaced Vector3 by direct values, easier to use and understand
2020-08-16RENAMED: FormatText() -> TextFormat()raysan5
This function was renamed for consistency in raylib 3.0, just unified all examples to use TextFormat() instead of FormatText()
2020-06-02[examples] text_font_sdf - Corrected bugraysan5
2020-05-28resources PNG chunks cleaningraysan5
2020-05-28Renamed some resources for naming consistencyraysan5
2020-05-28Remove unused fontraysan5