Page 3 of 8

Re: [EXTENSION] BitTorrent Sync

Posted: 22 Sep 2014 14:50
by crest
liver wrote:
crest wrote: Do you mean the name you can see in BitTorrent Sync? If yes, just open the WebUI of BitTorrent Sync (standard http://YourIPAddress:8888) open OPTIONS | PREFERENCES and there you can edit the device name.
In NAS4FREE version it impossible. Readonly preference.

NAS preference
Image
Which Version of BTS do you use (the screen shot is blurred and I assume it is 1.4.8xxx ?)? In 1.4.75 you can edit the device name so try this version.

EDIT: just now I updated to 1.4.83 Beta - for me it's still possible to edit the device name but - strange, on your screen shot there is also User name and Finger print visible which I don't see in my preferences ... ??? sorry, I can't reproduce it, I think it's a BTS issue for some reasons

download/file.php?mode=view&id=2295

Re: [EXTENSION] BitTorrent Sync

Posted: 22 Sep 2014 17:44
by liver
TUXv15.png
Can you upload here /.sync/webui.zip ?

Re: [EXTENSION] BitTorrent Sync

Posted: 22 Sep 2014 20:49
by liver

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 10:09
by liver

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 10:10
by crest
Ok, thank you for the information.

Even though the device name is fixed by now you COULD change the name in the sync.conf file. This name will be displayed in other clients but NOT in the preferences.
1. Disable BTSync extension in WebGUI
2. Change sync.conf via ADVANCED | FILE EDITOR -> open the sync.conf file (/Path/To/Your/Extensions/btsync/sync.conf) and add this line:

Code: Select all

    "device_name": "YourDeviceName",
before storage_path and save the file.
3. Restart BTSync via CLI or ADVANCED | COMMAND:

Code: Select all

su root -c '/Path/To/Your/Extensions/btsync/btsync --config /Path/To/Your/Extensions/btsync/sync.conf' 
... and you will see now in every client your new name.

This works for me but I cannot guarantee if there are further changes from the guys from BTS that this will work in future !

NOTE: if you do some changes in the BitTorrent Sync extension and save this you will loose the name entry, so you have to add it again manually - in the next version of my extension I will include the device name.

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 10:20
by crest
chrisf4lc0n wrote:#server.modules += ( "mod_rewrite")
# Workaround to have a working reverse-proxy that matches an URL does URL rewriting in Ligghtpd.
#
# Ligtthpd 1.4.28 cannot perform both matching and URL rewriting at the same time.
# Therefore we need to define 2 proxies, one does the matching and bounce the request
# to the other one, in charge of rewriting the URL before proxying the request to the target server.
#
...

That is what I have found, tried to implement it and started getting the 500 error, which is something, as before it just kept looping itself!
Will work on it...
Hi, did you recognice that BTS now supports https? :!: :!: :!:

Just add the following lines to sync.conf and you get it:

Code: Select all

"force_https" : true,
"ssl_certificate" : "/Path/To/btsync/keys/cert.pem",
"ssl_private_key" : "/Path/To/btsync/keys/private.key"
of course you must create the certificate and key files before :D
My sync.conf file:

Code: Select all

{
    "device_name": "YourDeviceName",
    "storage_path": "/Path/To/btsync/.sync/",
    "pid_file": "/Path/To/btsync/.sync/sync.pid",
    "webui": {
        "listen": "MyLocalIP:8888",
        "force_https" : true,
        "ssl_certificate" : "/Path/To/btsync/keys/cert.pem",
        "ssl_private_key" : "/Path/To/btsync/keys/private.key"
    },
    "disk_low_priority": true,
    "folder_rescan_interval": 600,
    "lan_encrypt_data": true,
    "lan_use_tcp": false,
    "max_file_size_diff_for_patching": 1000,
    "max_file_size_for_versioning": 1000,
    "rate_limit_local_peers": false,
    "recv_buf_size": 5,
    "send_buf_size": 5,
    "sync_max_time_diff": 600,
    "sync_trash_ttl": 30
}
The bad thing - currently you will loose additional entries if you do some changes in the BitTorrent Sync extension - my next version will take care of this, pls be patient ;)

