Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎨バージョン表記を編集 #26

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/main/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const aboutContent = {
icon: isMac ? './src/image/logo-mac.png' : './src/image/logo.png',
title: lang.getAbout('title'),
message: lang.getAbout('title'),
detail: `Monot by monochrome. v.2.0.0 (Build 12)
${lang.getAbout('version')}: 2.0.0
${lang.getAbout('build_no')}: 12
detail: `Monot by monochrome. v.2.0.1 (Build 13)
${lang.getAbout('version')}: 2.0.1
${lang.getAbout('build_no')}: 13
${lang.getAbout('developer')}: monochrome Project.

${lang.getAbout('repository')}: https://github.com/mncrp/monot
${lang.getAbout('official_website')}: https://mncrp.github.io/project/monot/

Copyright ©︎ 2021-2023 monochrome Project.`
Copyright ©︎ 2021-2024 monochrome Project.`
};

const navigationContextMenuTemplate = [
Expand Down
2 changes: 1 addition & 1 deletion src/main/tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class Tab {
browserView.webContents.getUserAgent()
.replace('monot', 'Chrome')
.replace(/Electron\/[0-9 | .]/, '')
.replace('Chrome/2.0.0', '')
.replace('Chrome/2.0.1', '')
);

try {
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/setting/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ <h2>${experimental_function}</h2>
</div>
<footer>
<h3><strong>Monot by monochrome.</strong></h3>
<p>v.2.0.0 (Build 12)</p>
<p>v.2.0.1 (Build 13)</p>
<small>Copyright &copy; 2021-2023 monochrome Project.</small><br>
<small>$[developer]: <a
href="javascript:node.open('https://mncrp.github.io/project/monot/#developers')">https://mncrp.github.io/project/monot/#developers</a></small>
Expand Down