Heimen Stoffels
98c0efd2fa
Translated using Weblate (Dutch)
...
Currently translated at 100.0% (15 of 15 strings)
Translation: applications/kvirc - torrent
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-torrent/nl/
2 days ago
Andrei Stepanov
e640c305e1
Translated using Weblate (Russian)
...
Currently translated at 100.0% (25 of 25 strings)
Translation: applications/kvirc - editor
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-editor/ru/
2 days ago
Alexander Golubev
e752c695b3
Translated using Weblate (Russian)
...
Currently translated at 93.1% (2414 of 2592 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ru/
2 days ago
Heimen Stoffels
a8f45c6722
Translated using Weblate (Dutch)
...
Currently translated at 4.2% (111 of 2592 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/nl/
2 days ago
TDE Weblate
33b6f4eb3b
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - torrent
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-torrent/
3 days ago
TDE Weblate
01f546a85c
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc - options
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-options/
3 days ago
TDE Weblate
bfa243387d
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/
3 days ago
TDE Gitea
f0196920e8
Update translation template.
3 days ago
Michele Calgaro
16d42ec461
Fix conversion of TQString to const char* (modules)
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 days ago
Michele Calgaro
a09cecfffd
Some generic fixes required for future cmake conversion
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 days ago
Andrei Stepanov
c4566646d9
Translated using Weblate (Russian)
...
Currently translated at 93.1% (2411 of 2588 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ru/
4 days ago
Andrei Stepanov
69022228c9
Translated using Weblate (Russian)
...
Currently translated at 100.0% (805 of 805 strings)
Translation: applications/kvirc - options
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-options/ru/
5 days ago
Andrei Stepanov
9a3a12077e
Translated using Weblate (Russian)
...
Currently translated at 93.1% (2411 of 2588 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ru/
5 days ago
Andrei Stepanov
71eb43c9a3
Translated using Weblate (Russian)
...
Currently translated at 93.1% (2411 of 2588 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ru/
7 days ago
Michele Calgaro
d31eca7498
Use Perl to find the files to analyze for the help documentation.
...
All the .h and .cpp files needs to be processed for this. Some files are generated at build time and the coming cmake conversion can't use "file(GLOB)" to collect the lists of files since that command is execute at configure time, so before some files are generated.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 weeks ago
Andrei Stepanov
bb663a5a1e
Translated using Weblate (Russian)
...
Currently translated at 100.0% (805 of 805 strings)
Translation: applications/kvirc - options
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-options/ru/
2 weeks ago
Michele Calgaro
beec6cf1c3
Remove files generated at build time from the sources
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 weeks ago
Michele Calgaro
7dd6e31b98
Include moc files directly from the related source files (modules)
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 weeks ago
TDE Weblate
e440292127
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/
3 weeks ago
TDE Gitea
1847f89baf
Update translation template.
3 weeks ago
Michele Calgaro
ed184e8a40
Fix conversion of TQString to const char*
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
3 weeks ago
Michele Calgaro
226080f88c
Remove support for Irix, which is discontinued and does not provide a c++17 complaint compiler. Also remove support for NonStop-UX due to similarities.
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
4 weeks ago
Michele Calgaro
164a5bd91a
Fix wrong parameter in KviTQString::sprintf call
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
4 weeks ago
Michele Calgaro
34ccc36dae
Use correct license file name
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
f27be165c4
Split kvirc executable into a shared library (libkvirc) and a stub executable (kvirc).
...
Autotool builds kvirc with '-export-dynamic', which exports all global symbols from the main executable to the dynamic symbol table. This allows 'modules' to access those symbols and build successfully.
CMake build kvirc without '-export-dynamic' and with hidden symbol visibitily by default, resulting in FTBFS when the build process reaches the 'modules' part. This is caused by the modules referring to symbols define in code under the 'src/kvirc' folder
Splitting 'kvirc' into an additional 'libkvirc' shared library plus a simple executable stub that creates the application and run it, allows modules to be linked against the library part and build successfully also with cmake.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
5f11552ae3
Add visibility attributes to library functions
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
22304a213f
Include moc files directly from the related source files
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
ed70becf9c
Fix debug format strings
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
e7c2992a48
Improvements suggested on PR #58
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
TDE Weblate
111d9fbdfd
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/
1 month ago
TDE Gitea
0e2d7d8da7
Update translation template.
1 month ago
Michele Calgaro
ec97d6d21f
Remove unused config defines
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
ab0b59c0c1
Remove BUILD_FLAGS
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
209c97c466
Remove VERSION_BRANCH and SS_DIRTAG
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
562f8a7669
Fix invalid comparison warnings
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
33b84dbbb4
Fix 'this if clause does not guard...' warnings
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
a9f2b04e53
Fix 'ISO C++11 forbids converting a string constant to char*' warnings
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
c801dc76b8
Remove support for HPUX, which is discontinued and does not provide a c++17 complaint compiler.
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Michele Calgaro
99e229125e
Remove code related to obsoleted thread libraries
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
1 month ago
Andrei Stepanov
04c8d73780
Translated using Weblate (Russian)
...
Currently translated at 100.0% (27 of 27 strings)
Translation: applications/kvirc - logview
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc-logview/ru/
1 month ago
Michele Calgaro
62c2474c8c
Remove kvirc-config
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
6d7d4ce7f3
Install script examples files in the application data folder
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Andrei Stepanov
df4d7571cb
Translated using Weblate (Russian)
...
Currently translated at 93.1% (2411 of 2588 strings)
Translation: applications/kvirc
Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/kvirc/ru/
2 months ago
Michele Calgaro
10f91a66b6
Move admin/gendoc.pl to data/gendoc/gendoc.pl.
...
Once the cmake conversion is completed and the support for autotools is
dropped, the admin folder will no longer exist but "gendoc.pl" is still
required to generate the help documentation.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
19b03cd019
Remove object prelink logic
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
f175a58c41
Remove unused files from admin subfolder
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
c93ccfb821
Remove internal copy of libtool, which is not used
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
9bb2ca4409
Removed unused files. These are neither used not installed
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
b39af9e56f
Fix installation location of 128x128 icons
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago
Michele Calgaro
1d5f6d2720
Move data/man folder to doc/man
...
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
2 months ago