Skip to content

Commit

Permalink
release: 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
watasuke102 committed Jan 10, 2022
1 parent 3745099 commit b1a9dea
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions front/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion front/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "tagether",
"version": "1.6.0",
"version": "1.7.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"fmt": "prettier --write src/",
"check": "npm run lint && npm run fmt && npm run build",
"dev": "next dev -p 3009",
"build": "next build",
"start": "next start -p 3009"
Expand Down
19 changes: 11 additions & 8 deletions front/src/components/pages/top/top.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,17 @@ export default function index(): React.ReactElement {
function Releases(): React.ReactElement {
return (
<>
<h3>v1.7.0</h3>
<ul>
<li>問題編集後、タグに空要素が挿入されてしまう問題を修正</li>
<li>問題の文字数が多い時はみ出てしまう問題を修正</li>
<li>入力欄のスペルチェックを無効化</li>
<li>ページ移動時のアニメーションを変更(プログレスバーに)</li>
<li>何か編集されたときのみ画面移動時の警告を表示するように修正</li>
<li>間違えた問題を強調表示できるようにした</li>
<li>PWAに対応しました。 インストールすることにより、一部オフライン環境での動作ができるかもしれません。</li>
</ul>

<h3>v1.6.0</h3>
<ul>
<li>
Expand Down Expand Up @@ -112,14 +123,6 @@ function Releases(): React.ReactElement {
<li>jsonを直接編集できるようにした</li>
</ul>
</div>

<h3>v1.4.0</h3>
<ul>
<li>カテゴリをお気に入り登録できるようにした</li>
<li>解答したカテゴリの履歴(日付、正答率)が見れるように</li>
<li>環境をdocker-composeへ移行</li>
</ul>
<p>お気に入り登録したカテゴリや解答履歴は、プロフィールから見ることが出来ます。</p>
</>
);
}
2 changes: 1 addition & 1 deletion start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ echo -e "\e[36;7m[info] Backend setup completed\e[m"

## when product environment
if [[ ${1} == "product" ]]; then
docker-compose run --rm --entrypoint "npm run build" front
docker-compose run --rm --entrypoint "npm run check" front
## start
docker-compose -f docker-compose.yml -f product.override.yml up -d --build
else
Expand Down

0 comments on commit b1a9dea

Please sign in to comment.