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

Release v1.39.2 #245

Merged
merged 2 commits into from
Mar 13, 2024
Merged
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
2 changes: 1 addition & 1 deletion locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"remark": "※Some browsers(e.g. safari、chrome on mobile)don't provide the feature of creating a new bookmark. In that case you can add a bookmark for any site first, then edit it and replace the URL address with the below script.",
"imgDesc1": "The bookmark name doesn't matter. Put whatever you like.",
"imgDesc2": "Paste the script on the URL input",
"currentVersion": "For current version: FUZZ-UP",
"currentVersion": "For current version: ",
"currentVersionDesc": "(This script is always getting data from the latest version. No need to update the script when next version comes)",
"oldVersion": "For old version:"
},
Expand Down
2 changes: 1 addition & 1 deletion locales/ja/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"remark": "一部のブラウザ(Safari、スマホのChromeとか)ではブックマークの新規作成ができませんが、<ol><li>とりあえず任意のウェブサイトをブックマークに登録</li><li>登録したブックマークを編集</li><li>URLアドレスのところに、登録したURLを消してスクリプトを入れる</li></ol>の手順でもスクリプトをブックマークに登録することができます。",
"imgDesc1": "名前は適当でいい",
"imgDesc2": "URLのところにスクリプトをペーストして",
"currentVersion": "現行バージョン FUZZ-UP",
"currentVersion": "現行バージョン",
"currentVersionDesc": "(このスクリプトは常に現行バージョンに対応しています。新しいバージョンになってもスクリプトを更新する必要がありません。)",
"oldVersion": "古いバージョン"
},
Expand Down
2 changes: 1 addition & 1 deletion locales/ko/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"remark": "※일부 브라우저(예: 사파리, 크롬 모바일)는 북마크를 직접 새로 만드는 기능을 제공하지 않습니다. 그런 경우에는 아무 사이트나 북마크에 등록한 뒤, 해당 북마크의 URL을 아래 스크립트로 바꾸시면 됩니다.",
"imgDesc1": "북마크의 이름은 원하시는 이름으로 넣으세요",
"imgDesc2": "URL란에 스크립트를 붙여넣으세요",
"currentVersion": "현행 버전용 스크립트: (FUZZ-UP)",
"currentVersion": "현행 버전용 스크립트:",
"currentVersionDesc": "(이 스크립트는 항상 현행 버전으로부터 스킬 데이터를 가져옵니다. 버전이 바뀌었을 때 별도로 북마크를 수정하지 않아도 됩니다.)",
"oldVersion": "구 버전용 스크립트:"
},
Expand Down
2 changes: 1 addition & 1 deletion locales/zh/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"remark": "※有些浏览器(比如Safari、手机上的Chrome)上没有办法新建书签,可以先随便添加一个任意网站的书签,然后选择编辑,把URL地址栏的内容换成下面的代码就好了。",
"imgDesc1": "书签的名字可以随便填",
"imgDesc2": "把代码粘贴到URL这里",
"currentVersion": "当前版本 FUZZ-UP",
"currentVersion": "当前版本",
"currentVersionDesc": "(这个代码一直对应最新版本,即使换代也不用来更新代码)",
"oldVersion": "旧版本"
},
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const APP_VERSION = "v1.39.1";
const APP_VERSION = "v1.39.2";

const ALL_VERSIONS = ["galaxywave", "fuzzup", "highvoltage", "nextage", "exchain", "matixx", "tbre", "tb"];

Expand Down
70 changes: 0 additions & 70 deletions src/react/BookmarkletScript.jsx

This file was deleted.

5 changes: 3 additions & 2 deletions src/react/IndexPage/BookmarkletScript.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { FormattedMessage } from "react-intl";
import FileCopyIcon from "@material-ui/icons/FileCopy";
import IconButton from "@material-ui/core/IconButton";

import { ON_SERVICE_VERSIONS, VERSION_NAME } from "../../constants";
import { CURRENT_VERSION, ON_SERVICE_VERSIONS, VERSION_NAME } from "../../constants";
import { Snackbar } from "@material-ui/core";

function BookmarkletScript() {
Expand All @@ -29,6 +29,7 @@ function BookmarkletScript() {
<>
<div>
<FormattedMessage id="how.upload.step1.currentVersion" />
{" " + VERSION_NAME[CURRENT_VERSION] + " "}
<Desc>
<FormattedMessage id="how.upload.step1.currentVersionDesc" />
</Desc>
Expand Down Expand Up @@ -149,6 +150,6 @@ const Desc = styled.span`
@media (max-width: 742px) {
font-size: 12px;
}
`
`;

export default BookmarkletScript;
Loading