Regards
crest

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 16:36
by chrisf4lc0n
I did promise to do that on a reverse Apache Proxy from my Pi, but have not had time to wrap my head around it...
This way it will be much easier anyway... Currently at work, but will test it before going home :) Thanks a ton crest! I would love to have your knowledge mate!

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 16:39
by chrisf4lc0n
If it comes to your extension and new features compatibility, all you will need to do is the tick box for the HTTPS option as well as the 2 browse buttons one for the *.pem and one for the *.key files... I know it sounds easier than it is to implement, but I am sure you know how to do that.

EDIT: You can also use *.pem and *.key files from under the System>General tabs...
EDIT2: Tested it... and it seems to be working, but for the external/internet access you will need to change the line "listen" to:

Code: Select all

"listen": "0.0.0.0:8889"
Port can be different, but I am using 8889 as 8888 is reserved for my Pi.

Re: [EXTENSION] BitTorrent Sync

Posted: 23 Sep 2014 21:14
by chrisf4lc0n
Oh, and one more thing the lines:

Code: Select all

"ssl_certificate" : "/Path/To/btsync/keys/cert.pem",
"ssl_private_key" : "/Path/To/btsync/keys/private.key"
are not even needed, unless you want your own certificate there.
If you do not specify them the BTSync will use the generic BTSync certs.

Re: [EXTENSION] BitTorrent Sync

