mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	OrcaSlicer
This commit is contained in:
		
							parent
							
								
									3a80173533
								
							
						
					
					
						commit
						20f2b2cd0e
					
				
					 16 changed files with 46 additions and 46 deletions
				
			
		| 
						 | 
				
			
			@ -184,7 +184,7 @@ FULL_PATH_NAMES        = YES
 | 
			
		|||
# will be relative from the directory where doxygen is started.
 | 
			
		||||
# This tag requires that the tag FULL_PATH_NAMES is set to YES.
 | 
			
		||||
 | 
			
		||||
STRIP_FROM_PATH        = /Users/lijiang/lab/BambuStudio-SoftFever/
 | 
			
		||||
STRIP_FROM_PATH        = /Users/lijiang/lab/OrcaSlicer/
 | 
			
		||||
 | 
			
		||||
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
 | 
			
		||||
# path mentioned in the documentation of a class, which tells the reader which
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -236,7 +236,7 @@ else ()
 | 
			
		|||
        set(BIN_RESOURCES_DIR "${CMAKE_CURRENT_BINARY_DIR}/../resources")
 | 
			
		||||
    endif ()
 | 
			
		||||
    if (CMAKE_MACOSX_BUNDLE)
 | 
			
		||||
        set(BIN_RESOURCES_DIR "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/BambuStudio.app/Contents/Resources")
 | 
			
		||||
        set(BIN_RESOURCES_DIR "${CMAKE_CURRENT_BINARY_DIR}/$<CONFIG>/OrcaSlicer.app/Contents/Resources")
 | 
			
		||||
        set(MACOSX_BUNDLE_ICON_FILE Icon.icns)
 | 
			
		||||
        set(MACOSX_BUNDLE_BUNDLE_NAME "Bambu Studio")
 | 
			
		||||
        set(MACOSX_BUNDLE_SHORT_VERSION_STRING ${SLIC3R_VERSION})
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -38,7 +38,7 @@ using namespace nlohmann;
 | 
			
		|||
 | 
			
		||||
namespace Slic3r {
 | 
			
		||||
 | 
			
		||||
static const std::string VERSION_CHECK_URL = "https://api.github.com/repos/softfever/bambustudio-softfever/releases";
 | 
			
		||||
static const std::string VERSION_CHECK_URL = "https://api.github.com/repos/softfever/OrcaSlicer/releases";
 | 
			
		||||
static const std::string MODELS_STR = "models";
 | 
			
		||||
 | 
			
		||||
const std::string AppConfig::SECTION_FILAMENTS = "filaments";
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1887,7 +1887,7 @@ void GUI_App::init_download_path()
 | 
			
		|||
void GUI_App::init_app_config()
 | 
			
		||||
{
 | 
			
		||||
	// Profiles for the alpha are stored into the PrusaSlicer-alpha directory to not mix with the current release.
 | 
			
		||||
    SetAppName("BambuStudio-SoftFever");
 | 
			
		||||
    SetAppName("OrcaSlicer");
 | 
			
		||||
//	SetAppName(SLIC3R_APP_KEY "-alpha");
 | 
			
		||||
//  SetAppName(SLIC3R_APP_KEY "-beta");
 | 
			
		||||
//	SetAppDisplayName(SLIC3R_APP_NAME);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2538,7 +2538,7 @@ void MainFrame::init_menubar_as_editor()
 | 
			
		|||
 | 
			
		||||
    // help 
 | 
			
		||||
    append_menu_item(m_topbar->GetCalibMenu(), wxID_ANY, _L("Tutorial"), _L("Calibration help"),
 | 
			
		||||
        [this](wxCommandEvent&) { wxLaunchDefaultBrowser("https://github.com/SoftFever/BambuStudio-SoftFever/wiki/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
 | 
			
		||||
        [this](wxCommandEvent&) { wxLaunchDefaultBrowser("https://github.com/SoftFever/OrcaSlicer/wiki/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
 | 
			
		||||
        [this]() {return m_plater->is_view3D_shown();; }, this);
 | 
			
		||||
 | 
			
		||||
#else
 | 
			
		||||
| 
						 | 
				
			
			@ -2604,7 +2604,7 @@ void MainFrame::init_menubar_as_editor()
 | 
			
		|||
        [this]() {return m_plater->is_view3D_shown();; });
 | 
			
		||||
    // help
 | 
			
		||||
    append_menu_item(calib_menu, wxID_ANY, _L("Tutorial"), _L("Calibration help"),
 | 
			
		||||
        [this](wxCommandEvent&) { wxLaunchDefaultBrowser("https://github.com/SoftFever/BambuStudio-SoftFever/wiki/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
 | 
			
		||||
        [this](wxCommandEvent&) { wxLaunchDefaultBrowser("https://github.com/SoftFever/OrcaSlicer/wiki/Calibration", wxBROWSER_NEW_WINDOW); }, "", nullptr,
 | 
			
		||||
        [this]() {return m_plater->is_view3D_shown();; }, this);
 | 
			
		||||
    
 | 
			
		||||
    m_menubar->Append(calib_menu,wxString::Format("&%s", _L("Calibration")));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1239,7 +1239,7 @@ wxString OptionsGroup::get_url(const std::string& path_end)
 | 
			
		|||
    }
 | 
			
		||||
    // Softfever: point to sf wiki for seam parameters
 | 
			
		||||
    if (path_end == "Seam") {
 | 
			
		||||
        return wxString::Format(L"https://github.com/SoftFever/BambuStudio-SoftFever/wiki/%s", from_u8(path_end));
 | 
			
		||||
        return wxString::Format(L"https://github.com/SoftFever/OrcaSlicer/wiki/%s", from_u8(path_end));
 | 
			
		||||
    }
 | 
			
		||||
    else {
 | 
			
		||||
        //BBS
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue