Commit graph

3230 commits

Author SHA1 Message Date
manongjohn
4f16d3ec9a Set directory permissions on macOS/Linux builds 2021-09-10 17:43:07 -04:00
manongjohn
a86512e033
Merge pull request #770 from manongjohn/ot_patches_misc
OpenToonz patches - misc
2021-09-05 08:49:29 -04:00
manongjohn
8dcca4d378
Merge pull request #765 from manongjohn/fix_keyframe_icon_positions
Fix keyframe icon positions
2021-09-03 15:40:53 -04:00
manongjohn
eb5a5f1177
Merge pull request #764 from manongjohn/fix_selection_tool_on_motion_paths
Fix selection tool for motion path editing
2021-09-03 11:01:46 -04:00
manongjohn
1076584256
Merge pull request #762 from manongjohn/add_view_check_indicators
Add View Check indicators to Viewer
2021-09-03 05:49:58 -04:00
manongjohn
9930d7b533
Merge pull request #716 from jeremybullock/improve_tablet_response
PR 3841 from OpenToonz: Improve Tablet Response (Windows Only)
2021-09-02 16:14:18 -04:00
luz paz
3fe195d07a Misc. typos 2021-08-31 11:10:53 -04:00
luz paz
bfa820317a Fix CHECK_VIDEO_FRAME_INTERVALL->CHECK_VIDEO_FRAME_INTERVAL 2021-08-31 11:10:52 -04:00
luz paz
7290a10af7 Fix PliOuputStream->PliOutputStream 2021-08-31 11:10:52 -04:00
luz paz
dfe1d98e54 Fix indipendentValue->independentValue 2021-08-31 11:10:52 -04:00
luz paz
4cb5845b92 Fix timeStrech->timeStretch 2021-08-31 11:10:52 -04:00
luz paz
6e4e0d7fb0 Fix CheckEdgeExistance->CheckEdgeExistence 2021-08-31 11:10:52 -04:00
luz paz
8f2731975f Fix m_refernce->m_reference 2021-08-31 11:10:52 -04:00
luz paz
f4e8ae7f10 fix trasformation->transformation 2021-08-31 11:10:52 -04:00
luz paz
3ab6a92c6e Fix weigths->weights 2021-08-31 11:10:52 -04:00
luz paz
b736a3554e fix collapsable->collapsible 2021-08-31 11:10:52 -04:00
luz paz
ccae1cb3cb Fix caracters->characters 2021-08-31 11:10:52 -04:00
luz paz
cce92e163b Fix tanRigth->tanRight 2021-08-31 11:10:52 -04:00
luz paz
29363cf846 Fix rigth->right 2021-08-31 11:10:51 -04:00
luz paz
d3ff7a2d29 Fix top_rigth-> top_right 2021-08-31 11:10:51 -04:00
luz paz
a41c3e475a Fix InBetweeen->InBetween 2021-08-31 11:10:51 -04:00
luz paz
9caf9a829b Fix syntetic->synthetic 2021-08-31 11:10:51 -04:00
luz paz
f6ea5ba237 Fix Colums->Columns 2021-08-31 11:10:51 -04:00
luz paz
1cfca4b407 Fix Prefered->Preferred 2021-08-31 11:10:51 -04:00
luz paz
f59aecafe1 Fix Dinamic->Dynamic 2021-08-31 11:10:51 -04:00
luz paz
5d7fc38c83 Fix tq_rigth->tq_right 2021-08-31 11:10:51 -04:00
luz paz
35e409e926 fix various typos
Found via `codespell -q 3 -S *.ts,thirdparty, -L appy,ba,inbetween,inout,pevent,possibile,upto`
2021-08-31 11:10:50 -04:00
shun-iwasawa
286db52495 remove LibJpeg and add jpeg-turbo in thirdparty 2021-08-31 11:10:50 -04:00
shun-iwasawa
9e3a1de6bb build translation optional in cmake 2021-08-31 11:10:48 -04:00
Rozhuk Ivan
a7b6545028 Add FreeBSD (tested) and other BSD systems (not tested) to build and run.
I fail to build TIFF code: it requires access to libtiff internals but it
unavailable with libtiff prom ports. Probably pre build form
thirdparty/tiff-4.0.3 should fix this, but I don't check this.
Tiff code disabled for work but available in options.

