Skip to content

Commit 564fee2

Browse files
committed
Version 4.0
No new features, just dropped support for PHP 7 and very old browsers.
1 parent 1e2ccb6 commit 564fee2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ More info is available at [FlowNotes.org](https://flownotes.org)
1717

1818
## Requirements
1919

20-
Web-hosting with PHP 7.0+ and the PHP sqlite3 package installed.
21-
Browser with ECMAScript 6 support (Chrome 49+, Firefox 44+, Safari 10+, Edge 14+).
20+
Web-hosting with PHP 8+ and the PHP sqlite3 package installed.
21+
Browser with ECMAScript 2020 support (Chrome 80+, Firefox 74+, Safari 13.1+, Edge 80+).
2222

2323
## Release policy
2424

2525
I do my best to keep the master branch always deployable. As such there is no
2626
point in tagging patch-level releases. If you want to stay at the bleeding edge,
2727
just update from git. Periodically I will cut a feature release as a minor
28-
version. Releases that drop support for older browsers or PHP versions will be
29-
published with a new major version. Other than that, I maintain full backward
28+
version. Releases that drop support for older browsers, SQLite or PHP versions will
29+
be published with a new major version. Other than that, I maintain full backward
3030
compatibility. Any feature release may upgrade your database schema, however, so
3131
keep this in mind if you move databases between installs.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
77
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
88
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/marked.umd.min.js" crossorigin="anonymous"></script>
9-
<script type="text/javascript" src="script.js?v3.7" defer></script>
10-
<link rel="stylesheet" type="text/css" href="style.css?v3.7">
9+
<script type="text/javascript" src="script.js?v4.0" defer></script>
10+
<link rel="stylesheet" type="text/css" href="style.css?v4.0">
1111
<link rel="icon" type="image/x-icon" href="favicon.ico">
1212
<link rel="manifest" href="manifest.json">
1313
</head>

sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let version = 'v3.7';
1+
let version = 'v4.0';
22

33
self.addEventListener('install', evt => {
44
console.log('Service worker ' + version + ' is being installed');

0 commit comments

Comments
 (0)