From 3dd4f0c07c273f69f988ebc3343ef1fbdf2c3564 Mon Sep 17 00:00:00 2001 From: Hamcha Date: Tue, 14 Nov 2023 09:16:18 +0100 Subject: [PATCH] price increase on fusion --- .frontmatter/database/pinnedItemsDb.json | 1 + content/posts/cad-shootout-designspark.md | 1 + content/posts/cad-shootout-freecad.md | 1 + content/posts/cad-shootout-fusion360.md | 7 +++--- content/posts/cad-shootout-onshape.md | 1 + content/posts/cad-shootout-plasticity.md | 1 + content/posts/cad-shootout-solidedge.md | 1 + layouts/shortcodes/cad-list.html | 28 ++++++++++++----------- 8 files changed, 25 insertions(+), 16 deletions(-) create mode 100644 .frontmatter/database/pinnedItemsDb.json diff --git a/.frontmatter/database/pinnedItemsDb.json b/.frontmatter/database/pinnedItemsDb.json new file mode 100644 index 0000000..9e26dfe --- /dev/null +++ b/.frontmatter/database/pinnedItemsDb.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/content/posts/cad-shootout-designspark.md b/content/posts/cad-shootout-designspark.md index 57ca62f..f29edf9 100644 --- a/content/posts/cad-shootout-designspark.md +++ b/content/posts/cad-shootout-designspark.md @@ -4,6 +4,7 @@ description: I explore DesignSpark Mechanical for hobbyist use. I put it through toc: true software: DesignSpark Mechanical license: Limited free version, otherwise 12€/month +license-type: freemium tags: - cad - cad-shootout diff --git a/content/posts/cad-shootout-freecad.md b/content/posts/cad-shootout-freecad.md index e583dc2..e6bf4c2 100644 --- a/content/posts/cad-shootout-freecad.md +++ b/content/posts/cad-shootout-freecad.md @@ -6,6 +6,7 @@ lastmod: 2023-09-18T09:47:44.563Z toc: true software: FreeCAD license: Free and open source, LGPL license +license-type: foss tags: - cad - cad-shootout diff --git a/content/posts/cad-shootout-fusion360.md b/content/posts/cad-shootout-fusion360.md index 0fc1c82..636b980 100644 --- a/content/posts/cad-shootout-fusion360.md +++ b/content/posts/cad-shootout-fusion360.md @@ -4,7 +4,8 @@ description: I explore Autodesk Fusion 360 for hobbyist use. I put it through it date: 2023-09-15T20:48:12.208Z toc: true software: Fusion 360 -license: Limited free version for personal use, otherwise starts at US$545/year/user +license: Limited free version for personal use, otherwise starts at US$680/year/user +license-type: freemium tags: - cad - cad-shootout @@ -13,7 +14,7 @@ tldr: | keywords: - cad - fusion 360 -lastmod: 2023-09-16T09:49:29.868Z +lastmod: 2023-11-14T08:15:21.385Z --- After looking at FreeCAD I wanted to wrap up the list of popular free choices before moving to the more exotic ones so Fusion 360 feels like a natural pick. @@ -28,7 +29,7 @@ I will be looking at the free version of the software, with all its limitations. ### Free for personal use -Fusion 360 is normally paid software, it costs around $545/year/user (more or less depending if you pay monthly, yearly or every 3 years) plus any extra licensing cost from extra modules like simulation and machining. +Fusion 360 is normally paid software, it costs around ~~$545~~$680/year/user (Price was increased since the article was written) plus any extra licensing cost from extra modules like simulation and machining. There is a free trial and a "free for personal use" license that has several limitations, including: diff --git a/content/posts/cad-shootout-onshape.md b/content/posts/cad-shootout-onshape.md index 1fdf030..b748f58 100644 --- a/content/posts/cad-shootout-onshape.md +++ b/content/posts/cad-shootout-onshape.md @@ -5,6 +5,7 @@ date: 2023-09-11T19:00:00+02:00 toc: true software: Onshape license: Free for non-commercial use, starts at US$1500/year/user otherwise +license-type: freemium tags: - cad - cad-shootout diff --git a/content/posts/cad-shootout-plasticity.md b/content/posts/cad-shootout-plasticity.md index 26134fd..518fe41 100644 --- a/content/posts/cad-shootout-plasticity.md +++ b/content/posts/cad-shootout-plasticity.md @@ -4,6 +4,7 @@ description: I explore Plasticity for hobbyist use. I put it through its paces a toc: true software: Plasticity license: Paid only with no subscription, starts at US$99 +license-type: paid tags: - cad - cad-shootout diff --git a/content/posts/cad-shootout-solidedge.md b/content/posts/cad-shootout-solidedge.md index 0b91977..9bddbbe 100644 --- a/content/posts/cad-shootout-solidedge.md +++ b/content/posts/cad-shootout-solidedge.md @@ -4,6 +4,7 @@ description: I explore Solid Edge 2023 for hobbyist use. I put it through its pa toc: true software: Solid Edge license: Limited free version for personal use, otherwise starts at £895/year +license-type: freemium tags: - cad - cad-shootout diff --git a/layouts/shortcodes/cad-list.html b/layouts/shortcodes/cad-list.html index e6e0c13..5c5cd55 100644 --- a/layouts/shortcodes/cad-list.html +++ b/layouts/shortcodes/cad-list.html @@ -1,14 +1,16 @@
-{{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice "cad-shootout") }} -{{- with $pages }} -{{ range .ByPublishDate }} - -{{ end }} -{{ end }} -
\ No newline at end of file + {{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice + "cad-shootout") }} {{- with $pages }} {{ range .ByPublishDate }} +
+ + {{ with .Params.Software }}{{.}}{{else}}{{.Title}}{{end}} + + {{ with .Params.License }} +
{{.}}
+ {{end}} +
+ {{ end }}{{ end }} +