16fbca2e8b 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `shapes_draw_rectangle_rounded` --> `shapes_rounded_rectangle_drawing`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								266b8efbd6 
								
							
								 
							
						 
						
							
							
								
								REXM: Reviewed examples inconsistencies  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								688cf680c0 
								
							
								 
							
						 
						
							
							
								
								Update examples_list.txt  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								25f4e544d1 
								
							
								 
							
						 
						
							
							
								
								REXM: UPDATED: Examples source code header info, aligned with name  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								4020885c35 
								
							
								 
							
						 
						
							
							
								
								REXM: Reviewed `UpdateSourceMetadata()`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								8544020023 
								
							
								 
							
						 
						
							
							
								
								Update required files for example rename  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								5373ede25c 
								
							
								 
							
						 
						
							
							
								
								REXM: Review examples source code header metadata for consistency  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								e1dfb4cd4e 
								
							
								 
							
						 
						
							
							
								
								Update shaders_normal_map.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								1bbd4c3566 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `shapes_draw_ring` --> `shapes_ring_drawing`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								c0234e5e3d 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `textures_sprite_anim` --> `textures_sprite_animation`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								02d004274c 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								2d19abb2cf 
								
							
								 
							
						 
						
							
							
								
								REXM: REVIEWED: Examples header info inconsistencies  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								e5cef3c0d8 
								
							
								 
							
						 
						
							
							
								
								REXM: Reviewed examples source code headers metadata  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								68a678a549 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								16a0b966c3 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								4af48fba74 
								
							
								 
							
						 
						
							
							
								
								REXM: REVIEWED: `UpdateSourceMetadata()` and `TextReplaceBetween()`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								446f015ac5 
								
							
								 
							
						 
						
							
							
								
								Review formating  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								b2684a9c38 
								
							
								 
							
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/raysan5/raylib  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								86ec1c08c2 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
								
								
							
							
								
							
								bd810368b0 
								
									
								
							
								 
							
						 
						
							
							
								
								Fixing base64 decoding error when input string is bad ( #5170 )  
							
							The following code would crash the previous version when calling MemFree:
	// 53 * A
        const char maliciousBase64Input[] = "AAAAAAAAAAAAAAAAAAAAAAAA"
		"AAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
        int decodedSize = 0;
        unsigned char *decodedData = DecodeDataBase64(
		maliciousBase64Input, &decodedSize);
        if (decodedData) {
		MemFree(decodedData);
        }
The reason is a lack of array bound checks in the decoding loop, which
corrupted here the heap (though this is platform dependent).
Adding the bound checks here prevents the memory corruption.
Tested with encoding random data of sizes 0-1023 and comparing it
with the decoded result. 
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								eb816898e5 
								
							
								 
							
						 
						
							
							
								
								Revert "Added creation-review years to examples"  
							
							This reverts commit b5e25916fc 
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								84e606b8c7 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								1d4d8da3e9 
								
							
								 
							
						 
						
							
							
								
								Removed temp code to generate updated examples_list.txt  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								3e59797a68 
								
							
								 
							
						 
						
							
							
								
								REXM: ADDED: Read examples years created/reviewed info  
							
							ADDED: `UpdateSourceMetadata()` 
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								424cdebda5 
								
							
								 
							
						 
						
							
							
								
								Updated examples_list.txt to include example year created/reviewed  
							
							Reviewed star used, aligned with empty star and examples header 
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								b5e25916fc 
								
							
								 
							
						 
						
							
							
								
								Added creation-review years to examples  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
								
								
							
							
								
							
								47bdfb91a2 
								
									
								
							
								 
							
						 
						
							
							
								
								Update README.md  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								8e52aee853 
								
							
								 
							
						 
						
							
							
								
								Update rtext.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								389800fd34 
								
							
								 
							
						 
						
							
							
								
								REXM: REVIEWED: `ScanExampleResources()`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								43305c4865 
								
							
								 
							
						 
						
							
							
								
								REXM: ADDED: `RemoveVSProjectFromSolution()`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								d980642421 
								
							
								 
							
						 
						
							
							
								
								Merge branch 'master' of  https://github.com/raysan5/raylib  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								51aa8776bb 
								
							
								 
							
						 
						
							
							
								
								Update rtext.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								55a1c58b64 
								
							
								 
							
						 
						
							
							
								
								Update raylib_api.* by CI  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								0203a47bf9 
								
							
								 
							
						 
						
							
							
								
								REDESIGNED: `LoadTextLines()`/`UnloadTextLines()`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								8116ebd9bb 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								a51cb7fe30 
								
							
								 
							
						 
						
							
							
								
								REXM: Updated some examples inconsistencies  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								91bc8d9b10 
								
							
								 
							
						 
						
							
							
								
								REXM: Remove duplicate entries on examples list on Update process  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								7646d08751 
								
							
								 
							
						 
						
							
							
								
								Updated some examples with inconsistencies  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								fb42819eab 
								
							
								 
							
						 
						
							
							
								
								Added project to folder in solution  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								d418704c0b 
								
							
								 
							
						 
						
							
							
								
								REXM: Update examples collection  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								293477e2b5 
								
							
								 
							
						 
						
							
							
								
								Reorganized examples list  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								6d7dd43c13 
								
							
								 
							
						 
						
							
							
								
								Update core_input_gestures_testbed.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								e21093d434 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `core_input_gestures_web` --> `core_input_gestures_testbed`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								c17f82a78c 
								
							
								 
							
						 
						
							
							
								
								REMOVED: `core_basic_window_web`  
							
							The example is not following examples conventions and it will be moved to `others` with a new name 
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								d97e0a8ac7 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `shaders_texture_drawing` --> `shaders_texture_rendering`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								427b0d2653 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								5f9465d569 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								d79f294af0 
								
							
								 
							
						 
						
							
							
								
								Update rexm.c  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								41dee9e9f9 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `shaders_fog` --> `shaders_fog_rendering`  
							
							
								
							
							
						 
						hace 1 mes  
				
					
						
							
							
								 
						
							
							
							
								
							
								3cbe911613 
								
							
								 
							
						 
						
							
							
								
								REXM: RENAME: example: `models_billboard` --> `models_billboard_rendering`  
							
							
								
							
							
						 
						hace 1 mes