Skip to content

Commit

Permalink
Merge branch 'gh-pages' of github.com:webduinoio/webduino-remote into…
Browse files Browse the repository at this point in the history
… gh-pages
  • Loading branch information
chaoyen1111 committed Nov 29, 2022
2 parents b37df51 + f72bb4f commit a52c083
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 8 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,21 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2022.11.15
## [Unreleased]

## [v1.0.2] - 2022.11.29

### Fixed

- 萬用遙控器小車拖拉過後,翻轉畫面小車位置偏移

## [v1.0.1] - 2022.11.15

### Fixed

- 使用手機開啟萬用遙控器輸入文字會刷新畫面,導致無法正常完成操作

## 2022.11.1
## [v1.0.0] - 2022.11.1

### Fixed

Expand All @@ -37,5 +45,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- 拿掉 webduinojs 的部份
- 獨立的 mqttClient.js

[unreleased]: https://github.com/webduinoio/webduino-remote/compare/v1.0.0...HEAD
[unreleased]: https://github.com/webduinoio/webduino-remote/compare/v1.0.2...HEAD
[v1.0.2]: https://github.com/webduinoio/webduino-remote/releases/tag/v1.0.2
[v1.0.1]: https://github.com/webduinoio/webduino-remote/releases/tag/v1.0.1
[v1.0.0]: https://github.com/webduinoio/webduino-remote/releases/tag/v1.0.0
11 changes: 8 additions & 3 deletions index-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
/>
</svg>
</div>
<footer >
<footer>
<div id="monsterBlock">
<div id="svgGreen" class="monster-btn">
<svg viewBox="0 0 249.6 251.4">
Expand Down Expand Up @@ -421,7 +421,12 @@
rx="4.8"
ry="4.8"
/>
<circle style="fill: #ffffff" cx="129.5" cy="65.1" r="1.1" />
<circle
style="fill: #ffffff"
cx="129.5"
cy="65.1"
r="1.1"
/>
</g>
</g>
</svg>
Expand Down Expand Up @@ -716,7 +721,7 @@
type="text"
class="input-group-input"
id="customMessage"
placeholder="輸入文字"
placeholder="Input text"
/>
<button class="input-group-button">Send</button>
</div>
Expand Down
5 changes: 4 additions & 1 deletion js/main-en.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,9 @@
}

// 處理中間圖片跟隨視窗大小移動位置
window.addEventListener('resize', imgPosition);
window.addEventListener('resize', () => {
kebbi.classList.remove('reset');
imgPosition();
});

}();
5 changes: 4 additions & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,9 @@
}

// 處理中間圖片跟隨視窗大小移動位置
window.addEventListener('resize', imgPosition);
window.addEventListener('resize', () => {
kebbi.classList.remove('reset');
imgPosition();
});

}();

0 comments on commit a52c083

Please sign in to comment.