Skip to content

Commit f342239

Browse files
committed
update CHANGELOG.md for release v7
add compiler and linker options for publishing on FDroid
1 parent 5ec30e5 commit f342239

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
- The app can now receive the text of the query from other apps (on clicking 'Share' in other apps, SmolChat will be listed as one of the options).
2-
- The app can create dynamic shortcuts for specific tasks. These shortcuts can also be added to the home screen for quick access. (#2)
3-
- Migrated from ObjectBox to Room (particularly for #58)
4-
- The app now has a custom icon (do let me know if it can improved)
5-
- There was issue with the CI that caused the build process to not strip symbols from native libraries, increasing the size of the APK. This has been fixed, thus reducing the size of the APK.
1+
- Add CPU extensions for `armv7` architecture (32-bit Android devices) to improve inference latency
2+
- Add 'Copy' and 'Share' actions for messages posted by the user (#68)
3+
- Sync with upstream llama.cpp
4+
5+
### Minor UI changes
6+
7+
- Show model size in GBs upto 2 decimal places in HuggingFace model explorer
8+
- Check if the selected file is a GGUF
9+
- Show model name in model delete dialog
10+
- Fix rendering the model's thinking response

smollm/src/main/cpp/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ set(GGUF_READER_SOURCES
7777
GGUFReader.cpp
7878
)
7979

80+
add_compile_options("-ffile-prefix-map=${LLAMA_DIR}=.")
81+
add_link_options("LINKER:--build-id=none")
82+
8083
# compiling for different CPU extensions for Arm64 (aarch64)
8184
# See docs/build_arm_flags.md for more details
8285

0 commit comments

Comments
 (0)