Posted: 28 Sep 2014 15:16
by Vasily1
In current version (v0.6.1) of THIS Extension not working selection of virtual interfaces (vlan, lagg, etc.)
To correct this issue need change file "btsync.php" ("path_to_extensions_folder/btsync/ext/" or "/usr/local/www/ext/btsync/" if you don't need to save it after restart or if you need see results immediately):
search raw 278 with:

Code: Select all

$a_interface = get_interface_list();
and insert code after:

Code: Select all

// Add VLAN interfaces.
if (isset($config['vinterfaces']['vlan']) && is_array($config['vinterfaces']['vlan']) && count($config['vinterfaces']['vlan'])) {
	foreach ($config['vinterfaces']['vlan'] as $vlanv) {
		$a_interface[$vlanv['if']] = $vlanv;
		$a_interface[$vlanv['if']]['isvirtual'] = true;
	}
}
// Add LAGG interfaces.
if (isset($config['vinterfaces']['lagg']) && is_array($config['vinterfaces']['lagg']) && count($config['vinterfaces']['lagg'])) {
	foreach ($config['vinterfaces']['lagg'] as $laggv) {
		$a_interface[$laggv['if']] = $laggv;
		$a_interface[$laggv['if']]['isvirtual'] = true;
	}
}

Re: [EXTENSION] BitTorrent Sync

Posted: 28 Sep 2014 19:50
by crest
chrisf4lc0n wrote:I did promise to do that on a reverse Apache Proxy from my Pi, but have not had time to wrap my head around it...
This way it will be much easier anyway... Currently at work, but will test it before going home :) Thanks a ton crest! I would love to have your knowledge mate!
Don't mention it, it's my pleasure. Happy to see that the extension is somehow useful for other people :D
chrisf4lc0n wrote: ...
EDIT: You can also use *.pem and *.key files from under the System>General tabs...
EDIT2: Tested it... and it seems to be working, but for the external/internet access you will need to change the line "listen" to:
...
are not even needed, unless you want your own certificate there.
If you do not specify them the BTSync will use the generic BTSync certs.
...
Thanks for your advice, I will implement it in two parts, a basic section with just a few options and full blown in advanced section.
Vasily1 wrote: In current version (v0.6.1) of THIS Extension not working selection of virtual interfaces (vlan, lagg, etc.)
To correct this issue need change file "btsync.php" ("path_to_extensions_folder/btsync/ext/" or "/usr/local/www/ext/btsync/" if you don't need to save it after restart or if you need see results immediately):
search raw 278 with:
What a timing :D just now I'm on the way to finish the new version for BTS 1.4xx.
Yes, thank you, I will take your advice too ... !

Regards
crest

Re: [EXTENSION] BitTorrent Sync

Posted: 14 Oct 2014 10:14
by Andy22
Since BTsync 1.4.82+ the default Btsync client UI does not properly support (does not save) a specific listening port, which results in problematic sync behaviour for my NAS machine. So can you add a option, where we can specify the listening port via config file?

A general text-field that simply adds the entered options to the end of the btsync config file would also solve such problems and would even allow to add future options without the need to update the extension. The Webserver service has something like this called "Auxiliary parameters" and this helps adds whatever option we may need in a more general way.

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 08:23
by crest
Hi Andy22!
Andy22 wrote: Since BTsync 1.4.82+ the default Btsync client UI does not properly support (does not save) a specific listening port, which results in problematic sync behaviour for my NAS machine. So can you add a option, where we can specify the listening port via config file?
In the new release of my extension I implemented all new options which were introduced starting with BitTorrent Sync (BTS) 1.4 so you can specifiy also the listening port which overrules the current bug in BTS. You now can also change the device name, which overrules the naming problem (see => viewtopic.php?f=71&t=5704&start=50#p42775).
Andy22 wrote: A general text-field that simply adds the entered options to the end of the btsync config file would also solve such problems and would even allow to add future options without the need to update the extension. The Webserver service has something like this called "Auxiliary parameters" and this helps adds whatever option we may need in a more general way.
This is not neccessary because you can directly edit the sync.conf file and add every parameter directly via the N4F WebGUI (in ADVANCED | File editor). Just copy the full path and name of the conf file - which you can see at the bottom of the configuration page of the BTS extension under NOTE - into the file path of the editor, make your changes and - voilá ;) .
Since the sync.conf file is stored in a persistant place your changes stay permanent.

If you want you can try the new release, it's almost finished (I have still some changes in my mind but everything in this pre-release is tested and working). Just follow the steps for the new installation procedure below, every upcoming update can than be done directly via the WebGUI (Extension Maintenance Tab).

INSTALLATION
1. Prior to the installation make a backup of the N4F configuration via SYSTEM | BACKUP/RESTORE | Download configuration.
2. Got to the N4F Webgui menu entry ADVANCED | COMMAND, copy the following line (change the path /mnt/DATA/extensions to
your needs - a persistant place where all extensions are/should be) paste it to the command field and push "Execute"
- this will copy the installer to your system:

Code: Select all

cd /mnt/DATA/extensions && fetch https://raw.github.com/crestAT/nas4free-bittorrent-sync/master/bts_install.php && chmod 770 bts_install.php && echo "fetch OK"
3. After you see "fetch OK" execute the following line (change the path /mnt/DATA/extensions to your persistant place), this will install/update the extension:

Code: Select all

/mnt/DATA/extensions/bts_install.php
4. After successful completion you can access the extension from the WebGUI menu entry EXTENSIONS | BitTorrent Sync.

What's new in this version:
N: BTS installation, new tab "Extension Maintainance" for online extension update and remove via the WebGUI
C: btsync-installer: combined Install/Update option
C: Configuration: improvements for user change, take care about permissions
N: Configuration: VLAN/LAGG support -> taken from user Vasily1
N: Configuration: http/https switch
N: Configuration: external tick box => listen to 0.0.0.0
N: Configuration: all directly edited changes in sync.conf will be taken as they are
N: Configuration: all newly introduced BTS options editable/choosable in Advanced section
N: Configuration: updated documentation URL
N: Maintainance => editable update URL for the BitTorrent Sync application, so we are future-proof ;)
N: Maintainance => switch to previuosely saved update URL, just to be sure ...
N: Maintainance => one-time download and installation of previous BTS application versions
C: Logview => only two columns
N: Logview => new search field

When I'm finished with all changes I will edit the first post regarding to the new final release.

Regards
crest

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 10:57
by Andy22
crest wrote: This is not neccessary because you can directly edit the sync.conf file and add every parameter directly via the N4F WebGUI (in ADVANCED | File editor). Just copy the full path and name of the conf file - which you can see at the bottom of the configuration page of the BTS extension under NOTE - into the file path of the editor, make your changes and - voilá ;) .
Since the sync.conf file is stored in a persistant place your changes stay permanent.
Thx for your work on the update, this should solve all my current problems.

Regarding the "parameters field" this is just a suggestion, since it came in very handy to get a WebDav server running without the need to manually editing the related webserver config file.

