All Projects

ID Project  asc Category Task Type Severity Summary Status Progress Due In Version
 268 Quick File ShareBug ReportMedium "Share" button can't be enabled/disabled after sharing  ...Closed
100%
0.14 (rel. 14) Task Description

The share button correct behaviour when no file is selected is to fire file selection, but after sharing and un-sharing a file it no longer behaves like that, instead doing nothing but activating and deactivating itself when tapped.

271Quick File ShareTO-DOMediumAdd localisation supportAssigned
0%
1.0 Task Description

No need for description

 213 Quick File ShareTO-DOLow Allow configuring a fixed port Closed
100%
0.12 (rel. 12) Task Description

No need for description

 214 Quick File ShareTO-DOLow Release 0.12 Closed
100%
Meta: Release Cycle Task Description

This is a meta-item depending on bugs/features required to complete before releasing QFS 0.12

216Quick File ShareTO-DOLowRelease 1.0Assigned
0%
Meta: Release Cycle Task Description

This is a meta-item depending on bugs/features required to complete before releasing QFS 0.12

 262 Quick File ShareBug ReportLow Files can't be shared from some apps Closed
100%
0.13 (rel. 13) Task Description

Sharing from some apps leads to an error and the impossibility to share the file

 263 Quick File ShareTO-DOLow Release 0.13 Closed
100%
Meta: Release Cycle Task Description

No need for description

 266 Quick File ShareTO-DOLow Lower minimum SDK requirement Closed
100%
0.14 (rel. 14) Task Description

No need for description

 267 Quick File ShareTO-DOLow Release 0.14 Closed
100%
Meta: Release Cycle Task Description

No need for description

269Quick File ShareTO-DOLowAllow sharing multiple filesRequires testing
80%
0.15 Task Description

Possibly using a dynamic ZIP file

See http://developer.android.com/reference/java/util/zip/ZipOutputStream.html

 270 Quick File ShareTO-DOLow Tapping on QR code is too easy to accidentally and shut ...Closed
100%
0.14 (rel. 14) Task Description

It would be better to only use it to start the server

272Quick File ShareTO-DOLowRelease 0.15Assigned
0%
Meta: Release Cycle Task Description

First version allowing multiple file sharing.
Possibly release early and keep as alpha or beta to test further.

273Quick File ShareTO-DOLowAllow sharing files of unknown sizeRequires testing
90%
0.15 Task Description

This is necessary for ZIP files constructed on the fly.

The current webserver implementation doesn’t support that.

274Quick File ShareTO-DOLowImplement chunked transfer encoding in web serverRequires testing
100%
0.15 Task Description

The chunked transfer encoding is necessary to serve files of unknown size (created dynamically)

275Quick File ShareTO-DOLowUpdate progress bar to support files of unknown sizeAssigned
0%
1.0 Task Description

The progress bar should reflect when the size of the shared file is unknown.

 228 relevationGeneralTO-DOHigh Support new file format Closed
100%
1.3 Task Description

There’s a new, more secure, file format

References:
https://bitbucket.org/jakobwesthoff/revelation
http://oss.codepoet.no/revelation/wiki/FileFormatSpec
http://knoxin.blogspot.com.es/2012/06/revelation-password-manager-considered.html
http://www.westhoffswelt.de/blog/2010/4/19/from-revelation-security-to-android-password-managers

 232 relevationGeneralBug ReportHigh Non US-ASCII fields produce errors Closed
100%
1.3 Task Description
main(sys.argv[1:])
  File "./relevation.py", line 628, in main
    numhits = dump_all_entries(xmldata)
  File "./relevation.py", line 213, in dump_all_entries
    return dump_result(res, 'all')
  File "./relevation.py", line 290, in dump_result
    dumpfn(typeName, name, descr, notes, fields)
  File "./relevation.py", line 253, in dump_single_result
    print s
UnicodeEncodeError: 'ascii' codec can't encode character u'\xf3' in position 19: ordinal not in range(128)
 233 relevationGeneralBug ReportHigh Non US-ASCII search terms produce errors Closed
100%
1.3.1 Task Description
Traceback (most recent call last):
  File "./relevation.py", line 658, in <module>
    main(sys.argv[1:])
  File "./relevation.py", line 638, in main
    numhits += dump_entries(xmldata, needles, 'folder', caseInsensitive, True)
  File "./relevation.py", line 224, in dump_entries
    res = tree.xpath(xpath)
  File "lxml.etree.pyx", line 1509, in lxml.etree._Element.xpath (src/lxml/lxml.etree.c:50702)
  File "xpath.pxi", line 306, in lxml.etree.XPathElementEvaluator.__call__ (src/lxml/lxml.etree.c:145829)
  File "apihelpers.pxi", line 1395, in lxml.etree._utf8 (src/lxml/lxml.etree.c:26485)
ValueError: All strings must be XML compatible: Unicode or ASCII, no NULL bytes or control characters
 181 relevationGeneralBug ReportMedium Wrong password produces unhandled exception Closed
100%
1.1 Task Description

