Commit Graph

135 Commits

Author SHA1 Message Date
thunder2
690194d38f Cleaned PopupChatDialog, NetworkDialog, SearchDialog, TransfersDialog, SharedFilesDialog, ChannelFeeds and updated german translation.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3477 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-09-13 00:27:50 +00:00
leander-256
4bb4fc11e2 This intimidating patch renames libretroshare/src/rsiface/ to
libretroshare/src/retroshare/

All the relevant headers have been modified to reflect that change.

This allows installation of libretroshare on a system, headers will
be put in $WHEREVER/retroshare/ and we keep the ability to compile
against them, be it on the system or in the SVN tree.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3342 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-08-06 09:40:23 +00:00
thunder2
569ac25843 cleaned include files
- removed some dependencies between other header files
- removed many includes of <QtGui> and replaced it with only needed files

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3312 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-07-23 18:52:58 +00:00
thunder2
daf0ea50ee PeersDialog/MessengerWindow:
- send recommended friend as message
- paste recommended friends as "retroshare://person|..." from clipboard

reworked retroshare link handling
- added new type -> retroshare://person|<name>|<hash>
- added processing of links to RetroShareLink and RSLinkClipboard and removed all processing in anchorClicked of QTextBrowser 
- fixed parseClipboard to handle all found links in clipboard
- disabled the processing of the clickable links (RetroShareLink::processUrl), because QUrl can't handle the RetroShare links properly

removed memory leaks of the QAction in some context menus


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3292 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-07-15 11:25:34 +00:00
csoler
b80aef1228 Suppressed the possibility for browsable only files to be searched by hash from turtle router.
This avoids that an attacker that captures a broadcast hash request can also ask for the file.

This needed to add back explicit sources in SearchDialog and private chat transfer. I dynamically search
for sources in file lists just before calling FileRequest.

When RS links anchorClick() will work properly with Qt, we can remove the search flag "EXTRA" from the
tunnel digging in p3turtle.cc, otherwise, people having this bug can't transfer files in private chat by
copy+paste of a RS link.
    
	Also:
	    - added missing mutexes in search requests into fimonitor.cc
		- suppressed some debug info in connect manager
		- added check for write fails when dumping config files



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3027 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-29 13:17:09 +00:00
thunder2
b0c1467abe improvement MessagesDialog:
- enabled draft box

bugfix MessagesDialog:
- correct from and to in list and message header

changes MessageComposer:
- cleaned channel part


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2994 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-25 09:32:14 +00:00
defnax
1fb7fb005c rename class and source ChanMsgDialog to MessageComposer
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2978 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-23 19:13:41 +00:00
thunder2
6baf56285b reworked settings
now there is only one global object for loading and saving settings

RshareSettings *Settings;

the class RSettings can be used too, but it is not prefered, because the default settings has no affect

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2964 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-20 21:53:27 +00:00
thunder2
c3c6480f4b changed the usage of "QMenu*" to a local "QMenu"
removed usage of "new QMouseEvent", it was a memory leak
cleaned some includes

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2910 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-14 20:55:44 +00:00
thunder2
0c46da0dd2 Changed settings to local variable, no more as pointer on all classes.
RshareSettings settings;
settings.value(...);

It should lower memory usage and removes memory leaks.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2886 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-11 20:02:52 +00:00
thunder2
fb58beef4f Source code maintenance
Memory leaks:
- PeersDialog::insertPeers -> takeTopLevelItem, takeChild