Here are some problems why editing config files manually is not a good solution for a mainly webbased managed NAS system.
  • If you hit "start and save" via the Btsync service pane once, all your settings are gone and will be overridden. (Is this changed in the new version?)
    You need to manually start the service after each change via command-line and use the correct service user. (Is this changed in the new version?)
    Its way more complex and needs extra maintenance to edit the config file and after several months remember that you actually did this, compared to actually see what special/extra option you added on top of the supported from the UI.
    Its inconsistent to have some settings "generated" via the webinterface and than adding only a few special via config file manually.
    You need to actually understand the structure and syntax of the config file, compared to let the php code do most of the work and just adding 1-2 lines in a separate field via the UI.
    Its easier to write a example or guide, since you only need to explain the extra config options you added, which are clearly visible in the UI.
Thx Andy

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 11:57
by crest
Andy22 wrote: ...
Here are some problems why editing config files manually is not a good solution for a mainly webbased managed NAS system.
...
If you hit "start and save" via the Btsync service pane once, all your settings are gone and will be overridden. (Is this changed in the new version?)/i]

Yes, this is changed, all manual editings in sync.conf are preserved (see in What's new in this version: ;) )

Andy22 wrote:
You need to manually start the service after each change via command-line and use the correct service user. (Is this changed in the new version?)/i]

Yes, just change the user and hit Save and Restart

Andy22 wrote:
Its way more complex and needs extra maintenance to edit the config file and after several months remember that you actually did this, compared to actually see what special/extra option you added on top of the supported from the UI.
Its inconsistent to have some settings "generated" via the webinterface and than adding only a few special via config file manually.
You need to actually understand the structure and syntax of the config file, compared to let the php code do most of the work and just adding 1-2 lines in a separate field via the UI.

This is exactly the reason why I didn't implement ALL possible sync.conf settings, those which you can set via the BTS WebIU itself I left alone and currently the only parameter which isn't implemented (nor by my extension neither by the BTS WebUI) is "shared_folders". I don't think that many users need this because if you use this parameter the BTS WebUI will be disabled. IMHO the extension should cover most features for let's say 90% of the use cases. Some settings are used in very rare cases from users which are experienced in a high level, therefore they could put the right settings easily into the conf file.

Andy22 wrote:
You need to actually understand the structure and syntax of the config file, compared to let the php code do most of the work and just adding 1-2 lines in a separate field via the UI.

Just adding some lines to such a field means that I must implement a complete parser in php for each parameter and after that create / use it in the right position in the config file which means a lot of work ... the additional parameters you can put by other services (e.g. Webserver or CIFS) are not parsed, just added at the end or at a specific position of the specific config file. So the user himself have to take care about the right syntax ...

Andy22 wrote:
Its easier to write a example or guide, since you only need to explain the extra config options you added, which are clearly visible in the UI.

I'm not sure if I understand this right but if you mean a simple explanation of each parameter there are very good help pages from the BTS guys => see link to the BTS documentation at the very end of the extension configuration page.

Regards
crest

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 12:44
by Andy22
Thx for the answers, like noted i simply like the flexibility and ease of use of such extra option field, compared to editing config files 3-4 times a year. I understand the extra work needed now and just mentioned this idea, since i used it in the webserver service and hoped it would be relatively easy to add.

So the main problems are addressed in your new version, so i'm happy you had time to update the extension!
..only parameter which isn't implemented (nor by my extension neither by the BTS WebUI) is "shared_folders". I don't think that many users need this because if you use this parameter the BTS WebUI will be disabled.
The moment i had to edit the config file anyways and found how to setup this, i moved my folders/keys into the config file. Thats simply because my Nas is just the always on Btsync readonly seed and the webinterface is a security risk. I also don't know where Btsync stores the settings otherwise, so it is more stable to have all those settings in one config file, in the case something gets lost. I also rarely add/change those sync folders, so i don't need the Btsync webUI anyway.

thx Andy

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 12:51
by crest
Andy22 wrote: Thx for the answers, like noted i simply like the flexibility and ease of use of such extra option field, compared to editing config files 3-4 times a year. I understand the extra work needed now and just mentioned this idea, since i used it in the webserver service and hoped it would be relatively easy to add.
No problem, I just wanted to clarify why I (at least at the moment) not implemented all the stuff ;)
Andy22 wrote: So the main problems are addressed in your new version, so i'm happy you had time to update the extension!
:D
Andy22 wrote: ...
my Nas is just the always on Btsync readonly seed and the webinterface is a security risk.
...
Btw perhaps you didn't noticed that https is now working with BTS ... ?

