File tree Expand file tree Collapse file tree
KMEI/KeymanEngine/Classes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ samples/KMSample2/KeymanEngine.xcframework
1313samples /KMSample2 /build
1414engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /keymanios.js
1515engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /keymanweb-osk.ttf
16+ engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /globe-hint.css
1617engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /kmwosk.css
1718engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /keyman.js.map
1819engine /KMEI /KeymanEngine /resources /Keyman.bundle /Contents /Resources /keymanweb-webview.js
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ extension KeymanWebViewController {
182182 }
183183 view = nil
184184 }
185-
185+
186186 func languageMenuPosition( _ completion: @escaping ( CGRect ) -> Void ) {
187187 webView!. evaluateJavaScript ( " langMenuPos(); " ) { result, _ in
188188 guard let result = result as? String , !result. isEmpty else {
Original file line number Diff line number Diff line change @@ -245,6 +245,10 @@ extension Storage {
245245 resourceName: " kmwosk.css " ,
246246 dstDir: baseDir,
247247 excludeFromBackup: true )
248+ try Storage . copy ( from: bundle,
249+ resourceName: " globe-hint.css " ,
250+ dstDir: baseDir,
251+ excludeFromBackup: true )
248252 try Storage . copy ( from: bundle,
249253 resourceName: " keymanweb-osk.ttf " ,
250254 dstDir: baseDir,
Original file line number Diff line number Diff line change @@ -102,7 +102,8 @@ function update_bundle ( ) {
102102 KMW_PRODUCT=" $KEYMAN_ROOT /web/build/app/webview/$CONFIG "
103103 KMW_RESOURCES=" $KEYMAN_ROOT /web/build/app/resources"
104104
105- # Copy over the relevant resources! It's easiest to do if we navigate to the resulting folder.
105+ # Copy over the relevant resources! It's easiest to do if we navigate to the resulting folder.
106+ cp " $KMW_RESOURCES /osk/globe-hint.css" " $BUNDLE_PATH /globe-hint.css"
106107 cp " $KMW_RESOURCES /osk/kmwosk.css" " $BUNDLE_PATH /kmwosk.css"
107108 cp " $KMW_RESOURCES /osk/keymanweb-osk.ttf" " $BUNDLE_PATH /keymanweb-osk.ttf"
108109 cp " $KMW_PRODUCT /keymanweb-webview.js" " $BUNDLE_PATH /keymanweb-webview.js"
You can’t perform that action at this time.
0 commit comments