1
0
Fork 0
Commit graph

109503 commits

Author SHA1 Message Date
Joost De Cock
6e690810e1 New translations en.yaml (French)
skip-build
2024-02-21 21:02:37 +01:00
Joost De Cock
97933e94ee New translations en.md (French)
skip-build
2024-02-21 20:49:11 +01:00
Joost De Cock
326c1ec5aa New translations en.md (French)
skip-build
2024-02-21 20:49:10 +01:00
Joost De Cock
d59991f99f New translations en.md (French)
skip-build
2024-02-21 18:28:39 +01:00
Joost De Cock
241f3acc34 New translations en.md (French)
skip-build
2024-02-21 18:27:06 +01:00
Joost De Cock
7be0f3e0a3 New translations en.md (French)
skip-build
2024-02-21 18:27:03 +01:00
Joost De Cock
211f83bad5 New translations en.md (French)
skip-build
2024-02-21 18:25:47 +01:00
Joost De Cock
016b74b296 New translations en.md (French)
skip-build
2024-02-21 18:25:45 +01:00
Joost De Cock
f3bc479135 New translations en.md (Dutch)
skip-build
2024-02-18 19:27:36 +01:00
Joost De Cock
b15884c640 Update source file en.yaml
skip-build
2024-02-18 19:13:16 +01:00
Joost De Cock
5c976d6333 New translations en.yaml (Ukrainian)
skip-build
2024-02-18 18:07:19 +01:00
Joost De Cock
5bae743d6f New translations en.md (Ukrainian)
skip-build
2024-02-18 18:04:10 +01:00
Joost De Cock
fa238d40a0 New translations en.yaml (Dutch)
skip-build
2024-02-18 17:46:07 +01:00
Joost De Cock
32889be212 New translations en.yaml (German)
skip-build
2024-02-18 17:25:03 +01:00
Joost De Cock
ef82479279 New translations en.yaml (Spanish)
skip-build
2024-02-18 17:04:03 +01:00
Joost De Cock
661107ebb3 New translations en.yaml (French)
skip-build
2024-02-18 16:42:57 +01:00
Joost De Cock
ec1180b356 New translations en.md (French)
skip-build
2024-02-18 16:39:43 +01:00
Joost De Cock
e0df16d36e New translations en.md (Dutch)
skip-build
2024-02-17 18:28:33 +01:00
Joost De Cock
369d95ceb0
Merge pull request #6074 from freesewing/i18n
New Crowdin Translations [skip build]
2024-02-17 17:00:20 +01:00
Joost De Cock
3d6105ab9a
Merge pull request #6078 from nataliasayang/linedrawings
Adds Charlie, Cornelius, and Florent line drawings
2024-02-17 16:58:50 +01:00
Joost De Cock
6adda5b285
Merge pull request #6080 from freesewing/setname
feat: Add name to curated sets, using flexbox
2024-02-17 16:58:26 +01:00
joostdecock
96085d7f04 Revert "Revert "feat(shared): Add name to curated sets""
This reverts commit 43c069719c.
2024-02-17 16:54:37 +01:00
joostdecock
5c8e77ebe1 Revert "Revert "fix(shared): Add key prop to iterator""
This reverts commit 147433e168.
2024-02-17 16:53:38 +01:00
Joost De Cock
96ef465b33
Merge pull request #6079 from freesewing/joost
feat: Changes to handle per-set bust plugin conditionality
2024-02-17 16:51:54 +01:00
joostdecock
43c069719c Revert "feat(shared): Add name to curated sets"
This reverts commit 5dc84c0eb8.

Need to keep this out of the PR
2024-02-17 16:50:47 +01:00
joostdecock
147433e168 Revert "fix(shared): Add key prop to iterator"
This reverts commit 9cdf064b46.