I fail with SSE2 too, there is some mess with class initialization:
TRaster32P rout32 = rout; have no idea how to fix it.
If some one want to play with it, then try to build with
CFLAGS+= -DUSE_SSE2 -DDWORD=uint32_t -D_aligned_malloc=aligned_alloc -D_aligned_free=free
on non windows system.

FarmServer::queryHwInfo() - now uses TSystem::***() to collect system info,
to avoid code duplication.

Add pthread as required lib.
2021-08-31 11:10:48 -04:00
Érico Rolim
a3d1d6bb4f Use the alternative TRasterCodecLZO::decompress signature for big-endian in tiio_tzl.cpp.
This patch fixes code that was missed in previous refactoring.
2021-08-31 11:10:48 -04:00
Érico Rolim
b003793236 Fix big-endian code in tsio_wav.cpp.
Get the address the C++-managed pointers properly.

This commit fixes code that was previously refactored.
2021-08-31 11:10:48 -04:00
Érico Rolim
2c66a4ced9 Use feature test macros properly in igs_resource_msg_from_err_unix.
Feature test macros should be used to inform the C library what
functions a program _expects_ to be available (and which should be made
available to it), not as checks for what functions are available to be
used. Therefore, it is necessary to set _POSIX_C_SOURCE to 200809L,
which indicates we wish to use functions defined in POSIX.2008, one of
which is `int strerror_r()`. This way, all libc (including glibc, as
long as _GNU_SOURCE is undefined) implementations will make the correct
version of the function available, and the fallback to the `char
*strerror_r()` version is no longer necessary.
2021-08-31 11:10:47 -04:00
Érico Rolim
2e3c011ee3 Include <unistd.h> instead of <sys/unistd.h>.
On glibc systems, the <sys/unistd.h> header simply redirects to
<unistd.h>, while on musl systems this header doesn't exist. Therefore,
it makes more sense to include <unistd.h> directly.
2021-08-31 11:10:47 -04:00
Alexander von Gluck IV
60c390ede7 cmake: Fix SuperLU include discovery on Fedora 32 2021-08-31 11:10:47 -04:00
manongjohn
96a36d5eaa Set Minium size of Motion Path Windows 2021-08-29 17:50:21 -04:00
manongjohn
6ce3db16fa Fix Motion Path tools from Camera column 2021-08-29 17:32:16 -04:00
manongjohn
58ad5fe620 Vertically center timeline text 2021-08-29 13:44:01 -04:00
manongjohn
1f915133ce Consolidate other viewer indicators 2021-08-28 23:50:15 -04:00
manongjohn
2d3f05e838
Merge pull request #763 from manongjohn/fix_canvas_size_availability
Fix Canvas Size availability
2021-08-27 16:15:33 -04:00
manongjohn
007ed18509
Merge pull request #761 from manongjohn/enable_quicktoolbar_single_click_expansion
Enable single click expansion on Quicktoolbar categories
2021-08-27 15:09:03 -04:00
manongjohn
7b6acfd2b3
Merge pull request #759 from manongjohn/fix_column_lock_indicator_refresh
Fix timeline column lock indicator refresh
2021-08-27 14:26:24 -04:00
manongjohn
fe48fb7d52
Merge pull request #758 from manongjohn/stop_column_button_switching
Stop switching columns on column button press
2021-08-27 13:35:43 -04:00
manongjohn
08829c4a2a
Merge pull request #757 from manongjohn/fix_crash_adding_fx_while_on_camera_col
Fix crash adding Fx while on Camera column
2021-08-27 12:10:12 -04:00
manongjohn
20dd64d2e2
Merge pull request #756 from manongjohn/fix_blurred_brush_canvas_resize_crash
Fix blurred brush crash after canvas resize
2021-08-26 22:27:03 -04:00
manongjohn
c5750d5af7 Vertically center Camera column's keyframe icons 2021-08-24 17:56:35 -04:00
manongjohn
532d68ba71 Fix Xsheet ease handle position 2021-08-24 16:47:11 -04:00
manongjohn
30eddd26de
Merge pull request #753 from manongjohn/ot_patches_20210816
OpenToonz patches thru 8/16
2021-08-24 13:19:48 -04:00
manongjohn
092ff228ef Fix selection tool for motion path editing 2021-08-24 09:55:38 -04:00
manongjohn
7fb91e07d6 Add Show/Toggle Check Indicators preference, command and shortcut 2021-08-22 14:22:31 -04:00