[okular] [Bug 443403] Reduce the size of the digital signature display

2022-02-04 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=443403

Roberto Castagnola  changed:

   What|Removed |Added

 CC||roberto.castagn...@gmail.co
   ||m

-- 
You are receiving this mail because:
You are watching all bug changes.

[okular] [Bug 448783] Changing color scheme from Breeze Dark to Breeze: Okular requires restart to display "annotate" popup to use correct color scheme

2022-02-04 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=448783

Roberto Castagnola  changed:

   What|Removed |Added

 CC|roberto.castagn...@gmail.co |
   |m   |

-- 
You are receiving this mail because:
You are watching all bug changes.

[okular] [Bug 448783] Changing color scheme from Breeze Dark to Breeze: Okular requires restart to display "annotate" popup to use correct color scheme

2022-02-04 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=448783

Roberto Castagnola  changed:

   What|Removed |Added

 CC||roberto.castagn...@gmail.co
   ||m

-- 
You are receiving this mail because:
You are watching all bug changes.

[konqueror] [Bug 377201] New: Home Folder button not working in web browser mode

2017-03-04 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=377201

Bug ID: 377201
   Summary: Home Folder button not working in web browser mode
   Product: konqueror
   Version: 5.0.97
  Platform: Gentoo Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: konq-b...@kde.org
  Reporter: roberto.castagn...@gmail.com
  Target Milestone: ---

Created attachment 104363
  --> https://bugs.kde.org/attachment.cgi?id=104363=edit
Fix 'Home Folder' button action

While in web browser mode, if I use 'Home Folder' button I get the error
ERR_UNKNOWN_URL_SCHEME

I got it solved with attached patch.

-- 
You are receiving this mail because:
You are watching all bug changes.

[konqueror] [Bug 355872] svg icons in konqueror not displayed

2017-03-04 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=355872

Roberto Castagnola <roberto.castagn...@gmail.com> changed:

   What|Removed |Added

 CC||roberto.castagn...@gmail.co
   ||m

--- Comment #7 from Roberto Castagnola <roberto.castagn...@gmail.com> ---
Same issue on Fedora 25 (konqueror version 4.14.25) and on Gentoo (konqueror
version 5.0.97)
With Right click -> Show Image, the icon is shown correctly.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 297930] Kmail hangs on "Retrieving folder contents ... please wait"

2017-02-08 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=297930

--- Comment #29 from Roberto Castagnola <roberto.castagn...@gmail.com> ---
Same issue in Gentoo Linux, but setting innodb_buffer_pool_size=128M doesn't
solve it for me.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 297930] Kmail hangs on "Retrieving folder contents ... please wait"

2017-02-07 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=297930

Roberto Castagnola <roberto.castagn...@gmail.com> changed:

   What|Removed |Added

 CC||roberto.castagn...@gmail.co
   ||m

-- 
You are receiving this mail because:
You are watching all bug changes.

[kmail2] [Bug 375149] Kmail deletes emails from folder after switching to folder

2017-02-07 Thread Roberto Castagnola
https://bugs.kde.org/show_bug.cgi?id=375149

Roberto Castagnola <roberto.castagn...@gmail.com> changed:

   What|Removed |Added

 CC||roberto.castagn...@gmail.co
   ||m

-- 
You are receiving this mail because:
You are watching all bug changes.

[kate] [Bug 361909] add extra options to ctags command for project plugin

2016-04-19 Thread Roberto Castagnola via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361909

--- Comment #3 from Roberto Castagnola <roberto.castagn...@gmail.com> ---
(In reply to Dominik Haumann from comment #2)
> could you please submit your patch at http://git.reviewboard.kde.org?

Patch changed to match your requirements and submitted to
http://git.reviewboard.kde.org
Review Request #127690

Hoping to have done it in the correct way.

Regards,
Roberto

-- 
You are receiving this mail because:
You are watching all bug changes.


[kate] [Bug 361909] add extra options to ctags command for project plugin

2016-04-17 Thread Roberto Castagnola via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361909

--- Comment #1 from Roberto Castagnola <roberto.castagn...@gmail.com> ---
Created attachment 98433
  --> https://bugs.kde.org/attachment.cgi?id=98433=edit
read "ctags_options" key from project configuration as string list

Patch for version 15.12.3

This is the patch I use to get the example into description working.
Anyway I think a better code may be wrote.

-- 
You are receiving this mail because:
You are watching all bug changes.


[kate] [Bug 361909] New: add extra options to ctags command for project plugin

2016-04-17 Thread Roberto Castagnola via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361909

Bug ID: 361909
   Summary: add extra options to ctags command for project plugin
   Product: kate
   Version: unspecified
  Platform: Gentoo Packages
OS: Linux
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: kwrite-bugs-n...@kde.org
  Reporter: roberto.castagn...@gmail.com

Should be nice to be able to add extra options to ctags command for some
projects.

For example, in a my use case I have a bash project with some *.cfg files where
I define "globals" variables that will be sourced by others scripts and that I
would like to be indexed for completion, and some *.awk scripts that I want to
exclude by indexing since I don't need awk functions outside their script.
In this example, my project looks like:

{
  "name": "Bash Project"
, "files": [{"directory": ".", "filters": ["*.sh", "*.profile", "*.func",
"*.awk", "*.cfg"], "recursive": 1}]
, "ctags_options": [
"--langdef=Cfg"
  , "--langmap=Cfg:.cfg\(*.profile\)"
  ,
"--regex-Cfg=/^[[:space:]]*((declare|local)[[:space:]]+(-[a-z]+[[:space:]]+))?([[:alpha:]][[:alnum:]]+(\\[[[:alnum:]]+])?)=/\\4/v,variables/"
  , "--exclude=*.awk"
  ]
}


Reproducible: Always

-- 
You are receiving this mail because:
You are watching all bug changes.


[kdenlive] [Bug 357710] wipe transition uses incorrect shape size when using a png lumas file

2016-01-08 Thread Roberto Castagnola via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=357710

Roberto Castagnola <roberto.castagn...@gmail.com> changed:

   What|Removed |Added

Summary|wipe transition use |wipe transition uses
   |incorrect shape size when   |incorrect shape size when
   |using a png lumas file  |using a png lumas file

-- 
You are receiving this mail because:
You are watching all bug changes.


[kdenlive] [Bug 357710] New: wipe transition use incorrect shape size when using a png lumas file

2016-01-08 Thread Roberto Castagnola via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=357710

Bug ID: 357710
   Summary: wipe transition use incorrect shape size when using a
png lumas file
   Product: kdenlive
   Version: unspecified
  Platform: Gentoo Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Effects & Transitions
  Assignee: vpi...@kde.org
  Reporter: roberto.castagn...@gmail.com

If I use a png lumas file with a different aspect ratio than the project one,
the shape of transition is resized keeping the aspect-ratio of the png file, so
I get 2 bar on left and right of the clip where the transition is not applied.
I will attach a simple test project in dv_pal format where I have created a
black and a white clip color, starting with the balck clip and ending with the
white one. During the transition, using file radial.png found into kdenlive
package, the black clip is resized leaving 2 white bars on left and right.
If I convert the file to pgm format:
   convert -strip radial.png radial.pgm
the transition covers all the clip size as expected
(I have to use -strip option to strip comment, or the transition doesn't work:
maybe I shall open an other bug for this?)

Furthermore, if I enable 'Use GPU processing' option, kdenlive crashes when
using png file, but not when using pgm file


Reproducible: Always




kdenlive version: 15.12.0
mlt version: 0.9.8

-- 
You are receiving this mail because:
You are watching all bug changes.