Max Große
Max Große
We're currently using [android.preference](https://developer.android.com/reference/android/preference/package-summary) to manage our settings. But since this package is deprecated we should migrate to use [androidx.preference](https://developer.android.com/reference/androidx/preference/package-summary).
`getFragmentManager()` and related methods are [deprecated](https://developer.android.com/reference/android/app/Fragment) in API 28 so we should switch to the Android Jetpack alternative: https://developer.android.com/jetpack/androidx/releases/fragment
Instead of choosing "light / sans" or "light / monospace" we should have two different categories, one for the theme and for the font type. That way users can change...
Creating little notes and using them as reminders is one of my main use cases with a note taking app. I think it's a really useful feature that this app...
Hi 👋🏼 The CONTRIBUTING.md file doesn't mention the requirements (golangci-lint and richgo), we should add those for a smoother experience. And while we are on that, when I tried to...
## Error ``` Error: 0: Planner error 1: Error executing action 2: Action `configure_nix` errored 3: Action `create_directory` errored 4: Failed to execute command `"mount" "-d"` 5: No such file...
This PR fixes the pipeline to enable running tests again on Ubuntu and MacOS on OCaml verions 4.14.x and 5.0.x. Windows builds require some more special attention. There were some...
The pipeline doesn't run and is using outdated actions (`avms/setup-ocaml@v2` was superseded by the official `ocaml/setup-ocaml` action). We can copy some of the setup from how dune does it: https://github.com/ocaml/dune/blob/main/.github/workflows/workflow.yml...
The SIGINT (Ctrl+C) signal isn't handled properly when running inside a Docker container. I would expect when pressing Ctrl+C that the program and then the container exits. Instead, nothing happens...