- Sep 26, 2009
-
-
Jannis Pohlmann authored
XDT_FEATURE_VISIBILITY() breaks plugins as it strips thunar_extension* functions from the final shared library files. An alternative way to XDT_FEATURE_VISIBILITY() and the old visibility configure code used in Thunar is to define -export-symbols-regex (e.g. by setting it to "^thunar_extension.*") in Makefile.am of each plugin. This also removes the alias stuff in Thunarx, as we no longer need to define which symbols to export or not via the alias header. All symbols starting with _ are now automatically marked as private and are not exported. Additionally, G_GNUC_INTERNAL can be used to hide symbols. thunarx.symbols is preserved for ABI checks and still has to be updated when new symbols are added. Hope all this is ok. Double-checkers to the rescue!
-
Jannis Pohlmann authored
-
- Sep 25, 2009
-
-
Per Kongstad authored
Transmitted-via: Transifex (translations.xfce.org)
-
Jannis Pohlmann authored
-
Besnik Bleta authored
Transmitted-via: Transifex (translations.xfce.org)
-
Besnik Bleta authored
Transmitted-via: Transifex (translations.xfce.org)
-
- Sep 21, 2009
-
-
Jannis Pohlmann authored
-
- Sep 19, 2009
-
-
Jannis Pohlmann authored
Using strlen() for the number of characters is unrealistic when dealing with multibyte strings.
-
- Sep 18, 2009
-
-
Rihards Prieditis authored
Transmitted-via: Transifex (translations.xfce.org)
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
I'd like to see if this has an impact on make distcheck. It could be that only modules using XDT_FEATURE_DEBUG(), like xfconf and Thunar, break due to this error in the scanner code generated by gtk-doc: thunarx-scan.c: In function ‘describe_signed_constant’: thunarx-scan.c:884: error: comparison between signed and unsigned
-
- Sep 17, 2009
-
-
Per Kongstad authored
Transmitted-via: Transifex (translations.xfce.org)
-
- Sep 16, 2009
-
-
Jannis Pohlmann authored
This reverts commit 40684e73.
-
Jannis Pohlmann authored
-
Evaggelos Balaskas authored
Transmitted-via: Transifex (translations.xfce.org)
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
We now have startup notification support in the Thunar D-Bus interface which adds a startup ID parameter to some of the D-Bus methods.
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
- Sep 15, 2009
-
-
Ignacio Velasco authored
Transmitted-via: Transifex (translations.xfce.org)
-
- Sep 14, 2009
-
-
Baurzhan Muftakhidinov authored
Transmitted-via: Transifex (translations.xfce.org)
-
- Sep 13, 2009
-
-
Robert Hartl authored
Transmitted-via: Transifex (translations.xfce.org)
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
If anyone can point me at a good reason to use them, I'll happily add them back. Until then they are just two more characters to read on the screen in my opinion.
-
Jannis Pohlmann authored
This makes it more obvious that Thunar has recognized the user's cancel action and is about to cancel the job. Sometimes this takes a while, so this text will help users in being patient. Suggested by Steve Dodier.
-
Jannis Pohlmann authored
This is done by making it visible only when the progress dialog is shown, not whenever a job is added or removed.
-
- Sep 12, 2009
-
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
All operations that have only one target directory now have its display name in the title of the corresponding ThunarProgressView, e.g. 'Copying files to "Test"...'. This is accompanied by a new function called thunar_file_cached_display_name() which takes a GFile and tries to determine the display name of its cached ThunarFile, and otherwise falls back to g_filename_display_name().
-
Jannis Pohlmann authored
-
Jannis Pohlmann authored
It still seems to reduce the CPU usage by about the same amount than 0.05 percent did (5-9% instead of 50%).
-
Jannis Pohlmann authored
GIO generates a lot of calls to the progress callback. If we simply forward those to the GUI in the form of 'percent' signals, we cause the CPU usage of the X server to go up dramatically (up to around 50%). A better solution is to only emit the 'percent' signal from time to time but frequently enough for progress bars to advance smoothly. This is what this commit changes. From now on 'percent' is only emitted when the percentage has increased by more than 0.05 percent since the previous emission.
-
Jannis Pohlmann authored
This introduces a new view called ThunarProgressView which essentially replaces the old ThunarProgressDialog. The new ThunarProgressDialog is a container GtkWindow (I wonder about renaming it to ThunarProgressWindow) for all the ThunarProgressViews associated with running file operations. ThunarProgressDialog also creates a status icon that can be used to toggle its visibility. Things left on the TODO list: - Check if we can lower the CPU usage of the dialog (X goes up to around 50% on my machine with the dialog visible), compare this to the situation before. - Double-check if the use of gtk_window_present() is correct here. - Either prepend (instead of append) new views or scroll down to them upon their creation.
-
- Sep 10, 2009
-
-
Jannis Pohlmann authored
Cancelling e.g. the credentials dialog is something users do on purpose. Thus we don't need to show them a cancel error dialog. There is a bug in GVfs however which results in a permission denied error instead of a cancel error when the user presses the cancel button in the credentials dialog. It was filed against GVfs (#594798 in GNOME's bugzilla).
-
Jannis Pohlmann authored
-