Update README.md and change new version link
This commit is contained in:
@@ -24,6 +24,7 @@ This color sheet was printed with CMYK PLA:
|
||||
|
||||
# Official links
|
||||
|
||||
#### Github Repository: <a href="https://github.com/sentientstardust-dev/OrcaSlicer-ImageMap"><img src="https://img.shields.io/badge/OrcaSlicer--ImageMap-181717?style=flat&logo=github&logoColor=white" width="300" alt="GitHub Logo"/> </a>
|
||||
#### Gitlab Repository: <a href="https://gitlab.com/sentient_stardust/OrcaSlicer-ImageMap"><img src="https://img.shields.io/badge/OrcaSlicer--ImageMap-181717?style=flat&logo=gitlab&logoColor=white" width="200" alt="GitLab Logo"/> </a>
|
||||
#### Downloads: <a href="https://gitlab.com/sentient_stardust/orcaslicer-imagemap/-/packages"><img src="https://img.shields.io/badge/Package_Repository-gray" alt="Package Repository"/> </a>
|
||||
|
||||
@@ -38,7 +39,7 @@ This color sheet was printed with CMYK PLA:
|
||||
# OrcaSlicer-ImageMap Features
|
||||
|
||||
### Texture Mapping
|
||||
- **Create Images on the surface of your 3D prints** - each layer alternates through a fixed CMYK (or other) pattern, only varying the amount of overhang around the edge of your print. This creates a smooth surface, printing your image texture on the model with no additional seams.
|
||||
- **Create Images on the side surfaces of your 3D prints** - each layer alternates through a fixed CMYK (or other) pattern, only varying the amount of overhang around the edge of your print. This creates a smooth surface, printing your image texture on the model with no additional seams.
|
||||
|
||||

|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace Slic3r {
|
||||
static const std::string VERSION_CHECK_URL = "https://gradients.garden/orcaslicer_imagemap/current_version.json";
|
||||
static const std::string VERSION_CHECK_URL_LEGACY = "https://check-version.orcaslicer.com/latest";
|
||||
static const std::string VERSION_CHECK_MODE = "platform_json";
|
||||
static const std::string VERSION_DOWNLOAD_URL = "https://gitlab.com/sentient_stardust/orcaslicer-imagemap/-/packages";
|
||||
static const std::string VERSION_DOWNLOAD_URL = "https://gitlab.com/sentient_stardust/orcaslicer-imagemap";
|
||||
static const std::string PROFILE_UPDATE_URL = "https://api.github.com/repos/OrcaSlicer/orcaslicer-profiles/releases/tags";
|
||||
static const std::string MODELS_STR = "models";
|
||||
|
||||
|
||||
@@ -1925,6 +1925,8 @@ void GLCanvas3D::render(bool only_init)
|
||||
|
||||
if (!is_initialized() && !init())
|
||||
return;
|
||||
if (m_reload_delayed)
|
||||
reload_scene(true);
|
||||
if (m_canvas_type == ECanvasType::CanvasView3D && m_gizmos.get_current_type() == GLGizmosManager::Undefined) {
|
||||
enable_return_toolbar(false);
|
||||
}
|
||||
@@ -2412,8 +2414,10 @@ void GLCanvas3D::reload_scene(bool refresh_immediately, bool force_full_scene_re
|
||||
if (m_canvas == nullptr || m_config == nullptr || m_model == nullptr)
|
||||
return;
|
||||
|
||||
if (!m_initialized)
|
||||
if (!m_initialized) {
|
||||
m_reload_delayed = true;
|
||||
return;
|
||||
}
|
||||
|
||||
_set_current();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user