Skip to content

Commit

Permalink
v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
melianmiko committed May 6, 2023
1 parent ca4c21a commit 63430df
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .mmk_ab_config
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
PROJECT_ID=ZeppPlayer
PROJECT_SERVER_DIR=zepp_player
PROJECT_URL=https://melianmiko.ru/en/zepp_player
WIN_AUTO_UNPACK=true

6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
zeppplayer (1.6.2-1) bookworm jammy kinetic lunar; urgency=medium

* Fix GIF rendering

-- MelianMiko <[email protected]> Sat, 06 May 2023 22:48:03 +0700

zeppplayer (1.6.2-1) bookworm jammy kinetic lunar; urgency=medium

* Fix +1 func
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zeppplayer",
"version": "1.6.2",
"version": "1.6.3",
"description": "Mi Band 7 preview tool",
"main": "app/zepp_player/cli.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/ui_managment/GifRecorder.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class GifRecorder {
for(let i = 0; i < FPS * SECONDS * 2; i++) {
if(i === FPS*SECONDS) await this.player.setRenderLevel(2);

const canvas = await this.player.render();
const canvas = await this.player.render(true);
gif.addFrame(canvas, {delay: Math.round(1000 / FPS)});

this.player.performShift(i);
Expand Down

0 comments on commit 63430df

Please sign in to comment.