Skip to content

Commit

Permalink
client,server: Trilium Notes -> TriliumNext Notes (closes #195)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliandoran committed Jul 14, 2024
1 parent 4862b32 commit 590442b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/public/app/components/tab_manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ export default class TabManager extends Component {
const titleFragments = [
// it helps to navigate in history if note title is included in the title
await activeNoteContext.getNavigationTitle(),
"Trilium Notes"
"TriliumNext Notes"
].filter(Boolean);

document.title = titleFragments.join(" - ");
Expand Down
2 changes: 1 addition & 1 deletion src/public/app/widgets/buttons/global_menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ const TPL = `
<li class="dropdown-item show-about-dialog-button">
<span class="bx bx-empty"></span>
About Trilium Notes
About TriliumNext Notes
</li>
<li class="dropdown-item update-to-latest-version-button" data-trigger-command="downloadLatestVersion">
Expand Down
2 changes: 1 addition & 1 deletion src/public/app/widgets/dialogs/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const TPL = `
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title mr-auto">About Trilium Notes</h5>
<h5 class="modal-title mr-auto">About TriliumNext Notes</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="margin-left: 0;">
<span aria-hidden="true">&times;</span>
Expand Down
2 changes: 1 addition & 1 deletion src/services/app_icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import utils = require('./utils');

const template = `[Desktop Entry]
Type=Application
Name=Trilium Notes
Name=TriliumNext Notes
Icon=#APP_ROOT_DIR#/icon.png
Exec=#EXE_PATH#
Categories=Office
Expand Down
2 changes: 1 addition & 1 deletion src/services/tray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function createTray() {
}

tray = new Tray(getIconPath());
tray.setToolTip('Trilium Notes')
tray.setToolTip('TriliumNext Notes')
// Restore focus
tray.on('click', changeVisibility)
updateTrayMenu();
Expand Down
6 changes: 3 additions & 3 deletions src/services/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function createExtraWindow(extraWindowHash: string) {
const win = new BrowserWindow({
width: 1000,
height: 800,
title: 'Trilium Notes',
title: 'TriliumNext Notes',
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
Expand Down Expand Up @@ -60,7 +60,7 @@ async function createMainWindow(app: App) {
y: mainWindowState.y,
width: mainWindowState.width,
height: mainWindowState.height,
title: 'Trilium Notes',
title: 'TriliumNext Notes',
webPreferences: {
nodeIntegration: true,
contextIsolation: false,
Expand Down Expand Up @@ -132,7 +132,7 @@ async function createSetupWindow() {
setupWindow = new BrowserWindow({
width: 800,
height: 800,
title: 'Trilium Notes Setup',
title: 'TriliumNext Notes Setup',
icon: getIcon(),
webPreferences: {
// necessary for e.g. utils.isElectron()
Expand Down
2 changes: 1 addition & 1 deletion src/views/desktop.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico">
<link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">
<title>Trilium Notes</title>
<title>TriliumNext Notes</title>
</head>
<body class="desktop heading-style-<%= headingStyle %>">
<noscript>Trilium requires JavaScript to be enabled.</noscript>
Expand Down
2 changes: 1 addition & 1 deletion src/views/mobile.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="shortcut icon" href="favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#fff">
<title>Trilium Notes</title>
<title>TriliumNext Notes</title>
<link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">

<style>
Expand Down
4 changes: 2 additions & 2 deletions src/views/setup.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<noscript>Trilium requires JavaScript to be enabled.</noscript>
<div class="container">
<div id="setup-dialog" class="col-md-12 col-lg-8 col-xl-6 mx-auto" style="padding-top: 25px; font-size: larger; display: none;">
<h1>Trilium Notes setup</h1>
<h1>TriliumNext Notes setup</h1>

<div class="alert alert-warning" id="alert" style="display: none;">
</div>
Expand Down Expand Up @@ -92,7 +92,7 @@
<p>This setup needs to be initiated from the desktop instance:</p>

<ol>
<li>Open your desktop instance of Trilium Notes.</li>
<li>Open your desktop instance of TriliumNext Notes.</li>
<li>From the Trilium Menu, click Options.</li>
<li>Click on Sync tab.</li>
<li>Change server instance address to: <span id="current-host"></span> and click save.</li>
Expand Down

0 comments on commit 590442b

Please sign in to comment.