Regards
crest

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 13:27
by Andy22
Just testing the new version and here are some problems i have.

I had to manually create the "btsync/.sync" folder, since it was not created.
I cant get the extension to download and install any btsync version or check the extension server version?

"Unable to retrieve version from server!" for the extension and "n/a - push 'fetch' button to check for new version" via "fetch" option. It lists 1.4.72 installed, but wont fetch any new version?

I manually grabbed and put the "btsync" bin in the extension/btsync folder and now it seems to start, but despite it being the 1.4.92 version, the UI still lists 1.4.72, so i assume the bt version is stored somewhere else and not grabbed from the btsync bin file?

thx Andy

PS: I use the default "http://download-new.utorrent.com/endpoi ... ack/stable" url, but nothing gets downloaded or installed?
PS2: lol, BTSync 1.4.93 came out minutes ago and now should have the random port fixed, but still need to manually install and download the bin, since the Ui wont fetch+install?

Re: [EXTENSION] BitTorrent Sync

Posted: 17 Oct 2014 20:34
by MikeMac
crest wrote:IMHO the extension should cover most features for let's say 90% of the use cases.
I could only support this position.

Had installed 0.6.3.6, upgraded via GUI to 0.6.3.6a, upgraded BTS to btsync-1.4.93 - works fine.

Switched to Russian - looks like there is need for additions to language file. Please, provide me with semi-translated file then you will finalize messages and texts

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 08:27
by crest
Andy22 wrote: Just testing the new version and here are some problems i have.

I had to manually create the "btsync/.sync" folder, since it was not created.
The .sync directory is normally created by the BitTorrent Sync (BTS) application itself at the first start of BTS ...
Andy22 wrote: I cant get the extension to download and install any btsync version or check the extension server version?
I assume you didn't change the extensions path properly to your existing extensions directory as mentioned in my post. Perhaps you tried to test the new version in another directory while you are already using an older version in another extension directory ... ?
Andy22 wrote: "Unable to retrieve version from server!" for the extension and "n/a - push 'fetch' button to check for new version" via "fetch" option. It lists 1.4.72 installed, but wont fetch any new version?
... this would happen if you did what I described above ...
Andy22 wrote: I manually grabbed and put the "btsync" bin in the extension/btsync folder and now it seems to start, but despite it being the 1.4.92 version, the UI still lists 1.4.72, so i assume the bt version is stored somewhere else and not grabbed from the btsync bin file?
...
PS: I use the default "http://download-new.utorrent.com/endpoi ... ack/stable" url, but nothing gets downloaded or installed?
PS2: lol, BTSync 1.4.93 came out minutes ago and now should have the random port fixed, but still need to manually install and download the bin, since the Ui wont fetch+install?
I would propose to manually uninstall the extension as described in the first post of this thread on CLI as root with ./btsync-install.php - option 2. This is save, all your already defined directories are stored in the original .sync directory and this will not be deleted during uninstall. After that install the new version 0.6.3.6 as described here => viewtopic.php?f=71&t=5704&start=50#p44056.
At item 2 - if everything works properly - you should see fetch OK
BTS-0636-01.jpg
At 3 the output for a fresh install ...
BTS-0636-02.jpg
... or with an already installed extension
BTS-0636-03.jpg

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 08:33
by crest
MikeMac wrote: Had installed 0.6.3.6, upgraded via GUI to 0.6.3.6a, upgraded BTS to btsync-1.4.93 - works fine.
Thank you for the feedback! :D
MikeMac wrote: Switched to Russian - looks like there is need for additions to language file. Please, provide me with semi-translated file then you will finalize messages and texts
Yes, right, I already got a translation from user Vasily1 but had no time until now to finish the work on the extension, I hope that I can do this next week, pls stay tuned ... ;)

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 11:04
by Andy22
crest wrote: I assume you didn't change the extensions path properly to your existing extensions directory as mentioned in my post. Perhaps you tried to test the new version in another directory while you are already using an older version in another extension directory ... ?
Not really, i had the old .php installer at the exact same location and the new version installed over it. There is no separate folder that was created, so something else went wrong. Will try a clean uninstalled and reinstall, which will probably solve the issue.

