Kim Biesbjerg

Results 17 issues of Kim Biesbjerg

Is it possible to get total duration of a remote audio file? By using the event `updateDuration` event the duration is continually updated (I think until everything has been downloaded/buffered?)....

Player state sometimes does not change to `playing`, even though audio starts and `elapsedSecond` event emits. It happens randomly, but more often if your network connection is slow. I'm testing...

```ts const emailBody = [ this.translateService.instant('Please do not change anything below this line.'), this.translateService.instant('This information is used to help us troubleshoot technical issues.'), ].join('\n'); ``` In this example '`\n`' in...

bug

It seems it's not possible to specify `flavor`/`scheme` when running on device: `ionic capacitor run ios --scheme MYAPP --livereload --external` This has no effect: `--scheme MYAPP` Would it make sense...

triage

I copied the example for adding a `config-file` section for Android into my config.xml and ran `ionic build ios` Output: ``` bash-3.2$ ionic build android Running 'build:before' gulp task before...

help wanted

### Expected Behaviour Play next item in playlist smoothly ### Actual Behaviour Next item in playlist stutters at the beginning ### Reproduce Scenario (including but not limited to) #### Steps...

### Expected Behaviour When last item in playlist has completed `PLAYLIST_COMPLETED` should be called. ### Actual Behaviour It is not called. ### Reproduce Scenario (including but not limited to) ####...

I'd like to validate env vars coming from `.env` as well as from the system. System environment: ``` EXPORT SENTRY_AUTH_TOKEN=sensitivevalue ``` `.env`: ``` VITE_APP_VAR=publicvalue ``` `vite.config.ts`: ``` export default defineConfig(({...

I have found that scrollbars are not visible if content height is expanded async. This example should explain the issue: `home.ts` ``` ts import {Component} from '@angular/core'; @Component({ templateUrl: 'build/pages/home/home.html'...