Jed Fox
Jed Fox
This brings the app up to the latest version of MetaTextKit and drops support for iOS 14, allowing the use of more modern APIs. - @MainasuK can you take a...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior When I open the menu for a post that is in...
Currently, all of the TestFlight builds are tagged with `build-xxx`, but App Store releases aren’t identified in any way. It would be great to get those tagged so folks can...
This allows llama.cpp to be called directly from Swift! First add `https://github.com/ggerganov/llama.cpp` to your `Package.swift` or Xcode project, selecting either this branch or `master` (once the PR is merged). Here’s...
Previously, `python quantize.py --models-path .. 7B 13B` would fail to find `../7B/ggml-model-f16.bin` Now, it computes the absolute path to the models and uses that instead which works.
A new pair of properties have been added to `llama_context_params`, a function pointer and an arbitrary context pointer that will be passed to the function pointer along with estimated read...
- [ ] abort first touch if a second `pointerdown` (i.e. for pan/zoom) occurs before the first pointer moves too far - fixes issues with selection, pan/zooming while making lines...
This should drastically reduce the main chunk size. The necessary code will be downloaded when clicking on Reports in the sidebar.
This cleans up the directory structure a bit and helps keep related functionality together. The code still uses `@actual-app/api` — I’m not sure if it would make sense to port...
Heuristics: - Use `let` in almost all cases, except: - when you call `require`, `useState`, or `useReducer`, use const - when you destructure `props`, `this.props`, or `this.state`, use const -...