[krita] [Bug 482378] recorder docker works perfectly except for no auto-start (have box checked)

2024-03-14 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=482378

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com
 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #1 from Reinold Rojas  ---
I can replicate this issue so setting to confirmed

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

[krita] [Bug 467914] Every file type Krita is set to open by default is labeled simply "Image File" with no distinction

2024-03-14 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=467914

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #3 from Reinold Rojas  ---
I took a bit of a look and it seems like this is because all of these filetypes
are defined in `packaging/windows/msix/manifest.xml.in` in one group and use
the same display name of "Image File". I would guess that instead of grouping
them all together we should separate them into different sections with their
own unique display name. 

I don't have a windows setup so I can't test it out but anyone with a windows
build is open to trying that and making a MR.

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

[krita] [Bug 450790] Recorder not showing last frame properly

2024-02-03 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=450790

--- Comment #6 from Reinold Rojas  ---
I'm now not totally sure it is a scale issue. I tried using the same  method to
extend a frame as the preview and use it for the end but that doesn't seem to
work. ffmpeg just seems to skip rendering that portion entirely if its added to
the end.

I found this a comment on stack overflow that mentions exactly what I thought
was the problem (different resolutions for input images) but trying that
doesn't seem to fix the issue here. https://superuser.com/a/1136305 and ffmpeg
doc https://ffmpeg.org/ffmpeg-filters.html#scale

I'm not quite sure what else to try/test if anyone has any ideas...

Here was my last ffmpeg filter command I was testing with for visibility:

```

[0]scale=w=$WIDTH:h=$HEIGHT:force_original_aspect_ratio=decrease:eval=frame[main1];
 [main1]loop=1:size=1:start=0[main2];
 [main2]setpts=PTS-STARTPTS[main3];
 [1]split=3 [preview1][transition1][ending1];

[transition1]scale=$WIDTH:$HEIGHT:force_original_aspect_ratio=decrease:eval=frame
[transition2];
 [transition2]loop='if(gte($FIRST_FRAME_SEC, 1), 1*$IN_FPS,
0)':size=1:start=1[transition3];
 [transition3]setpts=PTS-STARTPTS[transition4];
 [preview1]loop='if(gte($FIRST_FRAME_SEC, 1), ($FIRST_FRAME_SEC*$IN_FPS) -
0.5*$IN_FPS, $FIRST_FRAME_SEC*$IN_FPS)':size=1:start=1[preview2];

[preview2]scale=$WIDTH:$HEIGHT:force_original_aspect_ratio=decrease:eval=frame[preview3];
 [preview3]setpts=PTS-STARTPTS[preview4];
 [ending1]loop=$LAST_FRAME_SEC*$IN_FPS:size=1:start=1[ending2];

[ending2]scale=$WIDTH:$HEIGHT:force_original_aspect_ratio=decrease:eval=frame[ending3];
 [ending3]setpts=PTS-STARTPTS[ending4];

[transition4][main3]xfade=transition=smoothright:duration=0.5:offset=0[combined1];
 [combined1]trim=start_frame=1[combined2];

[combined2]scale=$WIDTH:$HEIGHT:force_original_aspect_ratio=decrease:eval=frame[combined3];
 [ending4][combined3]scale2ref[ending5][combined4] ;
 [preview4][combined4][ending5] concat=n=3[final1];
 [final1] setpts=PTS-STARTPTS[final2];
 [final2] trim=start_frame=1
```

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

[krita] [Bug 450790] Recorder not showing last frame properly

2024-01-31 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=450790

--- Comment #5 from Reinold Rojas  ---
After some testing it seems like it is the different resolution for the saved
images (from the painting changing sizes midway). Checking the ffmpeg docs it
says "The _size_, the pixel format, and the format of each image must be the
same for all the files in the sequence." Trying a simple ffmpeg command to
extend a custom frame it breaks exactly when the input image resolution
changes. 

It does seem like the preview still works (probably because it gets and reads
the extended portion separately from the main file) so I think doing the same
for the end result should get around the issue.

fmmpeg doc: https://ffmpeg.org/ffmpeg-all.html#image2-1

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

[krita] [Bug 450790] Recorder not showing last frame properly

2024-01-30 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=450790

