mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-09 14:27:56 +00: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?
|
- Web interface?
|
||||||
|
|
||||||
// Before 0.7.0
|
// Before 0.7.0
|
||||||
- Test file previewing
|
|
||||||
- Test tracker authentication
|
- Test tracker authentication
|
||||||
- Wait for libtorrent v0.11 final release
|
- 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>
|
<number>6</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QTextBrowser" name="te_translation" />
|
<widget class="QTextBrowser" name="te_translation" >
|
||||||
|
<property name="lineWrapMode" >
|
||||||
|
<enum>QTextEdit::NoWrap</enum>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
@ -22,6 +22,8 @@ contains(DEBUG_MODE, 0){
|
|||||||
message(Release build!)
|
message(Release build!)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QMAKE_CXXFLAGS_RELEASE += -fwrapv
|
||||||
|
QMAKE_CXXFLAGS_DEBUG += -fwrapv
|
||||||
LIBS += -lcurl
|
LIBS += -lcurl
|
||||||
CONFIG += link_pkgconfig
|
CONFIG += link_pkgconfig
|
||||||
PKGCONFIG += libtorrent
|
PKGCONFIG += libtorrent
|
||||||
|
Loading…
Reference in New Issue
Block a user