rubidium42 
							
						 
					 
					
						
						
							
						
						72ec81325b 
					 
					
						
						
							
							Cleanup: remove unneeded temporary variables and casts  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						0d6597a9e6 
					 
					
						
						
							
							Codechange: move bits of SettingDesc down to the appropriate sub classes  
						
						... 
						
						
						
						And by doing so remove the hack where ints were put into pointers so "def" could either be an int or a string 
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						f58611298e 
					 
					
						
						
							
							Codechange: use IntSettingDesc in the settings GUI  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						f6723b53da 
					 
					
						
						
							
							Codechange: make parsing of IniItems overridable functions of SettingDesc  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						1f8ff0e4f9 
					 
					
						
						
							
							Codechange: make Write_ValidateSetting a function of StringSettingDesc  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						be28c95b30 
					 
					
						
						
							
							Codechange: make Write_ValidateSetting a function of IntSettingDesc  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						024e584904 
					 
					
						
						
							
							Cleanup: use (config) formatting for console settings functions  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						c3cd4a683d 
					 
					
						
						
							
							Codechange: make formatting of values into strings a method of SettingDesc  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						d8125fa46e 
					 
					
						
						
							
							Codechange: make sub classes of SettingDesc for the different types of settings  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						91b3d697c5 
					 
					
						
						
							
							Codechange: make SettingDesc an instance in the setting table to allow for sub classes  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						cf6b91f30f 
					 
					
						
						
							
							Codechange: do not use SettingDescBase directly when not needed  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						3bb6ce8827 
					 
					
						
						
							
							Codechange: use initializer_lists for the settings tables  
						
						... 
						
						
						
						Not using vectors as those require copying from the initializer list and that
makes unique_ptrs to the actual SettingDesc objects later impossible. 
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						425d50372f 
					 
					
						
						
							
							Codechange: let SettingDesc extend SettingDescBase  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						ac99a38175 
					 
					
						
						
							
							Cleanup: remove and/or fix some confusing comments  
						
						... 
						
						
						
						The comments for SettingDescType; it is a byte, so not 4 bytes and since it is not a flag there are about 250 other possibilities left instead of 9.
SettingGuiFlag is uint16 so has 2 bytes allocated.
SettingDescGlobVarList and related comments imply that global vars cannot be used elsewhere, but they are used for settings just fine. Even then the type is not used anywhere else but the definition of the table. 
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						8ffb4122df 
					 
					
						
						
							
							Codechange: just pass the SettingDesc to SetSettingValue and remove distinction between (non)company  
						
						
						
						
					 
					
						2021-05-27 18:49:43 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						db54e20825 
					 
					
						
						
							
							Change: mark copy-assignment as deleted for classes with a copy-constructor that is not trivial  
						
						... 
						
						
						
						This to prevent the default copy-assignment getting used when during the assignment also some other memory needs to be allocated as that would otherwise be freed. 
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						9197de39e4 
					 
					
						
						
							
							Cleanup: remove unused copy-constructor without copy-assignment  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						6fe4d4ad7b 
					 
					
						
						
							
							Codechange: linkgraph always iterates with NodeIDs over the Size(), so make Size() the same type to prevent infinite loops  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						ed9e38221a 
					 
					
						
						
							
							Cleanup: remove dead code; ++ on ostreambuf_iterator is a no-op  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						b280f16316 
					 
					
						
						
							
							Codechange: remove unneeded comparison and casts  
						
						... 
						
						
						
						Division by resize_y is already yielding an unsigned number, so when clicking in the WD_FRAMERECT_TOP you would already get a huge value, so sel would never be negative. So, leave sel an unsigned number and remove the <= check. 
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						b9797a81c0 
					 
					
						
						
							
							Codechange: pass large parameter by reference instead of value, especially in a recursive function  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						b791ffc6de 
					 
					
						
						
							
							Fix: do not hide parameter by local variable with the same name  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						eaa3df1e8e 
					 
					
						
						
							
							Fix: part of a tile might not be marked dirty upon terraforming  
						
						
						
						
					 
					
						2021-05-27 18:30:56 +02:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						35dbd53682 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						russian: 3 changes by Ln-Wolf
slovak: 3 changes by FuryPapaya
spanish: 3 changes by MontyMontana 
						
						
					 
					
						2021-05-26 19:32:03 +00:00 
						 
				 
			
				
					
						
							
							
								Owen Rudge 
							
						 
					 
					
						
						
							
						
						3ce7e31f64 
					 
					
						
						
							
							Feature: Sign Windows builds  
						
						
						
						
					 
					
						2021-05-26 13:40:44 +01:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						c96945fa2b 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						swedish: 27 changes by joeax910
