Skip to content

Commit 8e5af2e

Browse files
committed
Add 6.0 upgrade guide
1 parent 293bc19 commit 8e5af2e

File tree

4 files changed

+78
-2
lines changed

4 files changed

+78
-2
lines changed

docs/install_setup/v3.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Gramps 6.0 upgrade guide
2+
3+
Gramps 6.0 is expected to be released at the end of February, 2025.
4+
5+
Gramps Web is **not yet compatible** with Gramps 6.0. If you are using Gramps Web and intend to [synchronize](../administration/sync.md) it with Gramps Desktop, please **do not upgrade to Gramps 6.0** until a new version of Gramps Web is released that is compatible with Gramps 6.0.
6+
7+
This page will be updated accordingly.
8+
9+
!!! info
10+
Last updated: February 15, 2025
11+
12+
13+
## Overview of the release status
14+
15+
The following table gives an overview of when the components needed for Gramps Web with Gramps 6.0 have been released.
16+
17+
Component | Released
18+
---|---
19+
Gramps 6.0.0 | –
20+
Gramps Web API 3.0.0 | –
21+
Gramps Web (Frontend) 25.?.? | –
22+
Gramps Web Sync Addon for Gramps 6.0 | –
23+
PostgreSQL Addon for Gramps 6.0 | –
24+
SharedPostgreSQL Addon for Gramps 6.0 | –

mkdocs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ nav:
1919
- Using PostgreSQL: install_setup/postgres.md
2020
- Hosting media on S3: install_setup/s3.md
2121
- Limit CPU & memory usage: install_setup/cpu-limited.md
22-
- 2.0 upgrade guide: install_setup/v2.md
22+
- Gramps 5.2 upgrade guide: install_setup/v2.md
23+
- Gramps 6.0 upgrade guide: install_setup/v3.md
2324
- Administration:
2425
- Introduction: administration/admin.md
2526
- Create owner account: administration/owner.md

overrides/home.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
{% extends "base.html" %}
1+
{% extends "main.html" %}
2+
23

34

45
{% block styles %}

overrides/main.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{% extends "base.html" %}
2+
3+
{% block header %}
4+
<!-- Custom Banner
5+
<div class="banner">
6+
<span><a href="/install_setup/v3/">News on Gramps Web &amp; Gramps 6.0</a></span>
7+
</div>
8+
-->
9+
{{ super() }}
10+
{% endblock %}
11+
12+
13+
14+
15+
{% block styles %}
16+
{{ super() }}
17+
<style>
18+
.banner {
19+
height: 24px;
20+
position: sticky;
21+
top: 0;
22+
left: 0;
23+
width: 100%;
24+
z-index: 1;
25+
text-align: center;
26+
display: flex;
27+
align-items: center;
28+
justify-content: center;
29+
background-color: #66BB6A;
30+
color: #fff;
31+
font-size: 13px;
32+
font-weight: 500;
33+
font-family: Inter;
34+
}
35+
36+
.banner a:link, .banner a:visited, .banner a:hover, .banner a:active {
37+
color: #fff;
38+
text-decoration: none;
39+
}
40+
41+
.banner a:hover {
42+
font-weight: 600;
43+
}
44+
45+
/* .md-header {
46+
top: 24px;
47+
} */
48+
49+
</style>
50+
{% endblock %}

0 commit comments

Comments
 (0)