GitHub Action
3f0d5334b5
Automated update of relay data - Sun Dec 7 06:22:59 UTC 2025
2025-12-07 06:22:59 +00:00
GitHub Action
205cc3c8d3
Automated update of relay data - Sun Nov 30 06:24:08 UTC 2025
2025-11-30 06:24:08 +00:00
GitHub Action
0bd034b916
Automated update of relay data - Sun Nov 23 06:22:51 UTC 2025
2025-11-23 06:22:51 +00:00
yet300
57f4c030cf
Merge remote-tracking branch 'origin/main'
...
# Conflicts:
# app/src/main/assets/nostr_relays.csv
2025-11-19 20:56:52 +04:00
yet300
1143e49a23
Merge remote-tracking branch 'upstream/main'
...
# Conflicts:
# app/src/main/assets/nostr_relays.csv
2025-11-19 20:55:42 +04:00
callebtc and GitHub
04ea2a3162
refactor app constants: service UUID for BLE ( #500 )
2025-11-18 21:26:20 +01:00
GitHub Action
cae1e3d5b9
Automated update of relay data - Sun Nov 16 06:22:37 UTC 2025
2025-11-16 06:22:37 +00:00
GitHub Action
466c8176a1
Automated update of relay data - Sun Nov 16 06:06:45 UTC 2025
2025-11-16 06:06:45 +00:00
GitHub Action
bb3dd9c1e2
Automated update of relay data - Sun Nov 9 06:21:43 UTC 2025
2025-11-09 06:21:43 +00:00
GitHub Action
02cc6301e0
Automated update of relay data - Sun Nov 9 06:06:33 UTC 2025
2025-11-09 06:06:33 +00:00
callebtc and GitHub
282ac0fe5a
Fix: do not reject empty packets that arent message type ( #510 )
...
* do not reject empty packets that arent message type
* leave message with empty byte array
* clean up comments
2025-11-03 20:37:31 +01:00
GitHub Action
4b84db0b18
Automated update of relay data - Sun Nov 2 06:22:16 UTC 2025
2025-11-02 06:22:16 +00:00
GitHub Action
cf53c65cfe
Automated update of relay data - Sun Nov 2 06:06:38 UTC 2025
2025-11-02 06:06:38 +00:00
callebtc and GitHub
292ca4532b
fix connection attempt counter tracker ( #503 )
2025-10-30 13:50:47 +01:00
callebtc and GitHub
a4ce8cc979
better tracking of first announce seen ( #502 )
2025-10-30 00:39:24 +01:00
GitHub Action
cd02bc8dcf
Automated update of relay data - Sun Oct 26 06:21:31 UTC 2025
2025-10-26 06:21:31 +00:00
GitHub Action
80d897a022
Automated update of relay data - Sun Oct 26 06:06:36 UTC 2025
2025-10-26 06:06:36 +00:00
yet300
f24d170bf0
Merge remote-tracking branch 'origin/main'
2025-10-25 12:25:28 +04:00
callebtc and GitHub
c3f5739fea
refactor app constants: service UUID for BLE ( #494 )
2025-10-22 13:48:35 +02:00
callebtc and GitHub
da7fdd0f23
suppress relay of reassambled packet by setting TTL=0 ( #492 )
2025-10-21 12:52:14 +02:00
Developer Chunk and GitHub
9535ca8940
feat: Add tablet landscape orientation support ( #490 )
...
- Tablets now support landscape mode, phones remain portrait-only
- Add OrientationAwareActivity base class for orientation management
- Add DeviceUtils.isTablet() for runtime device detection
- Update MainActivity and GeohashPickerActivity to extend OrientationAwareActivity
- Uses multiple detection criteria (screen size, density, configuration)
Fixes #480
2025-10-20 20:14:50 +02:00
callebtc and GitHub
f633509848
bump to 1.5.1 ( #488 )
1.5.1
2025-10-19 12:43:55 +02:00
callebtc and GitHub
59ee530d54
show media buttons only in mesh ( #487 )
2025-10-19 12:32:56 +02:00
GitHub Action
19f647367c
Automated update of relay data - Sun Oct 19 06:21:51 UTC 2025
2025-10-19 06:21:51 +00:00
GitHub Action
7881210785
Automated update of relay data - Sun Oct 19 06:06:46 UTC 2025
2025-10-19 06:06:46 +00:00
callebtc and GitHub
2869a2b192
actually 1.5.0 ( #485 )
1.5.0
2025-10-18 15:03:45 +02:00
callebtc and GitHub
20342351a5
Camera take picture ( #484 )
...
* camera capture
* icon change
* image preview great
* remove string
2025-10-18 15:03:32 +02:00
callebtc and GitHub
af4dd175c4
lower voice quality, smaller file size ( #483 )
2025-10-18 14:20:35 +02:00
callebtc and GitHub
f99cb46b26
Location notes ( #482 )
...
* try 1
* works
* equalize UI with ios
* ui cleanup
* geohash chats: no building
* load notes in background
* insta
* simplify and tor icon change
* icons nice
* refactor
* unify location enabled / disabled
* cooler
* simplify, doesnt subscribe right away
* load when clicked
* plus minus location notes
* load when tor is available
* translations
* fix transalations
* implement review comments
2025-10-18 14:19:53 +02:00
callebtc and GitHub
e8862d5128
versioncode 24 ( #479 )
2025-10-16 14:26:13 +02:00
callebtc and GitHub
c4966b9a28
remove from all languages ( #478 )
2025-10-16 14:20:35 +02:00
Developer Chunk and GitHub
fc3a00b4b9
fix: Resolve debug settings bottom sheet crash on some devices ( #474 )
...
Fixes #472 - App crashing in debug settings
The issue was in ui/debug/DebugSettingsSheet.kt:
- Line 304: Code was pre-formatting double value with String.format() then passing
to string resource that expected raw double parameter
- Line 307: Numeric values weren't properly converted to strings for string resource
that expected string parameters
Changes made:
- Changed stringResource(R.string.debug_target_fpr_fmt, String.format("%.2f", gcsFpr))
to stringResource(R.string.debug_target_fpr_fmt, gcsFpr) - passes raw double value
- Changed stringResource(R.string.debug_derived_p_fmt, p, nmax)
to stringResource(R.string.debug_derived_p_fmt, p.toString(), nmax.toString()) -
properly converts numeric values to strings
This resolves the IllegalFormatConversionException: f != java.lang.String crash
when scrolling through the debug settings bottom sheet.
2025-10-16 13:21:44 +02:00
callebtc and GitHub
4a6fe922f3
bump version 1.4.0 ( #470 )
1.4.0
2025-10-14 13:02:12 +02:00
yet300 and GitHub
2703c521d9
Merge branch 'main' into main
2025-10-13 11:20:01 +04:00
callebtc and GitHub
1486121b77
Extract constants ( #469 )
...
* extract constants
* refactor constants
2025-10-12 20:59:37 +02:00
callebtc and GitHub
c61347defe
Remove ghost sync ( #468 )
...
* delete stale peers and messages from sync manager
* ignore old announcenements
2025-10-12 19:41:44 +02:00
callebtc and GitHub
ad28cc710c
Translations ( #467 )
...
* english done
* de
* more extraction
* wip strings en
* translations work
* remove unneeded translations
* remove notification message
* add languages
* new languages
2025-10-12 18:54:20 +02:00
GitHub Action
ce31b858ab
Automated update of relay data - Sun Oct 12 06:20:12 UTC 2025
2025-10-12 06:20:12 +00:00
GitHub Action
3b2241e891
Automated update of relay data - Sun Oct 12 06:06:18 UTC 2025
2025-10-12 06:06:18 +00:00
4030396203
fix: clear channel messages on reset ( #446 )
...
When `clearMessages` is called, it now also clears the `channelMessages` in the state, ensuring that messages from specific channels are also removed.
Co-authored-by: elian.kumaraku <elian.kumaraku@creactives.com >
2025-10-11 21:31:35 +02:00
GitHub Action
776d6c5cd7
Automated update of relay data - Sun Oct 5 06:20:09 UTC 2025
2025-10-05 06:20:09 +00:00
GitHub Action
7e65450eac
Automated update of relay data - Sun Oct 5 06:06:17 UTC 2025
2025-10-05 06:06:17 +00:00
yet300
e0c7240a8b
Merge remote-tracking branch 'origin/main'
2025-09-30 12:54:51 +04:00
yet300
696f698046
refactor: new close button like ios(but not liquid glass)
2025-09-30 12:52:56 +04:00
GitHub Action
95358ac34a
Automated update of relay data - Sun Sep 28 06:20:40 UTC 2025
2025-09-28 06:20:40 +00:00
GitHub Action
6546943cf7
Automated update of relay data - Sun Sep 28 06:06:42 UTC 2025
2025-09-28 06:06:42 +00:00
yet300
6cccaaed5b
Merge remote-tracking branch 'origin/main'
2025-09-24 14:22:38 +04:00
GitHub Action
9e25ee4080
Automated update of relay data - Sun Sep 21 06:21:05 UTC 2025
2025-09-21 06:21:05 +00:00
GitHub Action
2e4b0b04ed
Automated update of relay data - Sun Sep 21 06:06:38 UTC 2025
2025-09-21 06:06:38 +00:00
callebtc and GitHub
2b0bb5af74
fix unit tests ( #442 )
2025-09-20 00:05:46 +02:00