PS: Did a clean reinstall and now everything seems fine, thx again for the updated extension, which helps a lot managing my BTserver node. I only wish there would also be a "Duplicati 2.0" extension for nas4free :p

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 18:47
by MikeMac
Andy22 wrote:I only wish there would also be a "Duplicati 2.0" extension for nas4free :p
:( I am afraid, it is not possible as far as there is no FreeBSD support. And even WebDAV support on FreeBSD IMHO is far from perfect (fusefs-wdfs)

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 19:15
by Andy22
MikeMac wrote:
Andy22 wrote:I only wish there would also be a "Duplicati 2.0" extension for nas4free :p
:( I am afraid, it is not possible as far as there is no FreeBSD support. And even WebDAV support on FreeBSD IMHO is far from perfect (fusefs-wdfs)
I made a WebDav server tutorial over here: viewtopic.php?f=48&t=6158 and have no problems so far. I use Webdrive as mounting tool from my windows machines, which had the best speed and reliability for my setup. I guess you mean mounting a webdav drive into a nas4free system, not running it as a WebDAV server itself?

I also run "Duplicati 2.0" in a Jail just fine on my nas4free server, which backups my WebDAV and BTSync data to amazon S3, the main problem is the amount of knowledge you need to actually setup and maintain this. If i had to setup this again on a other NAS system i would be in for a lot of pain. It took me weeks to understand the Jail system and how to correctly setup everything, since i'm not a BSD expert.

Re: [EXTENSION] BitTorrent Sync

Posted: 20 Oct 2014 20:37
by MikeMac
Andy22 wrote:I made a WebDav server tutorial over here
Oh! Thank you for WebDAV server how-to

Sorry, I had said not clear enough. I mean, WebDAV filesystem on CLIENT site under FreeBSD works far from perfect - I had tested one and found stability problem with big files, could not be memory cashed. The only stable solution I had found was cadaver console client.
I also run "Duplicati 2.0" in a Jail just fine on my nas4free server, which backups my WebDAV and BTSync data to amazon S3
Great! Thank you another time. So I was wrong and should try the same

Re: [EXTENSION] BitTorrent Sync

Posted: 24 Oct 2014 19:05
by liver
change "Device name" in extension settings not working.

Re: [EXTENSION] BitTorrent Sync

Posted: 24 Oct 2014 22:02
by crest
liver wrote:change "Device name" in extension settings not working.
Did you check if the name appears to other clients (under specific circumstances it does not appear in the BTS WebUI, which is a restriction from BTSync application itself as you know - see also this post viewtopic.php?f=71&t=5704&start=50#p42775.
Which version of BTSync application do you use now?

Re: [EXTENSION] BitTorrent Sync

Posted: 24 Oct 2014 22:13
by crest
Andy22 wrote: PS: Did a clean reinstall and now everything seems fine, thx again for the updated extension, which helps a lot managing my BTserver node. I only wish there would also be a "Duplicati 2.0" extension for nas4free :p
Good to see that BTS extension is now workiing :)
I don't know Duplicate and if it is necessary to install it into a jail it would not be possible for me to produce an extension in a short time but I will take a look at it ...

Re: [EXTENSION] BitTorrent Sync

Posted: 25 Oct 2014 07:02
by liver
crest wrote:
liver wrote:change "Device name" in extension settings not working.
Did you check if the name appears to other clients (under specific circumstances it does not appear in the BTS WebUI, which is a restriction from BTSync application itself as you know - see also this post viewtopic.php?f=71&t=5704&start=50#p42775.
Which version of BTSync application do you use now?
WebUI displayed wrong name, but clients see the correct information.
thank you.

Re: [EXTENSION] BitTorrent Sync

Posted: 13 Nov 2014 09:36
by crest
Hello all,

there is a new version (0.6.4) of this extension available at my first post of this topic -> BitTorrent Sync extension.
This version is intended to use with the release 1.4.xx of the BitTorrent Sync app.

Best regards
crest