1
0
Fork 0

price increase on fusion
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2023-11-14 09:16:18 +01:00
parent 693dc9c2dc
commit 3dd4f0c07c
Signed by: hamcha
GPG Key ID: 1669C533B8CF6D89
8 changed files with 25 additions and 16 deletions

View File

@ -0,0 +1 @@
{}

View File

@ -4,6 +4,7 @@ description: I explore DesignSpark Mechanical for hobbyist use. I put it through
toc: true toc: true
software: DesignSpark Mechanical software: DesignSpark Mechanical
license: Limited free version, otherwise 12€/month license: Limited free version, otherwise 12€/month
license-type: freemium
tags: tags:
- cad - cad
- cad-shootout - cad-shootout

View File

@ -6,6 +6,7 @@ lastmod: 2023-09-18T09:47:44.563Z
toc: true toc: true
software: FreeCAD software: FreeCAD
license: Free and open source, LGPL license license: Free and open source, LGPL license
license-type: foss
tags: tags:
- cad - cad
- cad-shootout - cad-shootout

View File

@ -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 date: 2023-09-15T20:48:12.208Z
toc: true toc: true
software: Fusion 360 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: tags:
- cad - cad
- cad-shootout - cad-shootout
@ -13,7 +14,7 @@ tldr: |
keywords: keywords:
- cad - cad
- fusion 360 - 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. 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 ### 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: There is a free trial and a "free for personal use" license that has several limitations, including:

View File

@ -5,6 +5,7 @@ date: 2023-09-11T19:00:00+02:00
toc: true toc: true
software: Onshape software: Onshape
license: Free for non-commercial use, starts at US$1500/year/user otherwise license: Free for non-commercial use, starts at US$1500/year/user otherwise
license-type: freemium
tags: tags:
- cad - cad
- cad-shootout - cad-shootout

View File

@ -4,6 +4,7 @@ description: I explore Plasticity for hobbyist use. I put it through its paces a
toc: true toc: true
software: Plasticity software: Plasticity
license: Paid only with no subscription, starts at US$99 license: Paid only with no subscription, starts at US$99
license-type: paid
tags: tags:
- cad - cad
- cad-shootout - cad-shootout

View File

@ -4,6 +4,7 @@ description: I explore Solid Edge 2023 for hobbyist use. I put it through its pa
toc: true toc: true
software: Solid Edge software: Solid Edge
license: Limited free version for personal use, otherwise starts at £895/year license: Limited free version for personal use, otherwise starts at £895/year
license-type: freemium
tags: tags:
- cad - cad
- cad-shootout - cad-shootout

View File

@ -1,14 +1,16 @@
<section class="cad-list"> <section class="cad-list">
{{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice "cad-shootout") }} {{ $pages := where site.RegularPages ".Params.tags" "intersect" (slice
{{- with $pages }} "cad-shootout") }} {{- with $pages }} {{ range .ByPublishDate }}
{{ range .ByPublishDate }} <article>
<article> <time datetime='{{ .Date | time.Format "2006-01-02"}}'
<time datetime="{{ .Date | time.Format "2006-01-02"}}">{{ .Date | time.Format "2006-01-02"}}</time> >{{ .Date | time.Format "2006-01-02"}}</time
<a class="title" href="{{ .RelPermalink }}">{{ with .Params.Software }}{{.}}{{else}}{{.Title}}{{end}}</a> >
{{ with .Params.License }} <a class="title" href="{{ .RelPermalink }}"
<section class="license">{{.}}</section> >{{ with .Params.Software }}{{.}}{{else}}{{.Title}}{{end}}
{{end}} </a>
</article> {{ with .Params.License }}
{{ end }} <section class="license">{{.}}</section>
{{ end }} {{end}}
</section> </article>
{{ end }}{{ end }}
</section>