diff --git a/.gitattributes b/.gitattributes index 58a7812fd..952d6cd0e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,3 @@ *.svg -diff -text *.psd -diff -text *.ai -diff -text -yarn.lock -diff -text -package-lock.json -diff -text diff --git a/.gitignore b/.gitignore index 5d06997f1..9ccb36a9e 100644 --- a/.gitignore +++ b/.gitignore @@ -7,9 +7,6 @@ # Node.js /node_modules -# yarn -yarn.lock - # config /.config/* !/.config/example.yml diff --git a/CHANGELOG.md b/CHANGELOG.md index f44471968..55148d82c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,38 @@ ChangeLog ========= +11.26.0 (2019/07/19) +-------------------- +### ✨Improvements +* モデレーターログを記録して確認できるように +* プロフィールに追加情報を設定できるように +* Mastodonのリンクの所有者認証に対応 +* AP: Delete Person アクティビティを配信するように +* AP: Delete アクティビティの後にフォロー解除するように +* AP: アカウント削除でもDelete activityを配信するように +* Pages: ラジオボタンを追加 +* AdminページのUsers Viewでユーザーのレコードをクリックすることですぐユーザーを照会できるように +* AdminページのUsers Viewでユーザー一覧からユーザー名とホスト情報で検索できるように +* 特定ホストへのメンションの特別処理をクライアントに追加 +* 設定画面でデスクトップ・モバイルモード変更時はすぐにrefreshするか伺うように +* ペーストされたファイル名のテンプレート変更時すぐどのようになるか見れるように +* (コ`・ヘ・´ケ)を追加 + +### 🐛Fixes +* ログインのログが正しく保存されない問題を修正 +* 同じユーザー名のユーザーが作成できてしまうことがある問題を修正 +* 報告されたレポート内容が表示されない問題を修正 +* リモートのプロフィールの追加情報が表示されない問題を修正 +* 「見つける」のタグが大文字小文字区別されている問題を修正 +* 管理画面のインスタンス一覧でソートが正しく機能していない問題を修正 +* プロフィール設定でバナーに動画を設定すると以降編集ができない問題を修正 +* ウェブ検索エンジンの設定でグリッチが発生する問題を修正 +* MFMの引用がインライン表示になっている問題を修正 +* アンケートの期限入力部分のタイトル表示がおかしい問題を修正 +* 画面上の項目がすべていなくなると実際はロードされてないだけのファイルやフォルダーがあるにも関わらず「もっと読み込む」ボタンがなくなり「このフォルダーは空です」っていうplaceholderが表示されてしまう問題を修正 +* proxy-media後のContent-Typeが違う問題を修正 +* ビルド時にエラーが出るのを修正 + 11.25.1 (2019/07/09) -------------------- ### 🐛Fixes @@ -637,9 +669,9 @@ mongodb: db: misskey ``` 3. migration ブランチに切り替え -4. `npm i` -5. `npm run build` -6. `npm run migrate` +4. `yarn install` +5. `yarn build` +6. `yarn migrate` 7. master ブランチに戻す 8. enjoy diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d88812f7..548c76910 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,18 +7,18 @@ Feature suggestions and bug reports are filed in https://github.com/syuilo/missk * Please search existing issues to avoid duplication. If your issue is already filed, please add your reaction or comment to the existing one. * If you have multiple independent issues, please submit them separately. - ## Localization (l10n) Misskey uses [Crowdin](https://crowdin.com/project/misskey) for localization management. You can improve our translations with your Crowdin account. -Changes you make in Crowdin will be merged into develop branch. +Changes you make in Crowdin will be merged into the develop branch by @syuilo. -If you can't find the language you want to contribute with, please open an issue. +If you cannot find the language you want to contribute with, please open an issue. ![Crowdin](https://d322cqt584bo4o.cloudfront.net/misskey/localized.svg) ## Internationalization (i18n) -Misskey uses [vue-i18n](https://github.com/kazupon/vue-i18n). +Misskey uses the Vue.js plugin [Vue I18n](https://github.com/kazupon/vue-i18n). +Documentation of Vue I18n is available at http://kazupon.github.io/vue-i18n/introduction.html . ## Documentation * Documents for contributors are located in [`/docs`](/docs). @@ -29,9 +29,15 @@ Misskey uses [vue-i18n](https://github.com/kazupon/vue-i18n). * Test codes are located in [`/test`](/test). ## Continuous integration -Misskey uses CircleCI for automated test. +Misskey uses CircleCI for executing automated tests. Configuration files are located in [`/.circleci`](/.circleci). +## FAQ + +### How to resolve conflictions occurred at yarn.lock? + +Just execute `yarn` to fix it. + ## Glossary ### AP Stands for _**A**ctivity**P**ub_. @@ -51,11 +57,15 @@ Convert な(na) to にゃ(nya) #### Denyaize Revert Nyaize -## Code style -### セミコロンを省略しない -ASI Hazardを避けるためでもある +## TypeScript Coding Style +### Do not omit semicolons +This is to avoid Automatic Semicolon Insertion (ASI) hazard. -### 中括弧を省略しない +Ref: +* https://www.ecma-international.org/ecma-262/#sec-automatic-semicolon-insertion +* https://github.com/tc39/ecma262/pull/1062 + +### Do not omit curly brackets Bad: ``` ts if (foo) @@ -73,16 +83,20 @@ if (foo) { } ``` -ただし**`if`が一行**の時だけは省略しても良い +As a special case, you can omit the curly brackets if + +* the body of the `if`-statement have only one statement and, +* the `if`-statement does not have `else`-clause. + Good: ``` ts if (foo) bar; ``` -### 特別な理由がない限り`===`を使う +### Do not use `==` when it can simply be replaced with `===`. 🥰 -### null系を除いて、bool以外の値をifに渡さない +### Use only boolean (or null related) values in the condition of an `if`-statement. Bad: ``` ts if (foo.length) @@ -93,12 +107,12 @@ Good: if (foo.length > 0) ``` -### `export default`を使わない -インテリセンスと相性が悪かったりするため +### Do not use `export default` +This is because the current language support does not work well with `export default`. -参考: -* https://gfx.hatenablog.com/entry/2017/11/24/135343 +Ref: * https://basarat.gitbooks.io/typescript/docs/tips/defaultIsBad.html +* https://gfx.hatenablog.com/entry/2017/11/24/135343 Bad: ``` ts diff --git a/Dockerfile b/Dockerfile index ab8be6c68..21a058c58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,9 +23,9 @@ RUN apk add --no-cache \ zlib-dev COPY package.json ./ -RUN npm i +RUN yarn install COPY . ./ -RUN npm run build +RUN yarn build FROM base AS runner diff --git a/README.md b/README.md index 2941074c2..dee7593be 100644 --- a/README.md +++ b/README.md @@ -104,38 +104,38 @@ Please see the [Contribution Guide](./CONTRIBUTING.md).
+ | - | |||||||
Hiroshi Seki | +Nemo | weepjp | kiritan | Denshi | mkatze | ne_moni | Melilot | -osapon |
- | |||||||||
osapon | 見当かなみ | YuzuRyo61 | mydarkstar | -Peter G. | nemu | sikyosyounin | YUKIMOCHI | @@ -175,7 +175,7 @@ Please see the [Contribution Guide](./CONTRIBUTING.md).Takashi Shibuya |