Skip to content

Commit

Permalink
Version 4.0
Browse files Browse the repository at this point in the history
No new features, just dropped support for PHP 7 and very old browsers.
  • Loading branch information
bartnv committed Mar 11, 2023
1 parent 1e2ccb6 commit 564fee2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ More info is available at [FlowNotes.org](https://flownotes.org)

## Requirements

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

## Release policy

I do my best to keep the master branch always deployable. As such there is no
point in tagging patch-level releases. If you want to stay at the bleeding edge,
just update from git. Periodically I will cut a feature release as a minor
version. Releases that drop support for older browsers or PHP versions will be
published with a new major version. Other than that, I maintain full backward
version. Releases that drop support for older browsers, SQLite or PHP versions will
be published with a new major version. Other than that, I maintain full backward
compatibility. Any feature release may upgrade your database schema, however, so
keep this in mind if you move databases between installs.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/marked.umd.min.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="script.js?v3.7" defer></script>
<link rel="stylesheet" type="text/css" href="style.css?v3.7">
<script type="text/javascript" src="script.js?v4.0" defer></script>
<link rel="stylesheet" type="text/css" href="style.css?v4.0">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="manifest" href="manifest.json">
</head>
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let version = 'v3.7';
let version = 'v4.0';

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

0 comments on commit 564fee2

Please sign in to comment.