[Bug 1627078] Re: ScrollBars and ScrollView - add 'isDragged' or 'isScrolling' property

2016-09-23 Thread Stefano Verzegnassi
@Andrea - Sure, no problem! ;)

@Tim - Yes, checking for e.g. 'verticalVelocity' property of the
Flickable could accomplish it. QQC2 are not provided with the Ubuntu UI
Toolkit and they are available only with Qt 5.7, so I would prefer a
solution which can be easily integrated in a Ubuntu convergent app.

I'll have a try checking for the velocity of the flick action, since it
may be desiderable to show such overlay for any 'fast-scroll' event.

However, I wanted to provide an example why such property could be
useful also for UITK ScrollBars. Calling it 'pressed' for consistence
sounds good to me.

Thank you guys for the fast reply, have a great weekend!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1627078

Title:
  ScrollBars and ScrollView - add 'isDragged' or 'isScrolling' property

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1627078/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1627078] [NEW] ScrollBars and ScrollView - add 'isDragged' or 'isScrolling' property

2016-09-23 Thread Stefano Verzegnassi
Public bug reported:

I'm trying to implement a "page indicator" to be shown when the user
scrolls a Flickable using a UITK ScrollBar. The idea is to mimic a
feature available in Adobe Reader for Android.

i.e. http://imgur.com/a/OzjYG

In order to do this, I have to access the "draggingThumb" property of
the style instance of a UITK ScrollBar, which is meant to be private.

Item {
[...]
visible: scrollView.verticalScrollbar.__styleInstance.draggingThumb
}

What it could be useful is to expose this property directly in the ScrollBar.
Using the Flickable properties for this purpose would be a bit complicated, 
since it wouldn't be desiderable to see such overlay during an "ordinary" 
touch/flick event.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1627078

Title:
  ScrollBars and ScrollView - add 'isDragged' or 'isScrolling' property

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1627078/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1594400] [NEW] Wrong statement about "persistentSelection" property of TextArea

2016-06-20 Thread Stefano Verzegnassi
Public bug reported:

In the documentation for UITK TextArea[1]:
"Whether the TextArea should keep the selection visible when it loses 
active focus to another item in the scene. By default this is set to true;"

In the documentation for QML TextEdit component (inherited by UITK TextArea):
"Whether the TextEdit should keep the selection visible when it loses 
active focus to another item in the scene. By default this is set to false."

The component from UITK[3] only set an alias to the TextEdit property,
without changing its default value. This leads to an unexpected
behaviour whenever the default property is set to a different value by
the upstream project.

In Qt 5.0.2 the property was set to true[4]. Since Qt 5.1.1, the value
has been changed[5].



[1] 
https://developer.ubuntu.com/api/apps/qml/sdk-15.04.4/Ubuntu.Components.TextArea/
[2] http://doc.qt.io/qt-5/qml-qtquick-textedit.html#persistentSelection-prop

[3] http://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-
toolkit/staging/view/head:/src/Ubuntu/Components/1.3/TextArea.qml

[4] 
http://qt.apidoc.info/5.0.2/qtquick/qml-qtquick2-textedit.html#persistentSelection-prop
[5] 
http://qt.apidoc.info/5.1.1/qtquick/qml-qtquick2-textedit.html#persistentSelection-prop

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1594400

Title:
  Wrong statement about "persistentSelection" property of TextArea

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1594400/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1591149] Re: Find more modern text for Italian word prediction

2016-06-10 Thread Stefano Verzegnassi
Yet another italian! :)

One thing I saw when typing on the keyboard with an Italian dictionary
is that it does not recognise loanwords from English (and at the current
days we use them a lot in our everyday Italian).

(random) e.g. "Mi è arrivato dello SPAM in posta" -> "Mi è arrivato
dello SPAMPANAVA in posta"

I think that any old novel couldn't help with this.