- activate correct page on creating a new forum or channel from PeersDialog (problems with RS_RELEASE_VERSION)
  new static method to activate a page MainWindow::activatePage

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2842 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-03 00:09:55 +00:00
csoler
bffcbfe467 fixed the sorting of SearchDialog by age and by size, by using proper delegates for displaying the numbers. Removed the SR_REALSIZE_COL column, that is no longer necessary.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2840 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-02 21:37:54 +00:00
csoler
fdedc400dc corrected bug in search: files with size > 2Gb would not be added to transfers
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2819 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-04-30 22:17:14 +00:00
csoler
c6c8e63e91 ported branch commits 2666-2668, 2670-2672, 2679, 2682-2683 into trunk
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2702 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-04-10 14:56:34 +00:00
defnax
220d9039bb reset only ComboBox when close all search results
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2632 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-25 19:20:16 +00:00
defnax
7b6962499a Fixed age (time stamp) of directories
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2631 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-25 18:00:43 +00:00
defnax
a3e8bea22e Fixed to display Dir Count in search, fixed by Jimigor
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2629 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-25 12:34:44 +00:00
csoler
f8d6590952 ported v0.5.0 commits 2561,2562 and 2574 to trunk
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2575 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-17 15:34:36 +00:00
csoler
cc17744ee3 ported branch v0.5.0 commits 2529 and 2544 to trunk
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2545 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-15 12:57:08 +00:00
csoler
0705d9dfc7 added paste multiple links
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2516 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-10 23:09:35 +00:00
csoler
a657def956 cleaned the RS link code, factorized the parsing into a single class. Still missing: copy/paste of multiple links
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2514 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-10 21:38:26 +00:00
defnax
25e1eda6ba update extensions
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2480 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-03-04 12:09:43 +00:00
defnax
eee9ca1635 Fixed to get again gui resize able , search not allowed more to set gui to a minimum size.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2457 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-28 01:03:37 +00:00
csoler
84cad6a7b0 cleaned some memory leak in search, added 2 checkboxes for F2F and friend lists, made the "include own files" work properly
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2455 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-27 21:10:54 +00:00
csoler
9d6173a1ee put the max result test at a more appropriate place in the code
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2454 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-27 20:29:28 +00:00
csoler
15a28b1d2e added a spinbox to limit the number of search results (too many results may hang the gui)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2432 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-26 12:38:29 +00:00
defnax
fba9772a18 use for color sources friends sources + anonymous sources
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2416 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-24 16:54:02 +00:00
alexandrut
103e4517e9 include own files check option on search
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2391 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-22 21:44:43 +00:00
alexandrut
c4a5577ffb search result filtering
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2383 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-21 13:38:27 +00:00
alexandrut
11f63c90ea filter after search, not before search
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2362 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-19 00:48:42 +00:00
defnax
1db429537b update search extensions
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2332 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-15 17:29:13 +00:00
defnax
99b56b50dd update search extensions
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2328 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-15 14:52:47 +00:00
defnax
869b498c2e removed the icon column not more needed, set TextAlignment for Sources AlignRight, update extensions,
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2326 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-15 01:09:23 +00:00
defnax
b6e289c8c7 hide searchid column
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2325 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 21:48:54 +00:00
nishant
a5b01d1de6 to show files sources count in form of friend source/ total source
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2324 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 18:56:56 +00:00
defnax
d2bda9fff3 fixed stlesheets for Search LineEdit's frame, use now 3 chars for search
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2323 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 17:58:22 +00:00
csoler
1f6444829f blue -> gray
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2321 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 15:50:38 +00:00
csoler
1fe7b8262c limited the search to > 4 chars, suppressed some debug output
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2319 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 15:34:53 +00:00
defnax
48a25578c0 fixed setFocus for search LineEdit when clearing it.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2312 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 11:43:28 +00:00
defnax
850e756fe3 hide reset button when search field is empty
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2309 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-14 02:31:37 +00:00
nishant
5e9e342bc9 tree widget converted to tree view in MessageDiwalogue and other fixes
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2300 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-13 18:49:56 +00:00
defnax
3269dcce0e changed the Directory icon, use now blue folder icon
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2254 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-09 13:49:37 +00:00
defnax
37e9bf527c fixed to show for Folders Type Folder, and set root is decorated to not download a dir when want expand it.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2223 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-07 01:37:06 +00:00
defnax
da98a8f3ff update extensions for Search
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2139 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-01-27 20:16:33 +00:00
csoler
0e7f9df638 made contextual menus in FT more contextual, added info about transfer type and chunking strategy, load/save of transfer flags
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2114 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-01-22 23:23:37 +00:00
defnax
633300c5cc Added Copy and Send retroshare links for Search
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2109 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-01-21 22:34:10 +00:00
csoler
daee15776c added guard against downloading local files
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2105 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-01-21 12:39:26 +00:00
csoler
96147a9734 added flags to file request: RS_FILE_HINTS_ASSUME_AVAILABILITY to not wait/ask for chunk maps. Used for cache transfer and also whenever the turtle traffic is not involved, such as chat file exchange, and RS_FILE_HINTS_NETWORK_WIDE to force using turtle routing for traffic. Also moved turtle tunnel start/stop orders from ftServer to ftController
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1995 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-01-11 22:38:18 +00:00
alexandrut
b715d07708 make possible to download an entire found directory from search dialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1684 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-09-25 12:17:28 +00:00
defnax
d59e85efa5 fixed item
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1683 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-09-24 23:26:27 +00:00
defnax
9bec37e7f2 Added Age column for Search Results
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1682 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-09-24 23:18:25 +00:00
csoler
cef9385f5b improved the search dialog behaviour
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1680 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-09-24 21:08:55 +00:00
csoler
a436af418a Integrated turtle download to all kind of user-requested downloads
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1627 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-09-09 20:20:06 +00:00
alexandrut
10d44a15b8 -add support for searching and display directories
-downloading directories from search dialog not implemented yet
-needs more code clean and beautify the directory tree

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1566 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-25 20:49:50 +00:00
csoler
1292a69ccf suppressed some debugging stuff
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1565 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-25 12:17:22 +00:00
csoler
3c09b4f2d2 added regexp search to turtle router
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1564 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-25 12:04:43 +00:00
csoler
a293a39d1b - Integrated the turtle search and download to the gui. Now the search handles both friend and turtle searching.
- added a console in config->server->F2F routing to be able to visualize turtle routing statistics

