From 5aee6d97c916e4e6b8fc05c988ebd16409a26b94 Mon Sep 17 00:00:00 2001 From: Alberto Sottile Date: Sat, 6 Jul 2019 16:47:08 +0200 Subject: [PATCH 1/2] macOS: OS-related menus were in German when the OS lang set was English --- travis/macos-deploy.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/travis/macos-deploy.sh b/travis/macos-deploy.sh index 3fb21ab..2b192b9 100755 --- a/travis/macos-deploy.sh +++ b/travis/macos-deploy.sh @@ -1,9 +1,13 @@ #!/usr/bin/env bash +mkdir dist/Syncplay.app/Contents/Resources/English.lproj +mkdir dist/Syncplay.app/Contents/Resources/en_AU.lproj +mkdir dist/Syncplay.app/Contents/Resources/en_GB.lproj mkdir dist/Syncplay.app/Contents/Resources/German.lproj mkdir dist/Syncplay.app/Contents/Resources/Italian.lproj mkdir dist/Syncplay.app/Contents/Resources/ru.lproj mkdir dist/Syncplay.app/Contents/Resources/Spanish.lproj +mkdir dist/Syncplay.app/Contents/Resources/es_419.lproj pip3 install dmgbuild mv syncplay/resources/macOS_readme.pdf syncplay/resources/.macOS_readme.pdf dmgbuild -s appdmg.py "Syncplay" dist_bintray/Syncplay_${VER}.dmg From e7a475ddbed6273dae8257d0c41b9a3a004b7d34 Mon Sep 17 00:00:00 2001 From: Robin Lu Date: Fri, 26 Jul 2019 05:21:12 +0800 Subject: [PATCH 2/2] Misspell: change "inteface" to "interface" (#247) Changing "zope.inteface" to "zope.interface" for dependencies installation. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 84f4305..506c59c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ certifi>=2018.11.29 twisted[tls]>=16.4.0 appnope>=0.1.0; sys_platform == 'darwin' pypiwin32>=223; sys_platform == 'win32' -zope.inteface>=4.4.0; sys_platform == 'win32' \ No newline at end of file +zope.interface>=4.4.0; sys_platform == 'win32'