Could some resource from Wikipedia be integrated with any of the novels above?
As far as I can see, Wikipedia/Wikizionario/* content is CC BY-SA licensed.

As alternative, I found a dictionary from the Boot2Gecko project, which seems 
to be complete enough (and includes English loanwords).
https://github.com/mozilla-b2g/gaia/blob/master/apps/keyboard/js/imes/latin/dictionaries/it_wordlist.xml
A good thing is that dirty words are already marked, so they can be easily 
filtered out.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1591149

Title:
  Find more modern text for Italian word prediction

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1591149/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1587580] [NEW] No way to escape an ampersand in UCAction

2016-05-31 Thread Stefano Verzegnassi
Public bug reported:

Let's say we have an Ubuntu.Action as follow:

import Ubuntu.Components 1.3 as Ubuntu
Ubuntu.Action {
text: "Apps & Scopes"
}

UCAction translates the ampersand as a mnemonic, using QKeySequence.
A way to escape a mnemonic in Qt is to add another ampersand. The resulting 
string is "Apps && Scopes".

The UITK component seems not to take in account this situation, since:

- How the string should be shown in e.g. an ActionBar:
"Apps & Scopes"

- How the string is displayed instead in an ActionBar:
"Apps && Scopes"

QKeySequence returns no mnemonic as expected, but UCAction shows two
ampersands.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1587580

Title:
  No way to escape an ampersand in UCAction

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1587580/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1471783] Re: "poppler-data" package is missing on devices' image

2016-04-14 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Importance: Critical => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1471783

Title:
  "poppler-data" package is missing on devices' image

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1471783/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1567924] [NEW] App crashes when using ScrollView + Ubuntu.Layouts

2016-04-08 Thread Stefano Verzegnassi
Public bug reported:

This is something that I've seen often while testing Ubuntu Document
Viewer on desktop.

*** Using Document Viewer:

1) Launch DocViewer
2) Open a LibreOffice presentation document
3) A sidebar with the list of slides is placed at the left of the window
4) Resize the window so that its width is less than units.gu(120)
5) The list of slides is now visible at the bottom of the window
6) If the app hasn't crashed yet, resize the window so that: width > 
units.gu(120)
7) Repeat 3, 4, 5, 6.

- What happens?
DocViewer crash.


*** Using the minimal example below:

1) Launch the .qml file
2) A blue rectangle is visible on the screen
3) On a phone: rotate the screen to landscape (from portrait)
 On a desktop: resize the window so that height > width
4) On a phone: rotate back to portrait
 On a desktop: resize the window so that width > height

 - What should happen?
The rectangle becomes yellow.

- What happens?
On the phone: the rectangle is still blue. A black surface becomes visible on 
the bottom. The app has crashed.
On the desktop: the app crashes.

==

Tested on a BQ E5, with rc-proposed (r302)
Tested on desktop, vivid+overlay, UITK version: 
1.3.1872+201602271301-staging-0+1.3.1795+16.04.20160106~ubuntu15.04.1

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: convergence layouts

** Attachment added: "scrollview+layout-minimal.qml"
   
https://bugs.launchpad.net/bugs/1567924/+attachment/4628997/+files/scrollview+layout-minimal.qml

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1567924

Title:
  App crashes when using ScrollView + Ubuntu.Layouts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1567924/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1567924] Re: App crashes when using ScrollView + Ubuntu.Layouts

2016-04-08 Thread Stefano Verzegnassi
** Attachment added: "backtrace.txt"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1567924/+attachment/4628998/+files/backtrace.txt

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1567924

Title:
  App crashes when using ScrollView + Ubuntu.Layouts

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1567924/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1288885] Re: App cannot be started on clean Trusty desktop

2016-03-25 Thread Stefano Verzegnassi
** Changed in: ubuntu-terminal-app
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/125

Title:
  App cannot be started on clean Trusty desktop

To manage notifications about this bug go to:
https://bugs.launchpad.net/dropping-letters/+bug/125/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1514519] Re: Font in Terminal is incorrectly massive since recent update

2016-02-28 Thread Stefano Verzegnassi
** Changed in: ubuntu-terminal-app
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1514519

Title:
  Font in Terminal is incorrectly massive since recent update

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1514519/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1550197] Re: Typing in Terminal app without passing "Authentication required" prompt

2016-02-26 Thread Stefano Verzegnassi
*** This bug is a duplicate of bug 1549826 ***
https://bugs.launchpad.net/bugs/1549826

Thank you for taking the time to report this bug and helping to make
Ubuntu better.

This particular bug has already been reported and is a duplicate of bug
1549826, so it is being marked as such. A fix has already been committed
in the development version of Ubuntu Terminal and it is expected to be
released in 2-3 weeks. Any further discussion regarding the bug should
occur in the other report.

Feel free to continue to report any other bugs you may find.

Thanks again,
Stefano

** Changed in: mir (Ubuntu)
   Status: New => Invalid

** This bug has been marked a duplicate of bug 1549826
   Can type in Terminal without entering the password

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1550197

Title:
  Typing in Terminal app without passing "Authentication required"
  prompt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-terminal-app/+bug/1550197/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1540240] Re: Automatic Header height adjustment should be optional

2016-02-01 Thread Stefano Verzegnassi
Adding a reference to the G+ post where the discussion has started.
https://plus.google.com/u/0/104470462565851394948/posts/58xHJVYUYmj

It has been required to provide some case for which the default
behaviour is not suitable.

I'm working on a note-taking app which would like to make use of a "Flexible 
space header"[1][2]:
https://www.youtube.com/watch?v=elFUk7bY7Ho

Currently the documentation for the PageHeader claims the ability to set any 
custom Item as extension as long as they have an height, so I decided to 
implement the "flexible space" as  header extension.[3] 
While this works properly when using a PageStack, I got a completely different 
result with an AdaptivePageLayout:
https://www.youtube.com/watch?v=jigZVlCPCkk


[1] Android UI guidelines - 
http://www.google.com/design/spec/patterns/scrolling-techniques.html#scrolling-techniques-scrolling
[2] The video is pretty old, sorry for the double header, but it was a fully 
custom implementation at the time.
[3] 
http://bazaar.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/staging/view/head:/src/Ubuntu/Components/1.3/PageHeader.qml#L214

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1540240

Title:
  Automatic Header height adjustment should be optional

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1540240/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1508363] Re: Coordinated migration to UITK 1.3

2016-01-22 Thread Stefano Verzegnassi
** Branch linked: lp:~verzegnassi-stefano/ubuntu-terminal-
app/uitk13-migration

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508363

Title:
  Coordinated migration to UITK 1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1489591] Re: head sections on the left side of an AdaptivePageLayout 'leak' onto the right side instead of scrolling

2016-01-18 Thread Stefano Verzegnassi
I bumped into this bug some days ago.

Actually the issue seems more generic: all the pages should be clipped
when pushed inside the AdaptivePageLayout.

I wrote an "interactive" example (attached to this comment):
Swipe the ListItem to left, swipe it back to the original position, hit the 
button (push a page in the second column) and swipe the new ListItem to right.
Each page will occupy the space that in theory is reserved to the other page.

This is easily workaround-able by adding 'clip: true' in the QML document that 
contains a page.
However I think that AdaptivePageLayout should do it by its own, in its 
"addWrappedPage(pageWrapper)" function[1].

[1] Since the issue is due to the particular layout applied to the
Pages; and AdaptivePageLayout already changes the settings of the Page
when it appends the 'Back' action to the header.


** Attachment added: "Example of the issue (using ListItem)"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1489591/+attachment/4551815/+files/Main.qml

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1489591

Title:
  head sections on the left side of an AdaptivePageLayout 'leak' onto
  the right side instead of scrolling

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1489591/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1535272] [NEW] [AdaptivePageLayout] UITK Scrollbar hard to use because of the vertical divider

2016-01-18 Thread Stefano Verzegnassi
Public bug reported:

See attached example.

There's a page pushed into the first column of the AdaptivePageLayout.
This page contains a ListView with 1000 entries, and provides an 
Ubuntu.Components' Scrollbar.

When I try to hover the Scrollbar with the mouse cursor, the resizing area of 
the vertical divider is triggered instead.
Actually only half of the width of the Scrollbar is available for scrolling the 
page.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "Example of the issue"
   https://bugs.launchpad.net/bugs/1535272/+attachment/4551817/+files/Main.qml

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1535272

Title:
  [AdaptivePageLayout] UITK Scrollbar hard to use because of the
  vertical divider

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1535272/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1532950] Re: Font size too big on phone, and display too tall with devicePixelRatio

2016-01-13 Thread Stefano Verzegnassi
My 2 cents. Would it make more sense to use the font size of a UITK
Label (textSize: Label.Medium) as a reference unit, and provide only a
setting for a multiplier of the resulting pixelSize?

That way the font size would be automatically adjusted according to
GRID_UNIT_PX or QT_DEVICE_PIXEL_RATIO variables, and it would behave
consistently with the rest of the platform.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1532950

Title:
  Font size too big on phone, and display too tall with devicePixelRatio

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-terminal-app/+bug/1532950/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1529909] Re: ListItemLayout: title text overlaps subtitle if maximumLineCount > 1

2015-12-29 Thread Stefano Verzegnassi
** Attachment added: "This QML document reproduces the issue"
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1529909/+attachment/4541818/+files/listitemlayout_issue.qml

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1529909

Title:
  ListItemLayout: title text overlaps subtitle if maximumLineCount > 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1529909/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1529909] [NEW] ListItemLayout: title text overlaps subtitle if maximumLineCount > 1

2015-12-29 Thread Stefano Verzegnassi
Public bug reported:

See attached screenshot.

What happens:
When the "title.maximumLineCount" property is set to a value greater than 1,  
the second line of the title overlaps the subtitle, resulting in an unreadable 
text.

What I'd expect to happen:
The subtitle is placed below the last line of the title, according to the 
spacing and all the style/layout properties of ListItemLayout.

Attached to this report there's a QML document which reproduces the
issue.

* Verified on:
Ubuntu 15.04 (desktop) + Stable Phone Overlay PPA

qtdeclarative5-ubuntu-ui-toolkit-plugin
Version: 1.3.1758+201512121301-staging-0+1.3.1742+16.04.20151209~ubuntu15.04.1

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "Screenshot of the issue from DocViewer"
   
https://bugs.launchpad.net/bugs/1529909/+attachment/4541817/+files/Screenshot%20from%202015-12-29%2017%3A49%3A57.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1529909

Title:
  ListItemLayout: title text overlaps subtitle if maximumLineCount > 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1529909/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1523452] [NEW] Not able to download office documents through webbrowser-app

2015-12-07 Thread Stefano Verzegnassi
Public bug reported:

We've recently released an update to Document Viewer which is now
capable to open LibreOffice/MS-Office documents.

Even if the application is installed on the device, it's not possible to
download office files through browser-app, since no peer is available
for handling the content.

I had a look at:

http://bazaar.launchpad.net/~phablet-team/webbrowser-app/trunk/view/head:/src/app/FileExtensionMapper.js

And it seems that these documents are recognized as ContentType.Unknown.

What we'd need is to add the support to the following file extensions: doc, 
docx, xls, xlsx, ppt, pptx, odt, ods, odp.
Alternatively, this is the list of mime types supported by Document Viewer: [1]


[1] from line 52, 
http://bazaar.launchpad.net/~ubuntu-docviewer-dev/ubuntu-docviewer-app/lo-viewer/view/head:/src/plugin/file-qml-plugin/docviewerutils.cpp

** Affects: canonical-devices-system-image
 Importance: Undecided
 Status: New

** Affects: webbrowser-app (Ubuntu)
 Importance: Undecided
 Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1523452

Title:
  Not able to download office documents through webbrowser-app

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1523452/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-12-04 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1508363] Re: Coordinated migration to UITK 1.3

2015-12-04 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508363

Title:
  Coordinated migration to UITK 1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1514530] Re: Header disappears and picture won't go fullscreen

2015-11-09 Thread Stefano Verzegnassi
Same behaviour on BQ E5.
Here's the log: http://paste.ubuntu.com/13210245/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1514530

Title:
  Header disappears and picture won't go fullscreen

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gallery-app/+bug/1514530/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-11-01 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Importance: Undecided => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-11-01 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Status: Confirmed => In Progress

** Changed in: ubuntu-docviewer-app
 Assignee: (unassigned) => Stefano Verzegnassi (verzegnassi-stefano)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1508363] Re: Coordinated migration to UITK 1.3

2015-10-23 Thread Stefano Verzegnassi
Can we then target all the changes included in UITK
1.3.1676+15.04.20151008-0ubuntu1, landed in OTA-7 (including new Label
property, ListItemLayout, etc.)?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508363

Title:
  Coordinated migration to UITK 1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1508363] Re: Coordinated migration to UITK 1.3

2015-10-22 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Importance: Undecided => High

** Changed in: ubuntu-docviewer-app
   Status: New => In Progress

** Changed in: ubuntu-docviewer-app
 Assignee: (unassigned) => Stefano Verzegnassi (verzegnassi-stefano)

** Branch linked: lp:~verzegnassi-stefano/ubuntu-docviewer-app/reboot-
uitk13

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1508363

Title:
  Coordinated migration to UITK 1.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508363/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1507115] [NEW] List of apps updates is visible even if my Ubuntu One account is not longer registered

2015-10-17 Thread Stefano Verzegnassi
Public bug reported:

Tested on bq Aquaris E5 HD - Ubuntu 15.04 (r4) from 'stable' channel

Step to reproduce:
1.  Ensure you have an active/valid Ubuntu One account registered on your device
2. Go to https://login.ubuntu.com/ and change your account password
3. Open ubuntu-system-settings and check for updates

Actual results:
* A list with the available updates is displayed
* Tapping the 'Install all' button seems to make system-setting downloading the 
apps
* Nothing really happens. Download progress stay at 0%.

Expected results:
* ubuntu-system-settings should check if the Ubuntu One credentials are still 
valid.
* the application should show a screen which tells the user that the U1 account 
is no longer valid, and maybe he need to update the password
* no list of updates is shown and it's not possible to try to download apps.

** Affects: ubuntu-system-settings (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1507115

Title:
  List of apps updates is visible even if my Ubuntu One account is not
  longer registered

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1507115/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-09-26 Thread Stefano Verzegnassi
I've read the UX specifications.
The reference to the page '24' is wrong with the current revision of the 
document, since the "Header behaviour" section starts from page 27.

An header that is fixed and opaque can not be "transient", i.e. hidden
on tap or timeout.

Some solution:
1) Use the default, "scrolling" behaviour
2) Keep the header fixed and opaque (that means that it will be always visible 
and never hidden)
3) Use a fixed, but semitransparent, header (in this case it can be hidden on 
tap)

I don't think 3) will be used, since it would be much harder to keep
consistent when the app runs in "tablet/desktop mode" (width >
units.gu(80)).

We will probably implement 1), with some exception when the app runs in 
"desktop mode" in some particular contexts (e.g. libreoffice viewer in 
presentation mode).
However having a no-fixed header may require some change in the current header 
configurations/states, therefore I'm marking this bug as 'confirmed', but not 
'triaged'.

** Changed in: ubuntu-docviewer-app
   Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-09-12 Thread Stefano Verzegnassi
** Changed in: windows-binaries (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: [SDK] Tap to hide toolbar is inconsistent

2015-09-10 Thread Stefano Verzegnassi
I've (re-)requested the authorization to access the document.
Please confirm the request, or provide a public link for the UX resolution.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  [SDK] Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447995] Re: [Document-Viewer] Re-enable swipe gestures of list items

2015-07-24 Thread Stefano Verzegnassi
@Zsombor: No, that's due to a misunderstanding of the terrible
explanation I gave at first. The bug should be marked as Invalid for
ubuntu-ui-toolkit.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447995

Title:
  [Document-Viewer] Re-enable swipe gestures of list items

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1471783] [NEW] poppler-data package is missing on devices' image

2015-07-06 Thread Stefano Verzegnassi
Public bug reported:

On the ubuntu-phone mailing list[1] has been reported an issue about the
libpoppler rendering.

Any attempt to load the following document:
http://www.math.sci.osaka-u.ac.jp/~msj-si-2015/msj_si_2015_schedule.pdf

Results in a badly rendered document on the phone (at the first time it
was reported for a Bq E4.5, but it's reproducible on any device -
personally verified with a Nexus 5).

Testing the same document on a PC, using Document Viewer and other PDF
viewer based on the Poppler library, everything is ok.

After a check of the installed packages, both on device and on desktop,
and after a search on Google for the error returned in the application
log[2], it seemed that the issue was due to a suggested dependency
missing on Ubuntu devices (poppler-data).

By removing that package on my desktop, I am able to reproduce this
issue with any viewer.

What I'd suggest is to add the poppler-data package in the device
system image.

I mark this bug as critical for Document Viewer, since we may want to support 
all the possible PDF documents and the package is default on dekstop image.
This issue affects also all the third party application that use libpoppler to 
render PDF documents (e.g. Beru, which includes a PDF viewer), and may be even 
more relevant.

===
[1] https://lists.launchpad.net/ubuntu-phone/msg13932.html
[2] http://paste.ubuntu.com/11830506/

** Affects: ubuntu-docviewer-app
 Importance: Critical
 Status: Triaged

** Affects: ubuntu-touch-meta (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: ubuntu-docviewer-app
   Importance: Undecided
   Status: New

** Changed in: ubuntu-docviewer-app
   Status: New = Triaged

** Changed in: ubuntu-docviewer-app
   Importance: Undecided = Critical

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1471783

Title:
  poppler-data package is missing on devices' image

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1471783/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447995] Re: [Document-Viewer] Re-enable swipe gestures of list items

2015-07-01 Thread Stefano Verzegnassi
I've added a darker background that becomes visible when the overflow panel is 
visible.
This seems to make clearer to which delegate the panel is related.

However we may want in future to add an arrow pointing to the tile,
although it would require a bit more of work, since this is not
currently allowed by the UITK when the popover uses a squared style.

Because of this, I look forward for your reply, and I'll eventually
consider to open a separate bug report with a lower priority for
updating to the following design advices.

** Attachment added: Screenshot from 2015-07-01 17:51:11.png
   
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+attachment/4422990/+files/Screenshot%20from%202015-07-01%2017%3A51%3A11.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447995

Title:
  [Document-Viewer] Re-enable swipe gestures of list items

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447995] Re: [Document-Viewer] Re-enable swipe gestures of list items

2015-06-23 Thread Stefano Verzegnassi
I'm working on the overflow menu as per specifications.

I'm currently using the standard APIs provided by the
Ubuntu.Components.Popups QML module, and I feel that the position of the
menu is confusing (see attachment - the menu actions are related to the
1.pdf document, stored in the internal storage).

Would it be better to switch to an ActionSelectionPopover or add a arrow
pointing to the hamburger icon?

** Attachment added: Screenshot from 2015-06-23 23:46:22.png
   
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+attachment/4419672/+files/Screenshot%20from%202015-06-23%2023%3A46%3A22.png

** Changed in: ubuntu-docviewer-app
   Status: New = In Progress

** Changed in: ubuntu-docviewer-app
   Importance: Undecided = Medium

** Changed in: ubuntu-docviewer-app
 Assignee: (unassigned) = Stefano Verzegnassi (verzegnassi-stefano)

** Description changed:

  STEP TO REPRODUCE THIS ISSUE:
  1. Open Document Viewer. The list of documents in $HOME/Documents will be 
shown.
  2. Delete an entry in the list (N.B. not the grid), by swiping to right the 
corrisponding list item.
  
  WHAT HAPPENS:
  The list item can not be swipped
  
  WHAT SHOULD HAPPENS:
  The list item can be swipped to right, and a red-coloured action is shown.
  Currently, to delete an item we need to switch to the multi-selection mode.
  
- BLOCKERS:
- We need to find an equivalent UI pattern for this user case, when the grid 
view is used instead of the list view.
+ DESIRED SOLUTION:
+ See Option A in the comment #4.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447995

Title:
  [Document-Viewer] Re-enable swipe gestures of list items

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447995] Re: [SDK] Re-enable swipe gestures of list items

2015-05-16 Thread Stefano Verzegnassi
Hi Olga,

Sorry for the bad explanation of the issue. Yes, it's an app-related issue: we 
already have the code for swiping the list item, but we disabled it.
The task in this bug report was basically a to-do entry for me, rather than an 
explicit request to the ux team. My fault!

The problem is that we need to provide those actions (e.g. delete a document, 
move to sd card, etc.), which are activated by a swipe, also in the grid view, 
but the swipe gesture does not seem to be suitable for being used in a grid.
A solution we were considering was to use a context menu, triggerable by a 
button placed in the grid delegate, as done for example in the Android Google 
Play app[1].

I'm not sure though whether it fits with the Ubuntu UX guidelines.

The page which requires this improvement is the first/welcome/main page
of the app, where the user can scroll a list of documents in the device,
and pick one to be opened and read by the PDF viewer.

[1] http://imgur.com/y3vlMmi

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447995

Title:
  [SDK] Re-enable swipe gestures of list items

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1447995] Re: [SDK] Re-enable swipe gestures of list items

2015-05-16 Thread Stefano Verzegnassi
For some reason, the link I pasted from my phone is broken.
I link an image I found on the web: 
http://www.strappysolutions.com/googleplay.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1447995

Title:
  [SDK] Re-enable swipe gestures of list items

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1447995/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1453403] Re: Tap to hide toolbar is inconsistent

2015-05-14 Thread Stefano Verzegnassi
** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1453403

Title:
  Tap to hide toolbar is inconsistent

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1453403/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1399289] Re: Extend double-line header to ImageView and TextView

2015-04-08 Thread Stefano Verzegnassi
Marked as 'Fix Released' for ubuntu-docviewer-app, since the image view
has been removed and the text view is already using the double-line
header.

** Changed in: ubuntu-docviewer-app
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1399289

Title:
  Extend double-line header to ImageView and TextView

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-docviewer-app/+bug/1399289/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-04-08 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Status: Triaged = In Progress

** Changed in: ubuntu-docviewer-app
 Assignee: (unassigned) = Stefano Verzegnassi (verzegnassi-stefano)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1432696

Title:
  [SDK] Bottom edge header improvement

To manage notifications about this bug go to:
https://bugs.launchpad.net/dekko/+bug/1432696/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-04-02 Thread Stefano Verzegnassi
** Changed in: ubuntu-docviewer-app
   Importance: Undecided = Low

** Changed in: ubuntu-docviewer-app
   Status: New = Triaged

** Changed in: ubuntu-docviewer-app
Milestone: None = 2015-04-09

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1432696

Title:
  [SDK] Bottom edge header improvement

To manage notifications about this bug go to:
https://bugs.launchpad.net/dekko/+bug/1432696/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-03-17 Thread Stefano Verzegnassi
** Also affects: ubuntu-docviewer-app
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1432696

Title:
  [SDK] Bottom edge header improvement

To manage notifications about this bug go to:
https://bugs.launchpad.net/dekko/+bug/1432696/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1420748] Re: Always reserve space for three actions in header

2015-02-11 Thread Stefano Verzegnassi
In my opinion, it would be better to reserve space for two actions on
the right.

The reason is that 4 actions on the header will use more than half of
the header width, and there are some app that need that space in order
to display the page title (e.g. chat name in Telegram, or document name
in docviewer-app).

Also, I'd force the two actions number even when there is no action in the left 
of the header.
I think about Unity scopes: Add to favourite and Settings actions should 
always stay in a context menu, since they are secondary actions.

I took a look at the other core apps, and there will be no problem at all with 
this change:
Dialer, address-book, messaging-app already use the bottom edge for the main 
action.

Browser, terminal-app and clock-app use a custom header.

Calculator-app doesn't have an header at all.

Calendar-app: it has a left-action and it needs to show one more action
on the right of the header (New event). However, it could be exposed
by a bottom-edge component, so this is not a real issue.

Telegram: similar issue as calendar-app. It shows three actions on the
right of the header, but Compose action could be moved on the bottom-
edge (and it would be consistent with messaging-app).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1420748

Title:
  Always reserve space for three actions in header

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1420748/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1357945] Re: [bottom edge] Current bottom edge hint timeout makes it difficult to read the bottom edge action

2015-01-19 Thread Stefano Verzegnassi
** Changed in: quick-memo
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1357945

Title:
  [bottom edge] Current bottom edge hint timeout makes it difficult to
  read the bottom edge action

To manage notifications about this bug go to:
https://bugs.launchpad.net/address-book-app/+bug/1357945/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1357945] Re: [bottom edge] Current bottom edge hint timeout makes it difficult to read the bottom edge action

2014-10-20 Thread Stefano Verzegnassi
** Branch linked: lp:~verzegnassi-stefano/quick-memo/fix-bottom-edge

** Changed in: quick-memo
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1357945

Title:
  [bottom edge] Current bottom edge hint timeout makes it difficult to
  read the bottom edge action

To manage notifications about this bug go to:
https://bugs.launchpad.net/address-book-app/+bug/1357945/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1357945] Re: [bottom edge] Current bottom edge hint timeout makes it difficult to read the bottom edge action

2014-10-06 Thread Stefano Verzegnassi
** Changed in: quick-memo
   Status: Triaged = In Progress

** Changed in: quick-memo
 Assignee: (unassigned) = Stefano Verzegnassi (verzegnassi-stefano)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1357945

Title:
  [bottom edge] Current bottom edge hint timeout makes it difficult to
  read the bottom edge action

To manage notifications about this bug go to:
https://bugs.launchpad.net/address-book-app/+bug/1357945/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1370218] Re: QAudioRecorder does not work properly under 'microphone' security policy

2014-09-23 Thread Stefano Verzegnassi
Sorry for the late reply.

I don't get any DENIED for shm_open().
There are some general DENIED that I marked as unrelevant, but they may be 
useful instead.
I attached the logs (from dmesg and /var/log/syslog) to the comment.

Thank you for your attention


** Attachment added: logs
   
https://bugs.launchpad.net/ubuntu/+source/apparmor-easyprof-ubuntu/+bug/1370218/+attachment/4212813/+files/logs

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1370218

Title:
  QAudioRecorder does not work properly under 'microphone' security
  policy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor-easyprof-ubuntu/+bug/1370218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1370218] Re: QAudioRecorder does not work properly under 'microphone' security policy

2014-09-18 Thread Stefano Verzegnassi
This bug is invalid.
I run the test again on utopic-proposed #245 and utopic-proposed #185 and it 
records audio even under confinement. It seems that I broke something while I 
was trying to make pulseaudio: discoverable.

That error is still present (shm_open() failed: Permission denied) in
the application output, however QAudioRecorder works well.

Sorry for the inconvenience.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1370218

Title:
  QAudioRecorder does not work properly under 'microphone' security
  policy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor-easyprof-ubuntu/+bug/1370218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1370218] [NEW] QAudioRecorder does not work properly under 'microphone' security policy

2014-09-16 Thread Stefano Verzegnassi
Public bug reported:

I recently wrote a small application[1] to spot an ancient issue I had
using QAudioRecorder on Ubuntu devices.

After I have installer gstreamer0.10-pulseaudio (otherwise pulseaudio: is not 
listed as available source), I tried to start a record through QAudioRecorder 
but it failed, giving me this output:
shm_open() failed: Permission denied

I've checked for some denials from apparmor (using 'dmesg | grep DEN'),
but none was found.

If I change the apparmor profile[2], so that my test application is
launched in a unconfined environment, QAudioRecorder works properly as
expected.

I run this test on my Nexus 5 (utopic-devel-proposed #185), but this
problem with shm happens also on i386 ubuntu-emulator (utopic-devel
#206).

Just for reference, this is the link to the original mail, stored in the 
ubuntu-phone team mailing list archive:
http://lists.launchpad.net/ubuntu-phone/msg09842.html

[1] - http://bazaar.launchpad.net/~verzegnassi-stefano/+junk/recorder-test/files
[2]
{
policy_version: 1.2,
template: unconfined,
policy_groups: []
}

** Affects: apparmor-easyprof-ubuntu (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1370218

Title:
  QAudioRecorder does not work properly under 'microphone' security
  policy

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apparmor-easyprof-ubuntu/+bug/1370218/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1357945] Re: [bottom edge] Current bottom edge hint timeout makes it difficult to read the bottom edge action

2014-09-05 Thread Stefano Verzegnassi
** Changed in: quick-memo
Milestone: None = 0.3

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1357945

Title:
  [bottom edge] Current bottom edge hint timeout makes it difficult to
  read the bottom edge action

To manage notifications about this bug go to:
https://bugs.launchpad.net/address-book-app/+bug/1357945/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs