1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-24 05:11:15 +00:00
Commit graph

279 commits

Author SHA1 Message Date
9cba4e0ef0 Moved views to seperate package 2016-10-31 18:16:30 +09:00
3309308abe Imported translations 2016-10-31 16:13:26 +09:00
65c0c2edec Imported translations 2016-10-27 02:07:58 +09:00
8f1f5ba76e Mark directory selection item as focusable (fixes #486, #762) 2016-10-17 00:00:42 +09:00
ProactiveServices
8414d0dc76 Permit numbers in debug option 2016-10-08 10:05:08 +01:00
JohnVeness
6ba4683400 Update strings.xml
Pluralise "IDs" to match the rest of the sentence.
2016-10-05 21:39:16 +01:00
f1b6bde6ad Imported translations 2016-10-04 16:59:06 +09:00
licaon-kter
9f6ef7c6af Fix #749 2016-09-30 22:04:47 +03:00
730f9d035f Show menu items with text if possible 2016-09-25 13:16:08 +09:00
d8a05ed392 Fixed various lint issues 2016-09-21 17:36:03 +09:00
1b64d79287 Imported translations 2016-09-20 11:28:42 +09:00
ef297a7df1 Added missing icons for previous commit 2016-09-07 13:37:06 +02:00
c60968d207 Improved behaviour for add device/add folder (fixes #650)
- Added confirm dialog when exiting without saving
- Replaced floppy disk icon with checkmark
2016-09-07 12:39:07 +02:00
aefec10f84 Added missing files for previous commit 2016-09-07 03:05:45 +02:00
d464010ee5 Added seperate first start activity 2016-09-07 03:02:18 +02:00
licaon-kter
05abd17d56 Fix typo, add info 2016-08-27 10:31:53 +03:00
50f98e3f69 Set user/password in config instead of removed STGUIAUTH (fixes #704). 2016-08-25 14:23:19 +02:00
80909ca6d2 Imported translations 2016-08-24 22:35:17 +02:00
aead9213b6 Imported translations 2016-08-19 17:58:16 +02:00
dff3e052af Support TOR connectivity (fixes #589). 2016-08-19 14:07:13 +02:00
c467ef7792 Mark drawer items as focusable and clickable (fixes #486) 2016-08-19 02:35:42 +02:00
Martin Carpella
07b628a80b Improve "Run as foreground" setting's description (fixes #715) 2016-08-12 21:21:55 +02:00
dd7966a228 Added confirm dialog to restart button (fixes #716) 2016-08-03 00:58:41 +02:00
a30c5a7d4b Imported translations. 2016-08-01 15:31:33 +02:00
fdb64191ed Imported translations. 2016-07-21 22:40:17 +02:00
cf1585494f Removed unused FolderFragment/DeviceFragment drawables. 2016-07-20 18:16:53 +02:00
5b9cd28eb8 Fixed crash when opening DevicesFragment (fixes #690).
It seems that the xxxhdpi `active` drawable was corrupted. The old
build tools could still read the drawable, but the new ones
couldn't handle it. Regenerating the drawable fixed the crash.

Also removed `inactive` drawables and xml drawable which weren't
being used.
2016-07-20 18:11:58 +02:00
d22fbc3f38 Merge pull request #694 from capi/foreground-service
Experimental "Run as foreground service" setting
2016-07-14 15:37:56 +02:00
Martin Carpella
7ab4f4d835 Experimental "Run as foreground service" setting 2016-07-14 00:01:00 +02:00
97ea54f716 Removed unneeded quotation marks. 2016-07-13 13:35:26 +02:00
49d053f6bc Clarified root option warning (fixes #688). 2016-06-27 19:14:31 +02:00
c49e33818a Imported translations. 2016-06-25 14:25:15 +02:00
Lars K.W. Gohlke
48e19a88bb fix api access to activate/deactive natEnabled
* fix api access to activate/deactive natEnabled

* remove old key and add a single 'nat_enabled' new one

* fixed translation
2016-06-25 14:04:04 +02:00
b4e2c44ab2 Added "enable relaying option (fixes #616). 2016-06-12 22:24:09 +02:00
650550c573 Imported translations. 2016-06-12 15:19:42 +02:00
c48cd2c3f3 Merge pull request #662 from lkwg82/syncthing-version
Syncthing version
2016-06-10 16:34:43 +02:00
Lars K.W. Gohlke
6a337bd443 fixes RestApi options for 'listenAddress' 2016-06-09 23:52:00 +02:00
Lars K.W. Gohlke
1aafb38764 adds display of syncthing version in main drawer 2016-06-09 08:55:49 +02:00
d0efdca1e8 Imported translations. 2016-05-25 14:51:49 +02:00
573533a35f Fixed device toggle (fixes #647). 2016-05-19 11:40:55 +09:00
6403756ef2 Imported translations. 2016-05-18 12:10:20 +09:00
12997d6b36 Added support for folder labels. 2016-05-04 03:41:55 +02:00
Matthias Leonhardt
b9919adccd Added a IntentService to receive Broadcast-Intents to remotely control / configure the app.
MainActivity: Moved binding-functions to onPause() and onResume() so that the SyncThingService is only bound to the activity if the activity is active.

New class AppConfigReceiver:
Support start and stop of the SyncThingService
- restarting a running service again should not be an issue
- stop service only if "always run in background"-mode is disabled. Otherwise show a notification indicating this.

Instrumentation-tests:
- Added tests for AppConfigReceiver
- Extended MockContext to also consume stopService commands.
- testGetReadableTransferRate: Apparently the return-values have changed a bit. Adjusted the asserts to the current return-values.

SycthingService:
Added code for thread-safety in case the service still starting when it should be stopped. Then PollWebGuiAvailableTaskImpl is active and waits for the Synthing-API to become active. So that and onDestroy have to be synchronized.
Added a stopSelf() in PollWebGuiAvailableTaskImpl.onPostExecute() in case mStopScheduled was active.

Commented my change in the javadoc at onDestroy. Put a reference to that comment to .onPostExecution()
2016-03-25 21:13:51 +00:00
b1eee1b1be Fixed various lint warnings. 2016-04-21 23:16:10 +02:00
493dd80a04 Imported translations. 2016-04-21 23:04:41 +02:00
Lars K.W. Gohlke
10f8f849dd fix stale bug report link 2016-04-10 16:07:14 +02:00
17ff8e7f83 Moved donate link to app settings. 2016-04-03 21:08:22 +02:00
67b97435e9 Changed donate link to Syncthing website.
Also removed tip4commit badge from Readme.
2016-04-03 20:23:02 +02:00
0f4f24a501 Updated translations. 2016-03-30 22:36:47 +02:00
8a85edfac1 Imported translations. 2016-03-24 12:35:22 +01:00