--- Comment #4 from Reinold Rojas  ---
I'm fairly sure its not related to that other bug. I think that one is mostly
from some of the ffmpeg commands not properly taking into account the input
fps. This one seems to be some other issue that just skips part of the script
entirely. Its possible the scaling caused the issue but will probably take some
more testing to confirm.

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

[krita] [Bug 461869] [Recorder] "Input FPS" option accidentally influences the 'Duration' of end result/result preview

2024-01-30 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=461869

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com

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

[krita] [Bug 461869] [Recorder] "Input FPS" option accidentally influences the 'Duration' of end result/result preview

2024-01-30 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=461869

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #1 from Reinold Rojas  ---
Hi David,

Yes it works like you described and it seems the input fps is messing with
duration of the preview and end result. I took a little bit of a look and I
think it has something to do with how the framerate is set either for the input
files or the export file. I'll try and look into this sometime this weekend.
thanks for the detailed bug report.

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

[krita] [Bug 464378] [Recorder] All artworks created from the same template ends into the same recorded directory

2023-05-16 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=464378

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com
 Status|REPORTED|NEEDSINFO
 Resolution|--- |FIXED

--- Comment #1 from Reinold Rojas  ---
Hi David,

Following your instructions it seems like this is fixed in the Krita Next. I
see that documents made from templates will now properly save in different
directories. Can you confirm if its fixed as well?

INFO:
The way the recorder creates the directory is from the timestamp of the
document creation. There was bug a before that documents made with templates
all had the same creation date as the original template. It seems that's now
fixed which fixed this issue with the recorder. You can check that by looking
at File -> Document Information -> Created and see how in krita 5.1.5 it always
shows a date years old and Krita Next shows the time you created that file.

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

[krita] [Bug 404834] Please add Export to SVG

2022-05-30 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=404834

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 450790] Recorder not showing last frame properly

2022-03-06 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=450790

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com

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

[krita] [Bug 450790] Recorder not showing last frame properly

2022-03-06 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=450790

Reinold Rojas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||rojasrein...@gmail.com
 Status|REPORTED|CONFIRMED

--- Comment #1 from Reinold Rojas  ---
Hi Rexel,

Thanks for the Krita files and bug report. I can confirm that the hold frame
option doesn't work/crashes for your krita file file. 

Setting to confirmed and assigning to myself since I added that feature.

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

[krita] [Bug 446507] Cannot select multiple frames on the timeline with Shift+Left Click

2021-12-07 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=446507

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #1 from Reinold Rojas  ---
Hi oliverpete,

I'm not able to reproduce this myself. Can you record and attach a short clip
of the glitch as it happens?

Also just to be clear the shift+left click on the timeline should "select all
frames between the active and the clicked frame" like said in the docs
https://docs.krita.org/en/reference_manual/dockers/animation_timeline.html#controls
(I  think should be item 4 under controls)?

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

[krita] [Bug 445731] Free Transform Tool Rotation in erratic angles

2021-12-01 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=445731

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Reinold Rojas  ---
This has been fixed in this MR:
https://invent.kde.org/graphics/krita/-/merge_requests/1192
Also it has been back ported to Krita 5.0 branch
https://invent.kde.org/graphics/krita/-/commit/4a37f6e39e1385c840788c0a292d83cdc654aa99

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

[krita] [Bug 443700] recorder broken; each session gets separate folder, and cannot output full video

2021-11-05 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=443700

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #8 from Reinold Rojas  ---
I'm able to reproduce this only if I save the document as a psd and then reopen
as psd. If I keep the document as a .kra file the exported video will have all
the drawing sessions. 

@fae can you confirm if it works properly for you when saving as .kra file but
not psd?

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

[krita] [Bug 410745] "[write protected]" label attached to incorrect document tab

2021-11-02 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=410745

Reinold Rojas  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #3 from Reinold Rojas  ---
This was fixed with https://invent.kde.org/graphics/krita/-/merge_requests/1133

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

[krita] [Bug 429637] Discrete canvas rotation mode is skipping an angle

2021-10-31 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=429637

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 410745] "[write protected]" label attached to incorrect document tab

2021-10-30 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=410745

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 431182] ctrl+alt+I to resize has the cursor as default on the OK button

2021-10-21 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=431182

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 441645] Shortcut keys for filters

2021-10-21 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441645

Reinold Rojas  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #2 from Reinold Rojas  ---
These shortcuts were added at:
https://invent.kde.org/graphics/krita/-/merge_requests/1109

Thank you for making the bug report!

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

