mkiol

Results 221 comments of mkiol

> I had opened a request some time ago to be able to implement fonts for dyslexics. (opendixlexic) No worries, I remember :) Most likely will be in the next...

The new version 4.6.0 brings some improvements for the model browser. It's not full Tree-style, but it's a bit better. Multi-voice models are grouped, so navigating the model browser is...

It is not as scary as it may seem at first glance :) If you want to build this app from the sources, you can change the [CMake options](https://github.com/mkiol/dsnote/blob/main/CMakeLists.txt) and...

> system will complain about some unrelated dependency down the line. Like Piper or Espeak, even though I've disabled building of them. What I want is to remove dependency on...

> Currently I'm failing at I can't reproduce this problem 🤔. Can you try with clean build or remove `CMakeCache.txt` from your build directory? And use these CMake options: ```...

I sill don't know why you got this error but... I the most recent commits, I've managed to move 'vosk' and 'rhvoice' to optional features. This means that existence of...

Thanks for the report. You are referring to 'Translator' mode, right? In 'Translator' mode, available STT/TTS models are limited only selected language. If you want to set the model for...

😿 New fix. Sync to latest commit and use following options: ``` cmake \ -DCMAKE_BUILD_TYPE=Release \ -DWITH_DESKTOP=ON \ -DWITH_PY=OFF \ -DBUILD_WHISPERCPP_CUBLAS=OFF \ -DBUILD_WHISPERCPP_HIPBLAS=OFF \ -DBUILD_VOSK=OFF \ -DBUILD_RHVOICE=OFF \ -DBUILD_RHVOICE_MODULE=OFF \...

Nice catch! Assuming that every system has bash is definitely not right. Awesome that you found this.

Thank you for all the tests and struggles! > managed to fix the scripts! it was enough to change #!/usr/bin/bash to #!/bin/sh. To avoid these kind of problems I should...