WARNING: this is not complete yet. The fllowing still needs to be done:
- detect duplicates in search results between turtle and friends search
- RegExpr search does ot work with turtle (still to code).
- search does not search own files. Is this really needed after all ?



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1540 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-16 20:10:53 +00:00
defnax
e56f29ce92 setFocus for Login and Search Field
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1526 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-08-13 12:16:35 +00:00
defnax
a112c2d02a Added Export Cert to Contect menu
renamed View Button to Menu
Added Add Friend and Export Cert to Menu Button

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1384 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-07-16 14:36:03 +00:00
defnax
063c4bb44f reorder Search, clear search field automaticly after result will be shown.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1383 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-07-16 00:49:39 +00:00
joss17
5a5ad509aa fix the history problem with SearchDialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1221 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-11 14:36:32 +00:00
joss17
3698fc5a2c rolled back commit 1200 only for popupchatdialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1215 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-11 14:21:11 +00:00
defnax
d9aa7a3e3a enabled double click download
disabled not implemented Broadcast context menu entry
enabled reseting keywords

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1213 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-10 22:34:38 +00:00
drbob
65e02ba4de * Rolled back Modifications to SearchDialog and PopupChatDialog.
- unable to get windows to compile with PopupChat on windows.
	- not happy with new SearchDialog. Not an improvement on old dialog + uses Qt4.4

 * updated version numbers...
 * added a couple of windows scripts.
 


git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1200 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-08 23:07:08 +00:00
defnax
5728e61090 added Double click download feature
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1192 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-07 22:48:22 +00:00
defnax
deea89cbd0 when reset the keyword field then reset the Type ComboBox too to default index
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1188 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-07 20:57:27 +00:00
defnax
c23adba0b1 disabled the broadcastonchannel/recommendtofriends this is not jet implemented bether disabled this function from context menu
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1187 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-07 20:23:36 +00:00
defnax
626074d3f8 redesign the Search Dialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1177 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-05-06 00:31:09 +00:00
csoler
7b84b125df turtle search is now working. Next task: update search gui
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1078 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-03-15 22:45:40 +00:00
csoler
29bd4795fd turtle dev. Worked on serialisation, mainly, and connexion to gui.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1076 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2009-03-13 21:14:30 +00:00
csoler
e3514aaa3c Added two hidden columns in searchresultTableWidget to store the real size and srcId hash, so as to get the download menu work properly. Eventually, we should use a delegate to adapt the display correctly, while still being able to retrieve the usable information from the table
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@889 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-12-12 21:41:34 +00:00
defnax
3d3f4bfec9 * Added CD-Image to Search ComboBox
* Added CD-Image extensions for Search Dialog and RemotDirModel
* Added Type Column item to Search Dialog to show : Audio,Archive,CD-Image,Document,Picture,Program,Video
* Added FileType for Program extension to RemoteDirModel 

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@825 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-11-18 22:59:33 +00:00
defnax
8d3bda4f76 * Added new columns for icons
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@823 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-11-18 20:29:40 +00:00
defnax
f30178f92b * Set Text Alignment for Size column to AlignRight
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@822 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-11-18 17:32:26 +00:00
defnax
3a1d986b53 * Added to Format Size
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@819 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-11-18 12:15:21 +00:00
defnax
0acadf680a * Added some extensions for Video Type
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@811 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-11-16 01:21:41 +00:00
csoler
fffe6d6d97 Small change to allow ubuntu-x86_64 compilation
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@716 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-09-02 14:25:26 +00:00
csoler
213d24c1d8 - made the source comulmn more explicit by displaying the real name of the source
- used for the source the same colour code (i.e. green when the source is online)



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@711 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-08-31 16:50:36 +00:00
drbob
f9b22cc5d2 Updated interface files.
Added SrcIds to FileRequests().



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@699 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-08-17 16:14:03 +00:00
drbob
45f2108fd0 * Cleaned up fonts for MacOSX.
* made changes to win32.cpp cross-platform.
 * updated rsfiles.h
 * updated version to v0.4.10b




git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@692 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-08-16 17:10:01 +00:00
drbob
32973f0838 * Switched to new rsFiles interface.
* Updated Transfers/SharedFiles/Messages.. etc Dialogs.
 * Disabled 'Recommendation Lists' for the moment.
 * updated Interface files.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@631 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-07-02 16:59:56 +00:00
defnax
53ac3b2a24 fixed headeritem
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@322 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-02-01 19:21:21 +00:00
defnax
091da19977 -set TextAlignment of some QTreeWidgetItems,
-changend order of searchResultWidget

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@321 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2008-02-01 18:55:21 +00:00
libris
dc4cee6f92 Fixed Bug 1833356: connected Search Remove All (now with reset of search ID allocation)
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@259 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2007-11-19 10:56:12 +00:00
drbob
935745a08e Created V0.3.x branch and moved the head into the trunk directory.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@246 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2007-11-15 03:18:48 +00:00