Need to keep this out of the PR
2024-02-17 16:50:22 +01:00
joostdecock
9cdf064b46 fix(shared): Add key prop to iterator 2024-02-17 16:48:18 +01:00
joostdecock
5dc84c0eb8 feat(shared): Add name to curated sets
This replaces #6077 and closes #5898 but does so with proper CSS.
2024-02-17 16:44:46 +01:00
Joost De Cock
c20ed9743d
Merge pull request #6076 from BenJamesBen/include-setname-in-titles-and-pdf
fix(shared, plugins): Provide measurement set name to patterns
2024-02-17 16:31:33 +01:00
Joost De Cock
b7d19fd988
Merge pull request #6075 from BenJamesBen/optional-measurements-missing
fix(shared): Add optional measurements to pattern Edit Measurements by Hand
2024-02-17 16:28:19 +01:00
joostdecock
c3ea6bc5c2 chore(plugin-bust): Removed unused variable 2024-02-17 16:24:39 +01:00
joostdecock
3b7615f03a feat(markdown): Added notes to lifecycle hooks docs 2024-02-17 16:14:14 +01:00
joostdecock
786a5d06cb chore(brian): Always load plugin-bust
The plugin changed how it handles conditionality, so we are always
loading it.
2024-02-17 16:06:32 +01:00
joostdecock
4264c81070 feat[plugin-bust]: Move conditionality to preSetDraft lifecycle hook
This plugin is used to draft designs for high bust rather than full
chest circumference. To facilitate that, we provide(d) a named export
called `withCondition` that checks whether the plugin is wanted, and if
so loads it.

Problem with that is that the conditional loading of a plugin applied
to the entire pattern. And since we support drafting patterns for
multiple sets (and use this to sample) this means that all of these sets
would either get the plugin effect or not, based on the first set.

So, to fix that, we have changed the lifecycle hook used by this plugin
to `preSetDraft` (from `preDraft`) and changed the `withCondition`
method to always return true.

This means that the plugin will always be loaded, and we have moved the
check that used to be in `withCondition` to the lifecycle hook.

In other words, this plugin will now always be loaded and will check for
each set whether it needs to do something.

This allows the conditionality to apply to each set in the pattern,
rather than to the entire pattern.

Note that conditionally loading plugins pattern-wide is still a valid
use-case. It just so happens that for this plugin, it was the wrong
approach.
2024-02-17 15:57:40 +01:00
Natalia Sayang
ca6b343919 Adds Charlie, Cornelius, and Florent line drawings 2024-02-17 03:38:05 +00:00
Benjamin Fan
b9f9226587 fix(shared): Remove unused variable 2024-02-16 18:09:29 -08:00
Joost De Cock
cf29b18dde Update source file en.md
skip-build
2024-02-16 21:32:26 +01:00
Joost De Cock
4ae5598a5a Update source file en.md
skip-build
2024-02-16 21:32:26 +01:00
Joost De Cock
f480882a0a Update source file en.md
skip-build
2024-02-16 21:32:25 +01:00
Joost De Cock
5420bcba4e Update source file en.md
skip-build
2024-02-16 21:32:25 +01:00
Joost De Cock
5690d78761 Update source file en.md
skip-build
2024-02-16 21:32:24 +01:00
Joost De Cock
fe21fd50ba Update source file en.md
skip-build
2024-02-16 21:32:23 +01:00
Joost De Cock
37b77ccb44 Update source file en.md
skip-build
2024-02-16 21:32:23 +01:00
Joost De Cock
17a4cbf00b New translations en.yaml (Ukrainian)
skip-build
2024-02-16 21:11:34 +01:00
Joost De Cock
d42f9961e0 New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:15 +01:00
Joost De Cock
92a438e636 New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:14 +01:00
Joost De Cock
bdcae197d6 New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:12 +01:00
Joost De Cock
7af439b97d New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:11 +01:00
Joost De Cock
d674e58ab5 New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:10 +01:00
Joost De Cock
5b7331276b New translations en.md (Ukrainian)
skip-build
2024-02-16 21:01:09 +01:00