Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add titles and short descriptions to windows installers #530

Merged
merged 1 commit into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/resources/installation-guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ In the feature frozen phase preceding a release (see [Release schedule]({{< ref

There are two options for installing on Windows:

## Standalone installers
## Offline (Standalone) installers

Standalone installers include everything QGIS needs in a single download. Once you have the installer, no internet is required to complete the installation. When a new release is available, you need to download the complete installer again in order to upgrade. For beginners, the standlone installer is probably the easiest way to install QGIS:

Expand All @@ -40,7 +40,7 @@ Standalone installers include everything QGIS needs in a single download. Once y

The weekly snapshots of the nightly qgis-dev package of OSGeo4W are for users that cannot use OSGeo4W (see below) for some reason or just prefer standalone installers. In the feature freeze phase, theset also act as **release candidate** installers.

## OSGeo4W installer
## Online (OSGeo4W) installer

More advanced QGIS users should use OSGeo4W packages. This installer makes it possible to install several versions of QGIS in parallel and also to do much more efficient updates as only changed components are downloaded and installed with each new release.

Expand Down
4 changes: 2 additions & 2 deletions playwright/ci-test/tests/fixtures/installation-guide-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export class InstallationGuidePage {
public readonly textList: string[] = [
"QGIS Installers",
"Windows",
"Standalone installers",
"OSGeo4W installer",
"Offline (Standalone) installers",
"Online (OSGeo4W) installer",
"Linux",
"Debian/Ubuntu",
"Quickstart",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
{{ with index .Site.Data.conf }}

<h2 class="title is-size-5">Online (OSGeo4W) installer:</h2>

<a
class="button is-primary1 mb-3"
href="https://download.osgeo.org/osgeo4w/v2/osgeo4w-setup.exe"
onclick="thanks(this)"
download
>OSGeo4W Network Installer</a>
<br>
<p>
This installer is the best way to keep QGIS up to date,
run multiple versions on your system and keep the load
on our download servers to a minimum.
<a href="{{ absURL "resources/installation-guide#osgeo4w-installer" }}">
Learn more.
</a>
</p>

<h2 class="title is-size-5">Offline (Standalone) installers:</h2>
<a
class="button is-primary1 mb-3"
href="{{ .ltr_msi }}"
Expand All @@ -20,17 +40,16 @@
download
>Latest Version for Windows ({{ .version }}) with Qt6 (experimental)</a>

<br>
The OSGeo4W installer is recommended for regular users or organization deployments. It allows to have several QGIS versions in one place, and to keep each component up-to-date individually without having to download the whole package.

<br>
<a
class="button is-primary1 is-outlined mb-3"
href="{{ absURL "resources/installation-guide#osgeo4w-installer" }}"
onclick="thanks(this)"
download
>OSGeo4W Network Installer</a>
<br>
<p>
These installers are for users who wish
to easily share the download e.g. putting
it on a USB key or network share.
<a href="{{ absURL "resources/installation-guide#standalone-installers" }}">
Learn more.
</a>
</p>

Since QGIS 3.20 we only ship 64-bit Windows executables.
<p>
⚠️ Since QGIS 3.20 we only ship 64-bit Windows executables.
</p>
{{ end }}
Loading