Skip to content

Commit

Permalink
Server v2.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
laurent22 committed Oct 10, 2022
1 parent cea1aea commit c996dda
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/app-mobile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion packages/app-mobile/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion readme/changelog_server.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit c996dda

Please sign in to comment.