When the decryption password is wrong a zlib exception is raised:

Traceback (most recent call last):
  File "/usr/bin/relevation", line 359, in <module>
    main()
  File "/usr/bin/relevation", line 332, in main
    xmldata = zlib.decompress(cleardata_gz[:-padlen], 15, 2**15)
zlib.error: Error -3 while decompressing data: incorrect header check

Should handle more gracefully

 180 relevationGeneralBug ReportLow Negated types are ignored inconsistently Closed
100%
1.2 Task Description

Sometimes a negated type will be ignored.

e.g.:

Fine:

$ relevation -t website java.net

-> Search "java.net" ('website' entries):  1 matches

$ relevation -t -website java.net

-> Search "java.net" ('not website' entries):  No results

Not fine:

$ relevation google.com

-> Search "google.com" ('not folder' entries):  6 matches

$ relevation google.com | grep -c ^Type:\ website
5

$ relevation -t -website google.com

-> Search "google.com" ('not website' entries):  6 matches
$ relevation  -t -website google.com | grep -c ^Type:\ website
5

$ relevation -t website google.com

-> Search "google.com" ('website' entries):  5 matches

Might be due to entries inside folders being repeated?

 182 relevationGeneralTO-DOLow Release 1.1 Closed
100%
Meta: Release Cycle Task Description

Meta-task depending on tasks scheduled for the 1.1 release

 183 relevationGeneralTO-DOLow Support PyCryptoPlus Closed
100%
Task Description

PyCryptoPlus is a drop-in replacement for PyCrypto written in Python, meaning it can run much more easily on Windows.

 184 relevationGeneralTO-DOLow Move from libxml2 to lxml Closed
100%
1.1 Task Description

lxml provides a cleaner (or more pythonic) implementation, is easier to install and more commonly required.

 185 relevationGeneralTO-DOLow Support cryptopy Closed
100%
1.1 Task Description

cryptopy provides a pure python implementation of ciphers, allowing easier install on some systems (e.g. 64bits Windows) than PyCrypto.
Unlike PyCryptoPlus it doesn’t seem to depend on PyCrypto but has a different API.

The performance degrades considerably, of course.

 229 relevationGeneralTO-DOLow Release 1.3 Closed
100%
Meta: Release Cycle Task Description

Meta-task depending on tasks scheduled for the 1.3 release

 230 relevationGeneralBug ReportLow Check file magic header Closed
100%
1.3
 231 relevationGeneralTO-DOLow Port to Python 3 Closed
100%
1.4
 234 relevationGeneralTO-DOLow Release 1.3.1 Closed
100%
Meta: Release Cycle
374relevationGeneralTO-DOLowRelease 1.4Assigned
0%
Meta: Release Cycle
379relevationGeneralTO-DOLowSwitch default mode to ANDAssigned
0%
1.4
383relevationGeneralFeature RequestLowAdd command-line argument to ignore configuration fileAssigned
0%
1.4
 186 relevationGeneralTO-DOVery Low Release 1.2 Closed
100%
Meta: Release Cycle
 235 relevationGeneralTO-DOVery Low Refactor into a cleaner package Closed
100%
1.3.1
376relevationGeneralTO-DOVery LowAdd command-line argument to generate configurationAssigned
100%
1.4
 160 vcsGeneralBug ReportCritical AWK getting comma-separated decimals Closed
100%
1.12.1
 323 vcsGeneralBug ReportCritical Codec information is misaligned/cropped Closed
100%
1.13.3
 373 vcsGeneralBug ReportCritical Number of columns is ignored Closed
100%
 9 vcsGeneralBug ReportHigh Full path is printed in heading Closed
100%
32vcsGeneralBug ReportHighvcs gets stuck on first capture (or during probe)Researching
0%
 76 vcsGeneralBug ReportHigh Failure while capturing last frame Closed
100%
1.11
 79 vcsGeneralBug ReportHigh vcs breaks if tput can't set colour Closed
100%
 135 vcsGeneralBug ReportHigh Pythagorean theorem uses gawk syntax Closed
100%
1.11.2
 189 vcsGeneralBug ReportHigh VCS is broken on FreeBSD (and Mac OS X) since 1.12.3 Closed
100%
1.13
 195 vcsGeneralBug ReportHigh Too short files might lead to infinte loop Closed
100%
1.13
197vcsGeneralTO-DOHighMove away from /dev/shmAssigned
0%
1.14
 248 vcsGeneralBug ReportHigh Unsupported format gives errors Closed
100%
1.13.3
 2 vcsGeneralBug ReportMedium Timestamps are allowed to be repeated Closed
100%
 3 vcsGeneralFeature RequestMedium Allow setting output filename Closed
100%
1.11
5vcsGeneralBug ReportMediumMeta-information gets overlapped with small contact she...Assigned
0%
 13 vcsGeneralBug ReportMedium Incorrect error checking of temporary directory creatio ...Closed
100%
Showing tasks 101 - 150 of 308 Page 3 of 7

Available keyboard shortcuts

Tasklist

Task Details

Task Editing