Browse Source

- Disabled line wrapping in translators list

- Added -fwrapv to gcc command line
- Updated TODO (tested sequenced download and file previewing : it works!)
adaptive-webui-19844
Christophe Dumez 18 years ago
parent
commit
a3f9de767b
  1. 4
      TODO
  2. 6
      src/about.ui
  3. 2
      src/src.pro

4
TODO

@ -32,8 +32,6 @@ @@ -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

6
src/about.ui

@ -396,7 +396,11 @@ Copyright © 2006 by Christophe Dumez<br> @@ -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>

2
src/src.pro

@ -22,6 +22,8 @@ contains(DEBUG_MODE, 0){ @@ -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…
Cancel
Save