Daniel Holmes
Daniel Holmes
Thanks for the report @collinmmccabe . For some reason the setup still works on my machine, both with the original vagrant config and your adjustment above. Unfortunately I don't know...
Hi @bandtank , 1. See the note about a Game Connection in the README: https://github.com/danielholmes/coc-base-analyser#game-connection . You need to source or code up a connection to the game servers as...
@bandtank Some things to note about a connection like this: - It's against the Supercell/Clash of Clans terms of service. So to find it might be difficult - A connection...
This worked for me (for usb support, still haven't got bluetooth working for my PS3 controller): https://github.com/libsdl-org/SDL/issues/4923#issuecomment-966722634
@sorenhoyer that all makes sense. I think all values should probably be moved to the config sub object (leaving room for other plugin specific, non-relay.config.js related settings). This will break...
@dr3 yea definitely. I'm not working on any relay projects atm so don't have a desire to implement it. Would accept a PR though if you or someone else has...
Hi @ro-savage . For my part, I don't use relay any more and won't have the time or motivation to do the change. I can merge a PR enabling support...
I fixed it (in my webpack build) using: ```js resolve: { modules: ['node_modules'], extensions: ['.js', '.vue', '.ts'], alias: { 'vue$': 'vue/dist/vue.esm.js', 'public': path.resolve(__dirname, '../public'), 'vue-mapbox': path.resolve(__dirname, '../node_modules/vue-mapbox/dist/vue-mapbox.umd.min.js') } } ```
This Stack Overflow question appears to be related: https://stackoverflow.com/questions/50824353/mapbox-style-changes-breaks-on-zoom-when-a-layer-is-added
@vinayakkulkarni My temporary solution was to access the map via refs. e.g.: ```html ``` ```js this.$refs.mglMap.map.fitBounds(...); ```