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

ソフトウェアアップデート機能を実装 #264

Merged
merged 11 commits into from
Mar 20, 2021
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
/app/temp/debug_html/*
/app/temp/log/*
/app/temp/installed.lock
/app/temp/github_release_cache.json
/app/version
/app/vendor/
/public/uploads/[0-9a-zA-Z]
/public/config.php
Expand Down
3 changes: 3 additions & 0 deletions app/config.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
// publicとappの位置関係を修正した場合には変更してください
// Please edit the path when change `app` and `public` relative path condition.
define('WWW_DIR', __DIR__ . '/../public/'); // this path need finish with slash.

// 別のGitHub repoを追従する場合に設定してください
// define('GITHUB_REPO', '/uzulla/fc2blog');
Binary file modified app/locale/en_US.UTF-8/LC_MESSAGES/messages.mo
Binary file not shown.
27 changes: 27 additions & 0 deletions app/locale/en_US.UTF-8/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2503,3 +2503,30 @@ msgstr ""

msgid "Name that cannot be specified"
msgstr ""

msgid "System Update"
msgstr ""

msgid "Releases"
msgstr ""

msgid "Version"
msgstr ""

msgid "Operation"
msgstr ""

msgid "Release information query failed. Please try again later."
msgstr ""

msgid "Please backup your site before update."
msgstr "更新前にはかならずサイトのバックアップを作成してください。"

msgid "Request failed: invalid sig, please retry."
msgstr ""

msgid "Request failed: notfound request version."
msgstr ""

msgid "Update success."
msgstr ""
Binary file modified app/locale/ja_JP.UTF-8/LC_MESSAGES/messages.mo
Binary file not shown.
27 changes: 27 additions & 0 deletions app/locale/ja_JP.UTF-8/LC_MESSAGES/messages.po
Original file line number Diff line number Diff line change
Expand Up @@ -2550,3 +2550,30 @@ msgstr "ホスト ポート番号"

msgid "Name that cannot be specified"
msgstr "指定できない名称です"

msgid "System Update"
msgstr "システム更新"

msgid "Releases"
msgstr "リリース一覧"

msgid "Version"
msgstr "バージョン"

msgid "Operation"
msgstr "操作"

msgid "Release information query failed. Please try again later."
msgstr "情報取得に失敗しました、時間をおいてから再度お試しください。"

msgid "Please backup your site before update."
msgstr "更新前にはかならずサイトのバックアップを作成してください。"

msgid "Request failed: invalid sig, please retry."
msgstr "失敗しました、再度試してください。"

msgid "Request failed: notfound request version."
msgstr "失敗しました、指定のバージョンがみつかりませんでした。"

msgid "Update success."
msgstr "更新成功しました。"
Loading