[krita] [Bug 441645] Shortcut keys for filters

2021-10-18 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441645

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 441184] SUGGESTION Krita 5 - Recorder [Export timelapse] - Option: "Hold Last Frame for: X seconds"

2021-10-12 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441184

Reinold Rojas  changed:

   What|Removed |Added

 Status|ASSIGNED|CONFIRMED

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

[krita] [Bug 441184] SUGGESTION Krita 5 - Recorder [Export timelapse] - Option: "Hold Last Frame for: X seconds"

2021-10-12 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441184

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|rojasrein...@gmail.com  |krita-bugs-n...@kde.org

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

[krita] [Bug 441184] SUGGESTION Krita 5 - Recorder [Export timelapse] - Option: "Hold Last Frame for: X seconds"

2021-10-12 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441184

--- Comment #3 from Reinold Rojas  ---
The  "Hold Last Frame for" option was merged:
https://invent.kde.org/graphics/krita/-/merge_requests/1087

The "Made with Krita" watermark feature still needs to be implemented.

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

[krita] [Bug 441184] SUGGESTION Krita 5 - Recorder [Export timelapse] - Option: "Hold Last Frame for: X seconds"

2021-10-07 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=441184

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com
   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com

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

[krita] [Bug 352519] Delete, cut copy and paste recursively from a group or multiple selected layer

2021-09-26 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=352519

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #10 from Reinold Rojas  ---
I think this has been done with the work done by Santhosh Anguluri 
 in https://invent.kde.org/graphics/krita/-/merge_requests/888

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

[krita] [Bug 437932] Canvas Only Mode does not hide Titlebar or go fullscreen the first time, unless cycling Ctrl+Shift+F once

2021-09-23 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=437932

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 396490] No color preview with Eyedropper

2021-05-19 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=396490

Reinold Rojas  changed:

   What|Removed |Added

   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com
 CC||rojasrein...@gmail.com

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

[krita] [Bug 340643] Grid Brush: Offset Grid

2021-05-18 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=340643

Reinold Rojas  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #6 from Reinold Rojas  ---
A grid offset shortcut was also merged in
https://invent.kde.org/graphics/krita/-/commit/1f38961974301aef08d484da5c6255078c9827e9
 

Pressing ctrl+alt+drag while on the canvas will allow you set to the grid
offset. Also an outline of a grid cell will appear to help with alignment.

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

[krita] [Bug 340643] Grid Brush: Offset Grid

2021-04-12 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=340643

--- Comment #4 from Reinold Rojas  ---
@Bollebib How important is the shorcut modifier for editing the grid offset?
With the option available in the brush settings does that provide most of the
functionality you need?

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

[krita] [Bug 340643] Grid Brush: Offset Grid

2021-04-08 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=340643

--- Comment #3 from Reinold Rojas  ---
The grid brush now includes an offset setting to move the grid by X and Y
values.

Merge Request:
https://invent.kde.org/graphics/krita/-/merge_requests/793#note_217361

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

[krita] [Bug 340643] Grid Brush: Offset Grid

2021-04-05 Thread Reinold Rojas
https://bugs.kde.org/show_bug.cgi?id=340643

Reinold Rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com
   Assignee|krita-bugs-n...@kde.org |rojasrein...@gmail.com

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

[krita] [Bug 393704] exiting fullscreen does not work the first time.

2021-03-16 Thread reinold rojas
https://bugs.kde.org/show_bug.cgi?id=393704

reinold rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #5 from reinold rojas  ---
I think this has been fixed. Checking on Krita 4.4.2 on Windows I do not get
stuck in fullscreen and un-toggling "Full Screen Mode" takes me out of full
screen.

Here is a video of the toggle working correctly for me(this is in a windows 10
VM):
https://drive.google.com/file/d/1JqaeLxDDqIPcOROJ-p6-OfUHALi4pLlg/view?usp=sharing

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

[krita] [Bug 394209] Name file layer after the image filename

2021-03-15 Thread reinold rojas
https://bugs.kde.org/show_bug.cgi?id=394209

reinold rojas  changed:

   What|Removed |Added

 CC||rojasrein...@gmail.com

--- Comment #3 from reinold rojas  ---
It seems like this was completed at some point. I tried this on Krita 4.4.2 and
the latest git master and both will set the layer name to the name of the image
when importing a file as layer. I think this can marked as complete.

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