spanish (mexican): 1 change by absay
korean: 4 changes by telk5093
german: 3 changes by Wuzzy2
finnish: 3 changes by hpiirai
french: 3 changes by glx22
portuguese: 3 changes by azulcosta 
						
						
					 
					
						2021-05-25 19:16:10 +00:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						6b24cd2516 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						swedish: 50 changes by joeax910 
						
						
					 
					
						2021-05-24 19:18:21 +00:00 
						 
				 
			
				
					
						
							
							
								milek7 
							
						 
					 
					
						
						
							
						
						7607277380 
					 
					
						
						
							
							Fix: Network on Haiku, remove old code for BeOS  
						
						
						
						
					 
					
						2021-05-24 08:56:18 +02:00 
						 
				 
			
				
					
						
							
							
								milek7 
							
						 
					 
					
						
						
							
						
						886f5c104a 
					 
					
						
						
							
							Fix: Workarounds for BeMidi driver to work properly on Haiku  
						
						
						
						
					 
					
						2021-05-24 08:56:18 +02:00 
						 
				 
			
				
					
						
							
							
								milek7 
							
						 
					 
					
						
						
							
						
						36bcd2956a 
					 
					
						
						
							
							Fix: Building on Haiku  
						
						
						
						
					 
					
						2021-05-24 08:56:18 +02:00 
						 
				 
			
				
					
						
							
							
								glx22 
							
						 
					 
					
						
						
							
						
						7c0762da65 
					 
					
						
						
							
							Change: Show what is affected by "wagon removal" toggle  
						
						
						
						
					 
					
						2021-05-23 21:51:58 +02:00 
						 
				 
			
				
					
						
							
							
								glx22 
							
						 
					 
					
						
						
							
						
						e99352a5d9 
					 
					
						
						
							
							Change: Unhide Ctrl effect for group replace protection  
						
						
						
						
					 
					
						2021-05-23 21:51:58 +02:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						64be66216c 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						chinese (traditional): 3 changes by benny30111 
						
						
					 
					
						2021-05-23 19:20:55 +00:00 
						 
				 
			
				
					
						
							
							
								Jonathan G Rennison 
							
						 
					 
					
						
						
							
						
						a896753ecc 
					 
					
						
						
							
							Fix   #9264 : Do not attach temporary wagons to free wagon chains when autoreplacing  
						
						
						
						
					 
					
						2021-05-23 21:05:55 +02:00 
						 
				 
			
				
					
						
							
							
								Vít Šefl 
							
						 
					 
					
						
						
							
						
						33d99d27f4 
					 
					
						
						
							
							Fix: Encountering two-way red signals could prune unrelated branches.  
						
						... 
						
						
						
						The intermediate node branch is now only pruned if the node is on the
path leading to the two-way red signal. 
						
						
					 
					
						2021-05-23 20:19:39 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Lutz 
							
						 
					 
					
						
						
							
						
						97722931a9 
					 
					
						
						
							
							Fix: [OpenGL] Increase timeout when waiting for the GPU to be done with the drawing buffer.  
						
						... 
						
						
						
						The old timeout could be too short if v-sync was on on lower refresh rates. 
						
						
					 
					
						2021-05-23 12:22:59 +02:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						4f7d6cf1ba 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						japanese: 4 changes by akaregi
korean: 2 changes by telk5093 
						
						
					 
					
						2021-05-22 19:12:46 +00:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						7b58bfaf6c 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						japanese: 42 changes by akaregi 
						
						
					 
					
						2021-05-21 19:16:19 +00:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						08e71eed8b 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						japanese: 74 changes by akaregi 
						
						
					 
					
						2021-05-20 19:11:15 +00:00 
						 
				 
			
				
					
						
							
							
								Patric Stout 
							
						 
					 
					
						
						
							
						
						3477405e86 
					 
					
						
						
							
							Change: [Actions] use newly created Actions instead of custom shell-scripting ( #9284 )  
						
						
						
						
					 
					
						2021-05-20 19:12:33 +02:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						ca9f9b84d3 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						japanese: 239 changes by akaregi, 18 changes by scabtert 
						
						
					 
					
						2021-05-19 19:09:28 +00:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						145f2fc43a 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						indonesian: 14 changes by NinjaQuince 
						
						
					 
					
						2021-05-18 19:10:56 +00:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						7caceb26f7 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						korean: 1 change by telk5093
indonesian: 55 changes by NinjaQuince 
						
						
					 
					
						2021-05-17 19:08:25 +00:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						e2dc5aa83e 
					 
					
						
						
							
							Codechange: [Network] Use C++ string functions to generate company password hash  
						
						
						
						
					 
					
						2021-05-17 16:09:10 +02:00 
						 
				 
			
				
					
						
							
							
								translators 
							
						 
					 
					
						
						
							
						
						e2e06633c9 
					 
					
						
						
							
							Update: Translations from eints  
						
						... 
						
						
						
						norwegian (bokmal): 1 change by Anolitt
slovak: 1 change by FuryPapaya 
						
						
					 
					
						2021-05-16 19:07:45 +00:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						4d246cda73 
					 
					
						
						
							
							Codechange: [Network] Let NetworkClientInfo use std::string  
						
						
						
						
					 
					
						2021-05-16 10:07:51 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						83679c0e57 
					 
					
						
						
							
							Codechange: [Network] Use std::string to populate the client list for company stats  
						
						
						
						
					 
					
						2021-05-16 10:07:51 +02:00 
						 
				 
			
				
					
						
							
							
								rubidium42 
							
						 
					 
					
						
						
							
						
						e90b2649b6 
					 
					
						
						
							
							Codechange: [Network] Let NetworkCompanyInfo use std::string  
						
						
						
						
					 
					
						2021-05-16 10:07:51 +02:00 
						 
				 
			
				
					
						
							
							
								Rubidium 
							
						 
					 
					
						
						
							
						
						5c01f9ea52 
					 
					
						
						
							
							Fix   #9267 ,  47a99bb: [Squirrel] Heap use after free  
						
						... 
						
						
						
						Due to 47a99bb 
						
						
					 
					
						2021-05-16 10:07:38 +02:00 
						 
				 
			
				
					
						
							
							
								glx22 
							
						 
					 
					
						
						
							
						
						e66e25ff71 
					 
					
						
						
							
							Fix   #9269 ,  f6d5c01: Hide windows without abusing WC_INVALID  
						
						
						
						
					 
					
						2021-05-15 21:08:49 +02:00