Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-09Set the width of model loading drop-down to the max of all elementsGhostkeeper
Then set the elements to be equal to that width, so they fill the complete width of the drop-down. Contributes to issue CURA-9143.
2022-04-20Upgrade SDK version to 8.0.0 for Cura 5.0upgrade_sdk_to_800Remco Burema
2022-04-08Replace `RecolorImage` with `ColorImage`c.lamboo
CURA-8640
2022-04-01Popup will now resize based on the implicitWidth/implicitHeight of it's ↵j.delarago
children. This causes a binding loop when using layouts like Column. To resolve this the height/width of the popup in ExpandablePopup can now be set explicitly with contentWidth and contentHeight For ExpandablePopups with contentItems that are not Layouts the implicitWidth/implicitHeight can be set directly in the contentItem. CURA-8640
2021-11-10Remove more references to old controlsJaime van Kessel
2021-11-10Replace usage of controls label with our custom labelJaime van Kessel
This prevents copy pasting a bunch of parameters that we set by default
2021-07-21Remove the "Open file" label from the open file dropdown menuKonstantinos Karmas
This will make the translations more reasonable (instead of translating "open file" and "from Disk" separately, which could make the some translation results making less sense. CURA-8411
2021-07-12Reduce margins of options in the open file drop-downGhostkeeper
This was a desire from the developer. It shouldn't be consistent with the printer selector. The margins being all the same is more important. Contributes to issue CURA-8008.
2021-07-09Align layout of providers with machine selectorGhostkeeper
It's quite different in detail because there is a lot less content to show here (no machine type, icons, etc), but the basics are the same now. One possible issue is that the button doesn't extend all the way to the right, so you can't click everywhere on the shortest item. I'll see if that can still be fixed. Contributes to issue CURA-8008.
2021-07-09Add list of open file providers to submenuGhostkeeper
The layout isn't quite there yet, but it mostly works and I want to have a save point to return to if I tinker too much. Contributes to issue CURA-8008.
2021-07-09Add header, and make popup grow to its contentsGhostkeeper
It was quite a hassle to allow the column to grow to the size of its contents. For some reason, things update the size to 0. And the size updates again once the pop-up actually gets opened for the first time, because then the column actually gets populated lazily. Contributes to issue CURA-8008.
2021-07-09Show either openFileButton or openFileMenu, depending on provider countGhostkeeper
If there's just 1 provider, show the button. If there are multiple, show the menu. If there are 0, also show the button but disable the button. The behaviour is not yet implemented though. It doesn't actually look at which providers are available and what they do. Contributes to issue CURA-8008.
2021-07-09Move pop-up code to external item to re-use ExpandablePopup elementGhostkeeper
All of what we were about to implement is already implemented in ExpandablePopup. So let's re-use that one. That guarantees that it looks consistent too. Contributes to issue CURA-8008.
2021-07-09Correct chevron size and colourGhostkeeper
This is the same as what ExpandablePopup does. Contributes to issue CURA-8008.
2021-07-09Move padding to only be around rowGhostkeeper
Not around the individual icons. This way the chevron can be placed next to the icon closer. Contributes to issue CURA-8008.
2021-07-08Add chevron to select where to load models fromGhostkeeper
The chevron looks a little big now. No worries, we can fix that. Contributes to issue CURA-8008.
2021-07-08Allow open file button to resize depending on content itemsGhostkeeper
This re-links the widths, heights and paddings such that we can later change the width of the button depending on its contents. However there is a complication: Buttons automatically change the size of the contents based on the size of the button minus its padding. So making the size of the button in turn depend on its contents causes a binding loop. To get around this binding loop, we need to manually calculate the size of the button, such that the size of the contents ends up exactly right. Contributes to issue CURA-8008.
2021-07-07Align sizes of prepare and preview menusGhostkeeper
For some reason, the prepare menu is still one pixel too small. I think it's got to do with that one being a layout rather than a normal row. Contributes to issue CURA-8202.
2021-07-01Set header border and color by default in ExpandablePopup and ComponentKonstantinos Karmas
CURA-8202
2021-07-01Remove DropShadow from ExpandablePopup and ExpandableComponentKonstantinos Karmas
Since they are not used anywhere anymore CURA-8202
2021-06-30Add medium quality "Folder" iconKonstantinos Karmas
CURA-8202
2021-06-29Remove unused importKonstantinos Karmas
CURA-8013
2021-06-29Merge branch 'master' into CURA-8013_Adjust_sizes_of_header_and_toolbarKonstantinos Karmas
2021-06-29Calculate the width of the header items only onceKonstantinos Karmas
CURA-8013
2021-06-28Replace the shadow of the PrepareMenu with a borderKonstantinos Karmas
In order for that to be possible, the background border of the ExpandablePopup and the ExpandableComponent had to be exposed. In addition, since in the `RowLayout` the `ConfigurationMenu` and the `MachineSelector` both draw a border around them, it means that there will be a double "divider" (one border line from each button). To overcome that, we set the spacing of the `RowLayout` as a `- border_width`, which ensures then that there will be only a single line of border between the two adjacent buttons. CURA-8013
2021-06-28Unrevert new icon set for all of Cura's interfaceGhostkeeper
We created a new set of icons for Cura. These icons had to be reverted though because they weren't working out in the interface for the last release yet. This unreverts them, basically adding them back hoping that we'll get them fixed in time for the next release. Contributes to issue CURA-8342. Revert "Revert "Fix merge conflict"" This reverts commit bb20e3307f43edc1ff53cb154d2351ddfe39e158. Revert "Revert "Merge pull request #9716 from Ultimaker/CURA-8010_new_icons"" This reverts commit 70e4e9640e561e18a12870f30c905203ce8ccee7. Revert "Revert "Fix typo in icon name"" This reverts commit 38ce22ba7c3f40b971bc6e1e0a8e776ca9d51512. Revert "Revert "Add list for deprecated icons"" This reverts commit 119a957e7f978dbf1ddbcb3b0005bf38e8fed943. Revert "Revert "Add Function icon"" This reverts commit 760726cf0bb953bb1b0fc277b448f419d4bd2544. Revert "Revert "Switch out inherit icon"" This reverts commit 26afff609381e2004d194c280f504b6226859bd3. Revert "Revert "Merge branch 'CURA-8205_Introduce_new_icons_in_Cura' of github.com:Ultimaker/Cura"" This reverts commit 6483db3d47ee052c1a966cdee3af7190577a5769. Revert "Fix incorrect icons" This reverts commit 02a4ade2a50a943ff36fd4895bdc9261cf2133eb.
2021-06-28Make the machineSelection header adjust its widthKonstantinos Karmas
Whenever the window gets resized, the machineSelector header will now change it size, similar to the configurationSelector next to it. CURA-8013
2021-06-17Now unused API field only took integers originally.Remco Burema
We want to keep it this way so people can still make plugins work for older versions of Cura, like 3.6, where the 'api' field with just a single major version, instead of the 'supported_sdk_versions', which can be either a version-string like '7.6.0' or a list of version strings.
2021-06-15Update SDK/API from 7.5.0 to 7.6.0 for 4.10Remco Burema
CURA-8320
2021-05-27Revert "Merge pull request #9716 from Ultimaker/CURA-8010_new_icons"Jaime van Kessel
This reverts commit 6120d8a054b8c04bf90b8b3d3cb219d691bece2f, reversing changes made to 95652556fef90f70adbf25bfa9bd3b8af7220d4a.
2021-04-26Update Iconsjelle Spijker
Subdivided the new icons in 3 size categories. As requested by UX Used the company naming scheme for uniformity and easy recognition. Known issues: - Top/Bottom category wasn't taken into account by UX at the time. Since this is a recent addition. Both the Walls and Top/Bottom will be updated. - Cloud/Network connection icons 12px don't render correctly. Due to the theme-ing. - Extruder Icons do not render correctly. CURA-8010_new_icons
2021-04-06Increment SDK version to 7.5.0Ghostkeeper
The Cura 4.9 release will have expanded functionality. If you have a plug-in that uses this functionality, marking it as using SDK 7.5.0 will notify older Cura releases that they can't use that plug-in.
2020-10-22Up the SDK version to 7.4.0Kostas Karmas
In preparation for release of the 4.8. CURA-7795
2020-08-07Update the SDK version to 7.3.0 for 4.7Kostas Karmas
CURA-7641
2020-05-08Convert doxygen to rst for Prepare, Preview, RemovableOutputDeviceNino van Hooff
2020-04-21Update missed sdk versions from 7.1 to 7.2.0 for Cura 4.6Nino van Hooff
CURA-7383
2020-03-20Fix binding loop in action panel widgetGhostkeeper
This widget can't set its width to the width of its children, since its children anchor to its right-hand side which depends on the width. This fixes the following warning in the log: 2020-03-20 14:25:20,351 - WARNING - [MainThread] UM.Qt.QtApplication.__onQmlWarning [406]: file:///home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/PrepareMain.qml:16:5: QML ActionPanelWidget: Binding loop detected for property width Done during Turbo Testing and Tooling.
2020-02-10Bump SDK version number of Cura 4.5 to 7.1Ghostkeeper
We've added new things to our API. This allows plug-in developers to use them. Contributes to issue CURA-7205.
2019-10-21Change SDK version to 7.0.0Nino van Hooff
CURA-6858
2019-09-21plugins: Reweighting stagesThomas Karl Pietrowski
In theory it should be possible to add stages, but there is no possiblity to add any other stage in between. Therefore I moved the weights by 10+n*10. So we can add 10 before prepare and 9 stages between those 3 known stages. It is probably possible to set the same weight to multiple stages, but I'm not sure how Cura decides, which stage to take first then. By the moment the plugin's init is called? Or by alphabet? Therefore putting some space in between the weights should give some clearity.
2019-04-25Scale instead of center for preview/prepare-menus. [CURA-6478]Remco Burema
2019-03-01Added id's to printer button, installed plugins, material fields and profile ↵Satish
tab for integration tests
2019-02-04Move action panel into each stageGhostkeeper
They can then decide if it needs to be there. For instance, the monitor stage doesn't want to have this panel. Also each stage can position it where they like, and in the near future I'll make a feature to let it decide whether or not to show the preview button. Contributes to issue CURA-6086.
2018-12-17Update plugin versions to match package versionsLipu Fei
CURA-6019
2018-12-14Increment API version to 6Ghostkeeper
All plug-ins now have to re-check whether they are still compatible with the current version of Cura. Contributes to issue CURA-6019.
2018-12-14Ensure that all icons use the same color from theme.Jaime van Kessel
Also added some fixes for the dark theme
2018-12-13Remove broken load of PrepareSidebar.qmlGhostkeeper
This file no longer exists. Loading it gives a warning.
2018-12-05Merge branch 'ui_rework_4_0' into CURA-5941_restyle_setting_dropdownDiego Prado Gesto
2018-12-04Remove sourceSize.width: width from all RecolorImagesGhostkeeper
It is now the default in Uranium. Contributes to issue CURA-5876.
2018-12-02Remove all the signal propagation for the tooltip and allow only Cura.qml to ↵Diego Prado Gesto
handle them Contributes to CURA-5941.