Skip to content

Commit

Permalink
バグの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Robot-Inventor committed Jan 27, 2020
1 parent 914322b commit 45cd996
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions changelog.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ The meaning of the words are shown below:
#### Changed
- Behavior became a little faster than before by optimizing variable types.

### [v0.5.7.1dev-Albatross] - 2020-01-27
#### Fixed
- Fixed the issue that the update contents are not shown on the push notification of Update Checker.
- Fixed the issue that responses are not shown in the screen.

### [v0.5.6.0dev-Albatross] - 2020-01-27
#### Added
- Added ripple effect to the buttons. Because of this, oss_license.html was modified.
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ Edition : ORIZIN Agent HTML Based
#### 変更
- Behavior became a little faster than before by optimizing variable types.

### [v0.5.7.1dev-Albatross] - 2020-01-27
#### 修正
- アップデートを確認した際にプッシュ通知にアップデートの内容がうまく表示されない問題を修正しました。
- 入力内容と応答が表示されない問題を修正しました。

### [v0.5.6.0dev-Albatross] - 2020-01-27
#### 追加
- ボタンにリップルエフェクトを追加しました。また,それに伴いoss_license.htmlを変更しました。
Expand Down
2 changes: 1 addition & 1 deletion orizin_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def check_version_from_info(file):
@eel.expose
def check_update():
info_file = urllib.request.urlopen("https://raw.githubusercontent.com/Robot-Inventor/ORIZIN-Agent-HTML-Based/master/resource/information.txt").read().decode()
update_message = urllib.request.urlopen("https://raw.githubusercontent.com/Robot-Inventor/ORIZIN-Agent-HTML-Based/master/resource/update_message.txt").read().decode()
update_message = urllib.request.urlopen("https://raw.githubusercontent.com/Robot-Inventor/ORIZIN-Agent-HTML-Based/master/update_message.txt").read().decode()
f = open("resource/information.txt")
local_info_file = f.read()
f.close()
Expand Down
1 change: 1 addition & 0 deletions resource/dictionary/unknownQuestions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

明日の気温は何度
ありがとう
ニチワ
2 changes: 1 addition & 1 deletion resource/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<textarea id="requestForm">ここにテキストを入力してください。入力されたテキストに対する応答を読み上げます。</textarea>
<button type="button" id="startButton" class="ripple_effect">実行</button>
</div>
<div class="bottom_control_panel result_area ripple_effect">
<div id="result_area" class="bottom_control_panel ripple_effect">
</div>
</main>
<script src="../javascript/jquery-3.4.1.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion resource/information.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Series Name : ORIZIN Agent
Edition : ORIZIN Agent HTML Based
Version : v0.5.6.0dev
Version : v0.5.7.1dev
Code Name : Albatross
Date : 2020-01-27 JST
2 changes: 1 addition & 1 deletion update_message.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
リップルエフェクトの追加があります
アップデートの内容がプッシュ通知に表示されない問題と入力内容・応答が表示されない問題を修正しました

0 comments on commit 45cd996

Please sign in to comment.