1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Server v2.9.2

This commit is contained in:
Laurent Cozic 2022-10-10 11:59:58 +01:00
parent cea1aeac4b
commit c996ddaf9d
4 changed files with 6 additions and 3 deletions

View File

@ -45,6 +45,9 @@ LogBox.ignoreLogs([
// Apparently it can be safely ignored:
// https://github.com/react-native-webview/react-native-webview/issues/124
'Did not receive response to shouldStartLoad in time, defaulting to YES',
// Emitted by react-native-popup-menu
'MenuContext is deprecated and it might be removed in future releases, use MenuProvider instead.',
]);
AppRegistry.registerComponent('Joplin', () => Root);

View File

@ -477,7 +477,7 @@ async function initialize(dispatch: Function) {
if (Setting.value('env') === 'prod') {
await db.open({ name: 'joplin.sqlite' });
} else {
await db.open({ name: 'joplin-1.sqlite' });
await db.open({ name: 'joplin-101.sqlite' });
// await db.clearForTesting();
}

View File

@ -1,6 +1,6 @@
{
"name": "@joplin/server",
"version": "2.9.1",
"version": "2.9.2",
"private": true,
"scripts": {
"start-dev": "yarn run build && JOPLIN_IS_TESTING=1 nodemon --config nodemon.json --ext ts,js,mustache,css,tsx dist/app.js --env dev",

View File

@ -1,6 +1,6 @@
# Joplin Server Changelog
## [server-v2.9.1](https://github.com/laurent22/joplin/releases/tag/server-v2.9.1) - 2022-10-07T10:46:43Z
## [server-v2.9.2](https://github.com/laurent22/joplin/releases/tag/server-v2.9.2) - 2022-10-10T10:59:36Z
- New: Add support for sidebar in user pages (053dbab)
- Improved: Automatically delete expired sessions (d5dfecc)