mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	Check loading of blacklisted dlls and show warning dialog at startup. Also show these dlls in sysinfo dialog.
This commit is contained in:
		
							parent
							
								
									4f161607c7
								
							
						
					
					
						commit
						fa2568a5e3
					
				
					 11 changed files with 172 additions and 5 deletions
				
			
		|  | @ -775,6 +775,7 @@ bool GUI_App::on_init_inner() | |||
| 
 | ||||
| //     Slic3r::debugf "wxWidgets version %s, Wx version %s\n", wxVERSION_STRING, wxVERSION;
 | ||||
| 
 | ||||
| 
 | ||||
|     if (is_editor()) { | ||||
|         std::string msg = Http::tls_global_init(); | ||||
|         std::string ssl_cert_store = app_config->get("tls_accepted_cert_store_location"); | ||||
|  |  | |||
|  | @ -17,7 +17,6 @@ | |||
| 
 | ||||
| #include "libslic3r/Config.hpp" | ||||
| 
 | ||||
| 
 | ||||
| namespace Slic3r { | ||||
| namespace GUI { | ||||
| 
 | ||||
|  |  | |||
|  | @ -14,6 +14,7 @@ | |||
| #include "GUI_App.hpp" | ||||
| #include "MainFrame.hpp" | ||||
| #include "wxExtensions.hpp" | ||||
| #include "../libslic3r/LibraryCheck.hpp" | ||||
| 
 | ||||
| #ifdef _WIN32 | ||||
| 	// The standard Windows includes.
 | ||||
|  | @ -149,7 +150,8 @@ SysInfoDialog::SysInfoDialog() | |||
|             "</font>" | ||||
|             "</body>" | ||||
|             "</html>", bgr_clr_str, text_clr_str, text_clr_str, | ||||
|             get_mem_info(true) + "<br>" + wxGetApp().get_gl_info(true, true) + "<br>Eigen vectorization supported: " + Eigen::SimdInstructionSetsInUse()); | ||||
|             get_mem_info(true) + "<br>" + wxGetApp().get_gl_info(true, true) + "<br>Eigen vectorization supported: " + Eigen::SimdInstructionSetsInUse() | ||||
|             + "<br><br><b>Blacklisted loaded libraries:</b><br>" + LibraryCheck::get_instance().get_blacklisted_string().c_str()); | ||||
|         m_opengl_info_html->SetPage(text); | ||||
|         main_sizer->Add(m_opengl_info_html, 1, wxEXPAND | wxBOTTOM, 15); | ||||
|     } | ||||
|  |  | |||
|  | @ -29,7 +29,6 @@ private: | |||
|     void onCopyToClipboard(wxEvent &); | ||||
|     void onCloseDialog(wxEvent &); | ||||
| }; | ||||
| 
 | ||||
| } // namespace GUI
 | ||||
| } // namespace Slic3r
 | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 David Kocik
						David Kocik