Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
PyQt is a set of Python bindings for the Qt toolkit. PyQt brings
together the Qt C++ cross-platform toolkit and the cross-platform
interpreted language Python. PyQt contains 300 classes and over
5,750 functions and methods.
PyQt also includes the pyuic and pylupdate utilities which correspond
to the Qt uic and lupdate utilities. pyuic converts the GUI designs
created with Qt Designer to executable Python code. pylupdate
scans Python code, extracts all strings that are candidates for
internationalisation, and creates an XML file for use by Qt Linguist.
This package is for QT5.
|
|
|
|
Qt5 WebChannel module
|
|
http://cgit.freedesktop.org/xcb/util-cursor/commit/?id=f03cc278c6cce0cf721adf9c3764d3c5fba63392
and PR 49627 by Youri Mouton.
|
|
|
|
New xkeyboard-config release is out:
Andreas Wettstein (1):
Add oe ligature to Swiss keyboard layout, replacing oslash.
Changwoo Ryu (1):
update Korean
Julien Cristau (1):
fujitsu_vndr: add a name to xkb_symbols sections
Michael Witten (1):
README: Clean up grammar/formatting, and mention bugzilla
Peter Hutterer (2):
rules: improve documentation for numpad:microsoft
symbols/il: add HOLAM HASER FOR VAV on shift+5 to il(biblical)
Ran Benita (3):
symbols/macintosh_vndr: add some "default" annotations
macintosh_vndr/us: include "keypad(overlay)" explicitly
symbols/keypad: move the default map to be the first in the file
Sergey Udaltsov (9):
Added Russian AZERTY phonetic variants
Added de(pl) option
Fixng the ISO 639-2 Code for the Uyghur keyboard layout [cn (ug)]
Removing compose(ralt)
Prerelease 2.13.99
support for arabic macintosh
Typo fixed, closing tag
Prerelease translation sync
Release 2.14
Viatcheslav Kileev (1):
symbols/ru: remove non-Mari letters from Mari layout and add the missing one
|
|
|
|
|
|
ignore the mac qt distfile, which only differs in documentation
|
|
|
|
|
|
|
|
|
|
always use it.
|
|
|
|
inline asm, clang 3.6+ explicitly checks and rejects this.
|
|
Adam Cheney (1):
Add new DRM_MODE_CONNECTOR and _ENCODER defines
Chris Wilson (1):
intel: Avoid overcounting fences when emitting self-referential relocs
Damien Lespiau (3):
intel/skl: Add SKL PCI ids
intel/skl: Add gen9 to the buffer manager init
intel/skl: add gen9 to the CS decoding init
Dave Airlie (1):
radeon: align r600/700 fmask to 128 X blocks.
Jasper St. Pierre (1):
modetest: Use threads for cursors instead of SIGALRM
Laurent Pinchart (1):
modetest: Allocate dumb buffers with the correct bpp
Maarten Lankhorst (2):
only enable support for freedreno on arm automatically
configure.ac: bump version to 2.4.59 for release
Michel Dänzer (1):
radeon: Always multiply pitch_bytes by nsamples, not by slice_pt
Paulo Zanoni (1):
tests: add proptest
Rob Clark (6):
freedreno: do handle lookup on handle and dmabuf import
modetest: universal plane support
modetest: alpha buffers
update signed/object prop types
configure/freedreno: make KGSL support optional
configure/freedreno: enable freedreno by default
Thierry Reding (6):
libdrm: Add NVIDIA Tegra support
tegra: Add simple test for drm_tegra_open()
tegra: Add GET/SET_TILING IOCTLs
tegra: Add SET/GET_FLAGS IOCTLs
tegra: Implement drm_tegra_bo_{get,set}_flags()
tegra: Implement drm_tegra_bo_{get,set}_tiling()
Thomas Meyer (1):
intel: Fix SIGSEGV in libdrm for heigth = 0 and width = 0
Ville Syrjälä (1):
modetest: Print newline for empty blobs
Zhenyu Wang (1):
intel: Fix GTT entry setup for aub dump
|
|
|
|
xcalc is a scientific calculator X11 client that can emulate a TI-30
or an HP-10C.
This minor maintenance release includes a couple years worth of build
improvements, code cleanups, and bug fixes.
Alan Coopersmith (9):
Remove unused min & max macros from math.c
Replace sprintf & strcpy calls with snprintf & strlcpy
Remove redundant redeclaration of ‘factorial’
Rename "e" arguments to "ev" to avoid shadowing e() function
Mark functions noreturn as suggested by gcc -Wmissing-noreturn
configure: Drop AM_MAINTAINER_MODE
autogen.sh: Honor NOCONFIGURE=1
Replace index() call with strchr()
xcalc 1.0.6
Gaetan Nadon (2):
Assume signal handlers return void, as C89 requires
Replace signal_t with void
Stéphane Aulery (3):
Drop CRAY support
Use the new M_PI symbol from math.h
Use the new M_E symbol from math.h
|
|
sessreg is used by display managers such as xdm and gdm to record X sessions
in utmp, wtmp, and lastlog files.
This release attempts to clean up some inconsistencies around the handling
of the various files.
Long long ago, Unix systems had a utmp file to record who was currently
logged in, and a wtmp file to record login history.
Long ago, extended versions of the files & APIs for them were standardized
as utmpx and wtmpx.
sessreg attempted to deal with all of the variants, including several other
BSD vs. SysV differences beyond those listed above.
Previously, sessreg 1.0.x would check for both the original and extended
API's. If the extended API's were available, sessreg would compile in
support for utmp, utmpx, & wtmpx, but not wtmp. Now it compiles in only
utmpx & wtmpx support -- or, on ancient systems, only utmp & wtmp support.
Previously, sessreg 1.0.x would allow callers to specify the paths to the
utmp & wtmp files via -u & -w flags, and xdm defaulted to passing them
until very recently. If these flags were passed, sessreg would use them
as paths to the original API's and disable the extended API's. Due to the
above, this would completely disable wtmp entries, since that code was not
compiled in if wtmpx support was available. If a utmpx file path was
passed to -u, sessreg would write to it with utmp API's, which could
corrupt it. This especially screwed up Solaris, which has dropped the old
files, but maps the old API's to write the new format to the new files.
Now if -u & -w are passed to sessreg build with extended file support,
they are used with the extended file API's.
Alan Coopersmith (9):
configure: Drop AM_MAINTAINER_MODE
autogen.sh: Honor NOCONFIGURE=1
Print which option was in error along with usage message
Zero initialize struct utmpx, as we already do for struct utmp
If both utmp & utmpx interfaces are available, just use utmpx
Stop disabling utmpx & wtmpx calls when -u & -w arguments are passed
Attempt to modernize and better disentangle utmp vs. utmpx in the man page
Include utmp.h if present, even if we're using utmpx interfaces
sessreg 1.1.0
|
|
This release provides a number of important bug fixes as well as support
for recent releases of Xserver. Distro maintainers are encouraged to upgrade.
The driver is intended to be backwards compatible with and used also with
older X servers.
Adam Jackson (1):
saa: Adapt to GC client clip changes in xserver 1.17
Hans de Goede (2):
Add support for XSERVER_PLATFORM_BUS
Add support for server managed fds
Jakob Bornecrantz (7):
vmware/vmwgfx: Don't move cursors without images
vmware/vmwgfx: A bit more error logging when handling cursors
vmware/vmwgfx: Fix auto colorkey fill usage
vmware/legacy: Apply same fix to auto colorkey fill
vmware/legacy: Fix uninitialized values in video commands
vmware/vmwgfx: Fix compilation issue on older X servers
vmware/legacy: Fix out of bound array indexing
Julien Cristau (1):
configure: fix build without xatracker
Stefan Dirsch (1):
xf86xv.h cannot be included without first including xorg-server.h.
Thomas Hellstrom (16):
vmware/vmwgfx: Don't change backing-store of active scanout surfaces
vmware/vmwgfx: Don't tell XA that we have a mask when we haven't
vmware/vmwgfx: Set desired modes after xMir screen init
vmware/vmwgfx: Fix initial dirty region for pixmaps
vmware/saa: Disable the noreadback polyfillrect optimization
vmware/vmwgfx: Fix xwayland build on newer XA versions
vmware/vmwgfx: Fix an error path segfault
vmware: Clear the PITCHLOCK register if available before modeset
vmware: Fix bootstrap related compile errors on earlier X servers
vmware/legacy: Fix overlay related compile breakage on earlier X servers
vmware/vmwgfx: Don't add pixmaps to the pixmap list if they're already on it
vmware/vmwgfx: Fix cursor problem with multimon
Revert "vmware/saa: Disable the noreadback polyfillrect optimization"
vmware/saa: Fix saa_check_copy_window dirty region v3
vmware/saa: Fix saa_check_poly_fill_rect_noreadback v2
vmware: Bump version number for release
|
|
xlocale detection on SunOS for now, as there is enough support to fool detection
on illumos but not enough to finish the build yet.
|
|
This minor maintenance release provides the usual set of accumulated
build configuration improvements, compiler warning fixes, and other
janitorial cleanups.
Alan Coopersmith (10):
Actually print command list in usage message
Fix "noexistent" typo in error message
Add -V flag to print version
Print which option was in error along with usage message
Free old argv array if realloc fails to enlarge it
More constification cleanup
config: Add missing AC_CONFIG_SRCDIR
configure: Drop AM_MAINTAINER_MODE
autogen.sh: Honor NOCONFIGURE=1
iceauth 1.0.7
|
|
This minor maintenance release provides the usual set of accumulated
build configuration improvements, compiler & static analyzer warning
fixes, and other janitorial cleanups.
Alan Coopersmith (6):
Print which option was in error along with usage message
configure: Drop AM_MAINTAINER_MODE
autogen.sh: Honor NOCONFIGURE=1
Stop memory leaks from XtNewString(StripFilename(filename))
Stop memory leak in XmuWriteBitmapDataToFile()
bitmap 1.0.8
Eric S. Raymond (1):
Use table markup in preference to various low-level constructions.
Gaetan Nadon (1):
config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
Jeremy Huddleston Sequoia (5):
assert to avoid a NULL dereference
Avoid shadow declarations
Silence -Wbad-function-cast
Demacro modernization of NewSList to plug a memory leak during error handling
Use '& 7' instead '% 8' to silence clang analyzer warning
|
|
* genkdmconf: FreeBSD 10+ does not have utmp, only utmpx. Use utmpx
when available.
* not only Linux, but also FreeBSD can have libutempter present. Make
sure PLIST is correct in both cases.
Ok@ markd
|
|
settings from mk.conf. Depend on ICU as requested by the build.
|
|
|
|
|
|
|
|
|
|
Changes noted in doc/en/ReleaseNote:
ver 3.4.2
* Support colorful emoji with the use of http://github.com/github/gemoji.
(Copy images/emoji/unicode/*.png in https://github.com/github/gemoji/archive/master.zip
to ~/.mlterm/emoji/ in advance.)
* Support DCS + q Pt ST which requests termcap/terminfo string.
* Support CSI?8452h and CSI?8452l.
* Support CSI?117h and CSI?117l.
* Add "Bidi Separators" entry to "Encoding" tab of mlconfig.
* Add "Unicode areas you won't convert to other charsets" entry to "Font" tab of mlconfig.
* Add "Word separators", "Don't scroll automatically in scrolling back" and
"Set full width areas manually" entries to "Others" tab of mlconfig.
* Add "word_separators", "unicode_noconv_areas" and "unicode_full_width_areas"
to OSC 5380/5381.
* Improve performance of drawing text with cairo.
* Bug fixes:
Fix incorrect result of searching bold or italic fonts when type_engine == xcore.
(enbugged at 3.3.0)
Fix segfault in opening a new channel over an opened session on win32.
|
|
Bump PKGREVISION.
|
|
|
|
|
|
PR pkg/49494.
|
|
Overview of Changes in 0.98.2 (since 0.98.1)
============================================
Changes in this release:
- Changed option: reliefstyle = 5 for a more controllable inset.
Bugfixes in this release:
- Glib 2.31 compatibility: https://bugzilla.gnome.org/show_bug.cgi?id=665022
- Compiles using pixman: https://bugzilla.gnome.org/show_bug.cgi?id=630869
Overview of Changes in 0.98.1 (since 0.98.0)
============================================
Changes in this release:
- Murrine is now dual-licensed LGPLv2.1 and LGPLv3.
Bugfixes in this release:
- Now checks for pixman: https://bugzilla.gnome.org/show_bug.cgi?id=630869
Overview of Changes in 0.98.0 (since 0.90.3)
============================================
Changes in this release:
- New supported widget: GtkExpander is now themed by the engine.
- New supported widget: GtkIconView is now themed by the engine.
- New supported widget: GtkInfoBar is now themed by the engine.
- New option: arrowstyle = 1 to draw filled arrows.
arrowstyle = 2 to draw fat filled arrows.
- New option: border_shades = { 1.0, 1.0 } to draw a gradient on the border.
- New option: border_colors = { "#ffffff", "#ffffff" }
to set the colors used on the border of many widgets.
border_colors = FALSE to disable.
- New option: cellstyle = 0 to remove the border around the selected cell.
cellstyle = 1 for the border around the selected cell (as before).
- New option: comboboxstyle = 1 to colorize the GtkComboBox below the arrow.
- New option: default_button_color = "#ffffff" to specify a 2px border for the
default button.
- New option: disable_focus = TRUE
- New option: expanderstyle = 0 to draw arrows.
expanderstyle = 1 to draw circles with plus and minus.
expanderstyle = 2 to draw buttons with plus and minus.
- New option: focusstyle = 0 to disable focus drawing.
focusstyle = 1 to use dots.
focusstyle = 2 to use a small colored rectangle.
focusstyle = 3 to use a colored rectangle that touches the borders.
- New option: gradient_colors = { "#ffffff", "#ffffff", "#ffffff", "#ffffff" }
to set the colors used on the gradient of many widgets.
gradient_colors = FALSE to disable.
- New option: handlestyle = 0 for three simple lines.
handlestyle = 1 for three simple lines with inset.
handlestyle = 2 for three near simple lines with inset.
- New option: prelight_shade = 1.0 to select the shade level used in the
scrollbar's slider, GtkComboBox with comboboxstyle = 1 and
in the prelight state with gradient_colors.
- New option: separatorstyle = 1 to draw smooth separators.
- New option: shadow_shades = { 1.0, 1.0 } to draw a gradient on
the shadow of some widgets.
- New option: spinbuttonstyle = 1 to add a separator on the GtkSpinButton.
- New option: textstyle = 1 for a shadow at the bottom of the text.
textstyle = 2 for a shadow at the top of the text.
textstyle = 3 for a shadow at the bottom right of the text.
textstyle = 4 for a shadow at the top left of the text.
- New option: text_shade = 1.0 to specify the shade effect of the text's shadow.
- New option: trough_border_shades = { 1.0, 1.0 } to draw a gradient on
the border of the trough of GtkScrollbar and GtkProgressBar.
- New option: trough_shades = { 1.0, 1.0 } to draw a gradient on
the trough of GtkScrollbar and GtkProgressBar.
- Changed option: glowstyle = 5 for a glow around the edges.
- Changed option: listviewstyle = 2 for a solid line.
- Changed option: menustyle = 2 for a bright glow inside the menu.
menustyle = 3 for a dark glow inside the menu.
- Changed option: reliefstyle = 3 for a gradient on shadow.
reliefstyle = 4 for a stronger shadow.
- Changed option: stepperstyle = 2 for squared steppers with a rounded slider.
- Deprecated option: gradients, please unset the other options instead.
- Deprecated option: profile, please manually adjust the other options.
- Deprecated option: scrollbar_color, please use a custom bg[SELECTED].
- Improved rendering: rounded GtkScale trough.
- Improved rendering: disabled GtkScale trough.
- Improved rendering: contrast function in GtkButton.
- Improved rendering: draw lightborder with on menubar (with menubarstyle = 1).
- Improved rendering: draw lightborder with on toolbar (with toolbarstyle = 1).
- Improved rendering: better GtkTooltip theming.
- Improved rendering: use bg[GTK_STATE_PRELIGHT] on the scrollbar's slider
with colorize_scrollbar = FALSE.
Bugfixes in this release:
- Fix a potential endless loop in draw_progressbar_fill and draw_menuitem.
- Support for automake-1.11.
- Some minor fixes on big-endian systems.
- Fixes transparent WebKitGtk window with RGBA colormaps.
- https://bugzilla.gnome.org/show_bug.cgi?id=554871
- https://bugs.launchpad.net/ubuntu/+source/gtk2-engines-murrine/+bug/624901
- Minor fixes and maybe more bugs I forgot to link. :)
|
|
* Enable wxscintilla.
Changelog:
3.0.2: (released 2014-10-06)
----------------------------
All:
- Fix silent data loss in wx[F]File::Write(wxString) if conversion fails.
- Make wxString::FromCDouble() work when the global C++ locale is not the C one.
- Add support for "%V", "%G" and "%g" to wxDateTime::Format().
All (GUI):
- Add wxGenericListCtrl::EndEditLabel() (Tim Kosse).
- Implement bounding box computation in wxGCDC (Toni Ruža).
- Fix saving GIF animations with 2.5s+ delays between frames (elvissteinjr).
- Add "variant" property to windows in XRC.
- Add XRC handler for wxSimplebook.
- Return correct value from wxCommandEvent::GetString() for programmatically
generated wxEVT_TEXT events from wxComboBox.
- Accept "default" as font family value in XRC (pieleric).
- Send events when toggling wxPropertyGrid nodes from keyboard (Armel Asselin).
wxGTK:
- Fix mouse handling in wxNotebook containing wxListCtrl (Charlie Fenton).
- Fix layout of wxSearchCtrl to not truncate text in it.
wxMSW:
- Fix Cygwin 1.7 build.
- Work around a bug in MinGW 4.8 headers and fix build with it too.
- Include x64 configurations in MSVC 8/9 project files too.
- Fix parallel build of MSVC 11/12 solutions (Artur Wieczorek).
- Fix background of wxRadioBox buttons and wxSlider (Artur Wieczorek).
- Fix appearance of wxToggleButtons with non default colours (Artur Wieczorek).
- Fix drawing on wxDC when using right-to-left layout (Artur Wieczorek).
- Fix wxGrid appearance and behaviour in RTL (Artur Wieczorek).
- Fix creating wxBitmap from monochrome wxIcon or wxCursor (Artur Wieczorek).
- Fix handling of bitmaps with alpha in wxImageList (Artur Wieczorek).
- Add paragraph spacing attributes support to wxTextCtrl (dannchr).
- Show new style directory selector even for non existent paths (raychow).
- Fix order of radial gradient stops (Alexandru Pana).
- Fix font created using wxFont(wxFontInfo()) ctor.
- Fix wxFileName::GetShortcutTarget() in console applications.
- Fix wxFileName::MakeRelativeTo() for shortcut files (gafatoa).
- Fix height of initially empty wxBitmapComboBox (Artur Wieczorek).
- Fix setting label of submenu items (Artur Wieczorek).
- Fix using Esc as accelerator in the menus.
- Fix wrong initial status bar height in some cases (Artur Wieczorek).
|
|
|
|
comma and the space would result in a compiler argument.
|
|
|
|
(pkgsrc)
- Instead of using do-* in Makefile adjust config.mk and use the
official Makefile like other suckless.org packages (e.g. x11/dmenu).
- Do not install README: the only useful information for the user was:
Simply invoke the 'slock' command. To get out of it, enter your
password. The user can read that in x11/slock/DESCR by
pkg_info slock.
(upstream)
* slock-1.2:
- Colors are now specified via config.h
- Minor bug fixes
* slock-1.1:
- Eckhards dualcolor patch
- Minor bug fixes
|
|
Changes:
- the "moa redraw 8-bit british vintage colour management" release.
- NOTICE: this release updates terminfo.
- fix pixel droppings on overdraw when a secondary core font has the
same height but different ascent.
- implement cvvis in terminfo as blinking cursor, to distinguish it
from cnorm (emacs uses cvvis which is commonly a blinking cursor).
- when xft support was compiled in, colour queries erroneously returned
premultiplied values, this also affected internal queries, for example
when calculating faded colour. alpha is now divided out when possible,
which is more correct but loses colour resolution.
- add DECSCUSR xterm extension to set the cursor to a vertical bar.
- add 'extension:string' action, and associated on_action perl
hook, for keysym resources that invokes actions provided by
perl extensions. The 'perl:string' action and
on_user_command hook are deprecated but still supported.
- add 'builtin-string' action for keysym resources that restores string
mappings for keys that have predefined actions in urxvt.
- add -k option to urxvtc for killing the daemon process.
- document urxvtd's -e/--eval option that was implemented in 9.16,
but not documented.
- add -dockapp option to make the wm treat urxvt as a dockapp.
- add -mc option and multiClickTime resource to set the maximum time
between multi-click select events (patch by Joe Peterson).
- new 'eval' extension to evaluate arbitrary perl code with keysym
bindings. The extension also provides methods that implement basic
actions, such as pasting selections and scrolling.
- the macosx-clipboard and macosx-clipboard-native extensions have been removed.
- kuake extension now uses the kuake.hotkey resource to specify the hotkey.
- new 'matcher:select' mode of matcher to iterate over the matches with the keyboard.
- the 'matcher:list' feature of matcher now honours the launcher
associated to a matched pattern.
- speed-up matcher underlining on very long lines (reported by Edward Z. Yang).
- fix up/down commands of searchable-scrollback so that they always move
to the previous/next logical line with a match, if any.
- searchable-scrollback resource has been deprecated (use keysym instead).
- extension parameter passing is deprecated (use resource mechanism instead).
- upgrade to GPLv3 (see COPYING).
- compile out of the box on Solaris 10, again.
- fix height and position of the stippled area in next scrollbar (patch
by Thomas Otto).
- fix off-by-one bug causing the iso14755 window not to jump out of the
way properly.
- fix crash that may happen if a lib to which urxvt is linked to calls setenv.
- fix memory leak in special_{encode,decode} perl methods.
- fix refresh bug that occurs when reverse video is set on a cell
containing a space and with the same bg and fg colour, red hat bug
#830236.
- fix crash that may happen if an x error is received after a terminal
window/popup has been destroyed already.
- removed superfluous 0 digit from sgr terminfo sequence.
- greatly improve colour allocation on colour-starved pseudocolour
displays to avoid read-write cells instead of simply failing
(this is only relevant for antique 8bpp frame buffers).
- do not free fade colours when not doing fading (this is likely
only relevant for antique 8bpp frame buffers).
- do not specialcase 2 or 4 colour visuals, leading to
simpler and actually more correct code.
- hopefully no longer leak colours on !truecolour visuals.
- use consistent method names (scr_recolour => scr_recolor).
- use simpler (but slightly less bogus) formula for nearest
colour choice (this is likely only relevant for antique 8bpp
frame buffers).
- remove fallback behaviour when initialising colours - the
behaviour was inconsistent between startup vs. later and
was only effective when valid colours couldn't be allocated.
|
|
|
|
Never needed on NetBSD-5 and -6; and chuq improved mmap in NetBSD-7
and -current, so it's not needed there any longer either.
Confirmed by mrg.
Bump PKGREVISION.
|
|
Patch #314 - 2014/12/28
fix a minor bug in the termcap-specific version of resize when
the lines or columns values are at the very end of an incomplete
termcap string (prompted by coverity report).
improve paste64 feature (report by Olaf Rogalsky)
add configure option --with-man2html to allow an alternative
to groff's man/html conversion.
review and modify resource-settings which can be set via control
sequences, etc.
change passedPty from fixed-length to allocated to ensure that
it is long enough to hold the -S option value (report by Ben
Longbons).
improve ReGIS graphics initialization (Ross Combs):
|
|
libtool usage.
Remove unnecessary install rule.
From Niclas Rosenvik.
|