Skip to content

Commit

Permalink
Fix update checker
Browse files Browse the repository at this point in the history
  • Loading branch information
melianmiko committed Jul 20, 2023
1 parent 336510d commit 455597c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
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.10",
"version": "1.7",
"description": "Unofficial ZeppOS emulator",
"main": "app/zepp_player/cli.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion requirements-pkg.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pystray~=0.19.4
bottle~=0.12.25
sv_ttk==2.4.2
waitress~=2.1.2
mmk-updater==0.13.1
mmk-updater==0.14.1
watchdog==3.0.0
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ sv_ttk==2.4.2
requests==2.28.2
waitress~=2.1.2
PyGObject~=3.44.1; sys_platform == "linux"
pyinstaller==5.9
mmk-updater==0.13.1
pyinstaller==5.12
mmk-updater==0.14.1
watchdog==3.0.0
3 changes: 3 additions & 0 deletions tools/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ Vagrant.configure("2") do |config|
debian.vm.provider "virtualbox" do |v|
v.memory = 512
v.cpus = 1
v.linked_clone = true
end

# Set up rsync
Expand Down Expand Up @@ -88,6 +89,7 @@ Vagrant.configure("2") do |config|
mac.vm.provider "virtualbox" do |v|
v.memory = 4096
v.cpus = 4
v.linked_clone = true

# For non-Intel CPUs
v.customize ["modifyvm", :id, "--cpu-profile", "Intel Core i7-6700K"]
Expand Down Expand Up @@ -171,6 +173,7 @@ Vagrant.configure("2") do |config|
win.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 4
v.linked_clone = true
end

# Install deps
Expand Down
1 change: 0 additions & 1 deletion zp_server/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def get_self_version():

def run():
updater = UpdaterTool(URL, get_self_version(), UpdaterUiMod())
updater.ppa_glob = ""
updater.start()


Expand Down

0 comments on commit 455597c

Please sign in to comment.