mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-09 07:40:19 +08:00
- Disabled line wrapping in translators list
- Added -fwrapv to gcc command line - Updated TODO (tested sequenced download and file previewing : it works!)
This commit is contained in:
parent
942cdb1f91
commit
a3f9de767b
4
TODO
4
TODO
@ -32,8 +32,6 @@
|
||||
- Web interface?
|
||||
|
||||
// Before 0.7.0
|
||||
- Test file previewing
|
||||
- Test tracker authentication
|
||||
- Wait for libtorrent v0.11 final release
|
||||
- Test DHT
|
||||
- Test incremental download
|
||||
|
||||
|
@ -396,7 +396,11 @@ Copyright © 2006 by Christophe Dumez<br>
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QTextBrowser" name="te_translation" />
|
||||
<widget class="QTextBrowser" name="te_translation" >
|
||||
<property name="lineWrapMode" >
|
||||
<enum>QTextEdit::NoWrap</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
|
@ -22,6 +22,8 @@ contains(DEBUG_MODE, 0){
|
||||
message(Release build!)
|
||||
}
|
||||
|
||||
QMAKE_CXXFLAGS_RELEASE += -fwrapv
|
||||
QMAKE_CXXFLAGS_DEBUG += -fwrapv
|
||||
LIBS += -lcurl
|
||||
CONFIG += link_pkgconfig
|
||||
PKGCONFIG += libtorrent
|
||||
|
Loading…
Reference in New Issue
Block a user