Christian glacet

Results 99 comments of Christian glacet

@MacKenzieHnC I have no idea how this works, but it seems like the filename is [stored somewhere in the app context](https://learn.microsoft.com/en-us/dotnet/api/android.content.context.getdatabasepath?view=xamarin-android-sdk-13). The deletion [seems to be](https://github.com/andpor/react-native-sqlite-storage/blob/b6aeac439b9d038bbb9d2e16812d512c38246775/platforms/android/src/main/java/org/pgsqlite/SQLitePlugin.java#L550-L561) relying only on this...

I just tried the library for the first time, it works as expected but I agree that it makes no sense to have both a type and a schema that...

Having OpenAPI generation is very interesting, that would avoir having to rewrite the same thing twice.

Hmm, I'm not sure I get what you mean, but here is my a `test.rst` file: ```rst file without header/title. ``` And here are the relevant parts of the `config.py`:...

Thanks, I'll move this to sphinx then and patch it on my side in the mean time.

That patch is not enough sadly, there is another place that treats title apparently. Here is how I patched it (at least to remove the `` part), in my `conf.py`:...

The title wouldn't be empty, it would be equal to `html_title`. Here the problem is that it's equal to `f"— {html_title}"`.

I managed to solve the issue by downgrading sphinx to `3.2.1`: ```diff [tool.poetry.dev-dependencies] -sphinx = "^3.3.1" +sphinx = "3.2.1" ``` The error also appears on sphinx `3.3.0`.

No, it's a different problem, I had #13 too but I solved it by adding this to my `conf.py`: ```python """Patching m2r2""" import m2r2 current_m2r2_setup = m2r2.setup def patched_m2r2_setup(app): try:...

@mromanuk can you try again? Just to make sure use this version: ```bash BEAR_TEST=true /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/cglacet/bear/61e00fc226afb5781878548185fdc62cdefd3ff0/install.sh)" ``` I've updated a bit widely as I had no idea...