Vim 8.2.5083 💾

Vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. Vim is often called a "programmer's editor," and so useful for programming that many consider it an entire IDE. It's not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files.

minor feature: patch 8.2.5083: autocmd test still fails on MS-Windows Problem: Autocmd test still fails on MS-Windows. Solution: Change backward to forward slashes.

Other text-editor ide vi vim

LimeSurvey 5.3.19 (build 220607) 💾

LimeSurvey is a web application that interacts with MySQL, MSSQL, or Postgres to develop surveys, publish surveys, and collect responses to surveys. Once a survey has been created, data can be inserted into the survey either by a "pretty" public screen which presents each question one at a time, or by a quick and nasty data entry screen. It includes the capacity to generate individualized "tokens", so that invitations can be issued to participants. It also has the capacity to set conditions on whether questions will display (branching), numerous question types, and a basic statistics function.

minor feature: Question organizer not working (Carsten Schmitz). Removed html tags in emails for v5 (François Charles Hébert). Property "CDbCriteria.qid" is not defined status returned by delete_question (Edgar R. M). Check of json data for upload question (Denis Chenu). Permission will now be checked for user when opening list questions by link/url (Patricia Stell). Unable to get empty help in question attributes (Denis Chenu). Session expire message when submit button is clicked twice (Gabriel Jenik). Directly show edit mode: some quirks (Gabriel Jenik). Improve language consistency (Carsten Schmitz). Updated translation: Valencian by joamuran, vbraque. Updated translation: Turkish by kayazeren. Updated translation: Thai by tomzt. Updated translation: Slovak by c_schmitz, dusanm, jelen1, sweetakasha. Updated translation: Polish by elissa. Updated translation: Polish (Informal) by elissa. Updated translation: Japanese by d_inoue, nomoto. Updated translation: French (France) by arnaud21, b00z00, BenoitBouvarel, c_schmitz, DenisChenu, janolap1, Qat, ulysse68, Xave. Updated translation: Dutch by Han. Updated translation: Dutch (Informal) by Han. Updated translation: Chinese (Simplified) by duestin, FangZhijian, zengqing, zhanginshanghai.

GNU GPL survey php mysql mssql postgres

Messenger GTK 0.7.0 💾

Messenger GTK is a convergent GTK messaging application using the GNUnet Messenger service. The goal is to provide private and secure communication between any group of devices.

minor feature: We are pleased to announce the release of the Messenger-GTK application. The application is a convergent GTK messaging application using the GNUnet Messenger service. The goal is to provide private and secure communication between any group of devices. The interface is also designed in a way to scale down to mobile and small screen devices like phones or tablets. The application provides the following features: Creating direct chats and group chats Managing your contacts and groups Invite contacts to a group Sending text messages Sending voice recordings Sharing files privately Deleting messages with any custom delay Renaming contacts Exchanging contact details physically Verifying contact identities Switching between different accounts The application utilizes the previously released library "libgnunetchat" in a convergent graphical user interface. More information about that can be found here. It is also possible to install and try the application as flatpak. The application is already available on flathub.org. Otherwise you will find the source code ready to compile below as well.

Affero GPLv3 messaging internet p2p anonymity f2f gnunet gns networking chat conferencing

GNUnet 0.17.0 💾

GNUnet is a framework for secure and anonymous peer-to-peer networking that does not use any centralized or otherwise trusted services. Currently, the framework offers censorship-resistant file-sharing, messaging, VPN, GNS (a decentralized version of DNS), and much more. GNUnet is currently developed by a worldwide group of independent free software developers. GNUnet is a GNU package (http://www.gnu.org/).

major feature: Noteworthy changes in 0.17.0 (since 0.16.3) GNS: FCFSD: Allow configuration of relative expiration time of added records. Aligned with breaking changes in specification. LSD0001 DHT: Aligned and reordered message formats. LSD0004 Moved block type definitions to GANA The specification has been updated to reflect the changes. LSD0004 UTIL: Fix scheduler bug with same-priority immediately-ready tasks possibly hogging the scheduler. Fix mysql/mariadb detection. A detailed list of changes can be found in the ChangeLog and the bug tracker.

Affero GPLv3 anonymity f2f file-sharing gns gnunet internet networking p2p vpn

ELM ME+ 2.5 PLalpha58 💾

Elm Millennium Edition 2.5 (or Elm ME+ 2.5) is based on Elm 2.4 and incorporates some code from Elm 2.5. It contains enhanced MIME and character set support. A subset of UTF-8 (Unicode) is handled. It can read mail from a local mbox and POP or IMAP folders and can pass mail to the PGP or GPG programs. It can also view digests as a mailbox and reassemble fragmented (message/partial) messages. It includes modules for TLS/SSL, iconv, resolv, and SMTP.

minor feature: This release adds "Implicit TLS" (RFC 8314) for imap, pop and submission protocols. This is controlled with new elmrc option "use-tls". This release uses openssl's X509_check_host(). This release changes address prompts and fixes crash when folder browser login prompt from #hashmark is interrupted with Ctrl-C. Also some other changes are included and bugs fixed.

Elm GPL email-client imap pop3 shell c curses posix linux unix end-users e-mail

Tornado 6.2.0b1 💾

Tornado is a Python web framework and asynchronous networking library. By using non-blocking network I/O, Tornado can scale to tens of thousands of open connections, making it ideal for long polling, WebSockets, and other applications that require a long-lived connection to each user. It's comprised of a web framework, a HTTP client and server implementation based on an asynchronous networking core, and it coroutine library. As whole it can supplant WSGI setups, but the web framework itself may be run with traditional servers.

minor feature: What's new in Tornado 6.2.0 Jun XX, 2022. Deprecation notice. Python 3.10 has begun the process of significant changes to the APIs for. Managing the event loop. Calls to methods such as `asyncio.get_event_loop` may. Now raise `DeprecationWarning` if no event loop is running. This has. Significant impact on the patterns for initializing applications, and in. Particular invalidates patterns that have long been the norm in Tornado's. Documentation and actual usage. In the future (with some as-yet-unspecified. Future version of Python), the old APIs will be removed. The new recommended. Pattern is to start the event loop with `asyncio.run`. More detailed migration. Guides will be coming in the future. - The `.IOLoop` constructor is deprecated. Use `.IOLoop.current` when the loop. is already running instead. - `.AsyncTestCase` (and `.AsyncHTTPTestCase`) are deprecated. Use. `unittest.IsolatedAsyncioTestCase` instead. - Multi-process `.TCPServer.bind`/`.TCPServer.start` is deprecated. See. `.TCPServer` docs for supported alternatives. - `.AnyThreadEventLoopPolicy` is deprecated. This class controls the creation of. The "current" event loop so it will be removed when that concept is no longer. Supported. - `.IOLoop.make_current` and `.IOLoop.clear_current` are deprecated. In the. Future the concept of a "current" event loop as distinct from one that is. Currently running will be removed. `TwistedResolver` and `CaresResolver` are deprecated and will be. Removed in Tornado 7.0. General changes. The minimum supported Python version is now 3.7. SSL certificate verfication and hostname checks are now enabled by default in. More places (primarily in client-side usage of `.SSLIOStream`). Various improvements to type hints throughout the package. CI has moved from Travis and Appveyor to Github Actions. `tornado.gen`. a in which `WaitIterator.current_index` could be incorrect. `tornado.gen.TimeoutError`` is now an a

Apache python web-framework http-server

QMMP 2.1.1 💾

QMMP is an Qt-based audio-player. The user interface is similar to Winamp or XMMS, which compatible skins can be used of. It supports a plethora of audio formats, like MP3, Ogg Vorbis/Opus, FLAC, Musepack, WavePack, MOD files, AAC, Audio CDs, WMA and other ffmpeg-supported encodings, PCM, MIDI, SID, and Chiptune files. It provides DSP plugins, lyrics downloading, equalizers and visualizers, supports common audio APIs and sinks, and is cross-platform.

minor bugfix: fixed some bugs; fixed Windows 10 support; fixed portable mode under Windows; fixed build with Qt 6.4; updated translations.

GNU GPL audio player qt6 mp3

firejail 0.9.70 💾

Firejail is a security sandbox tool, which utilizes Linux 3.x namespaces to setup restricted environments for untrusted applications. It works for console and graphical applications, servers, or even login sessions; by assigning them and their subprocesses a private view of globally shared kernel resources. Firejail isolates mount points, adds chrooting, filesystem writability or overlays, sandbox filesystem sharing, networking stack and firewall isolation, constrains interprocess communication, and separates processes. It comes with default profiles for Firefox or Evince, includes Seccomp and Linux caps support.

minor bugfix: Security: CVE-2022-31214 - root escalation in --join logic Reported by Matthias Gerstner, working exploit code was provided to our. Development team. In the same time frame, the problem was independently Reported by Birk Blechschmidt. Full working exploit code was also provided. Feature: enable shell tab completion with --tab. Feature: disable user profiles at compile time. Feature: Allow resolution of.local names with avahi-daemon in the apparmor. Profile Feature: always log seccomp errors. Feature: firecfg --guide, guided user configuration. Feature: --oom, kernel OutOfMemory-killer. Modif: --ids feature needs to be enabled at compile time. Modif: --nettrace only available to root user. Rework: whitelist restructuring. Rework: firemon, speed up and lots of : --private-cwd not expanding macros, broken hyperrogue. : nogroups + wrc prints confusing messages. : openSUSE Leap - whitelist-run-common.inc. : printing in evince. : gcov: gcov functions always declared as dummy. : Stop warning on safe supplementary group clean. Build: remove ultimately unused INSTALL and RANLIB check macros. Build: mkdeb.sh.in: pass remaining arguments to./configure. ci: replace centos (EOL) with almalinux. ci: --version not printing compile-time features. ci: print version after install apparmor support on build_apparmor. Docs: Refer to firejail.config in configuration files. Docs: firejail.config: add warning about allow-tray. Docs: mention that the protocol command accumulates. Docs: mention inconsistent homedir involving --private=dir. Docs: mention capabilities(7) on --caps. New profiles: onionshare, onionshare-cli, opera-developer, songrec. New profiles: node-gyp, npx, semver, ping-hardened. Removed profiles: nvm.

GNU GPL c linux security process-isolation namespaces sandbox

Mozilla Firefox 101.0.1 💾

Firefox is a widely used web browser. It's based on Mozillas Gecko HTML rendering and IonMonkey JavaScript engine. It supports HTML5, XML, XHTML, SVG 1.1, MathML, XSLT, CSS3, Web fonts, APNG, SSL/TLS, sandboxed JavaScript 1.8.5 with many newer DOM and WHATWG extensions. It's highly extensible and themeable, provides tabbed browsing, security and privacy features, traditional and live/smart bookmarks.

minor feature: Firefox clearing the clipboard when closing on macOS ( ), a compatibility causing severely impaired functionality with win32k lockdown enabled on some Windows systems ( ), context menus not appearing when right-clicking Picture-in-Picture windows on some Linux systems ( ), Various stability, Reference link to 101.0 release notes

MPL c++ web-browser html5 javascript mozilla

Vim 8.2.5069 💾

Vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. Vim is often called a "programmer's editor," and so useful for programming that many consider it an entire IDE. It's not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files.

minor feature: patch 8.2.5069: various warnings from clang on MS-Windows Problem: Various warnings from clang on MS-Windows. Solution: the code to avoid the warnings.

Other text-editor ide vi vim

SURF CFEngine Library (SCL) 1.4.0 💾

The SCL distribution consists of a library and services part. The services are build with the SCL building blocks. The goal is to setup a library were we can easily install/configure/maintain services. There are many services included and these are used at SURF for our HPC clusters and Office Automation. We hope that this is also useful for others and that will grow as the standard repo for CFengine services. In Ansible they call it playbooks and in Salt terms formula

minor feature: * ported to cfengine = 3.20, rxdirs default option changed to false for those release (scl_service_copy_dirs will fail)

GNU GPLv3 cfengine shell mustache json

abcMIDI 2022.06.07 💾

The abcMIDI suite consists of programs for turning ABC music files into MIDI and vice versa, typesetting them as PostScript files, and manipulate them in several ways.

minor feature: Improved umlaut characters support in the T: Q: commands and guitar chords.

GNU GPL abc music conversion midi cross-platform

Courier Mail Server 1.1.10 💾

Courier is a mail transfer agent (MTA) and groupware server. It implements IMAP, ESMTP, POP3, LDAP, SSL, HTTP, iCal. It also provides mailing list management, filtering, maildirs storage, and a webmail interface with calendaring and scheduling.

minor feature: Courier/submit2.C (SubmitFile::trapsignals): Remove signal-unsafe, signal handling code. Update deliverquota man page.

GNU GPL c e-mail smtp imap mail-server groupware calendaring

GitLab 15.0.2 💾

GitLab is a development collaboration tool and git DVCS frontend. It includes repository management features, code reviews, an issue tracker, activity feeds and wikis. GitLab provides fine-grained access control, user management, 5 permission levels and branch constraints, and can utilize LDAP/AD intranet authorization. Powered by Ruby on Rails it comes as open source package, and as commercial supported enterprise version.

minor bugfix: (2022-06-06). ### Added (1 change). Add event type in audit event streaming (gitlab-org/gitlab@55ba03fc8342a608e774db01ecadfa0441ea7f76) ( merge request (gitlab-org/gitlab!89266)) GitLab Enterprise Edition. ### (10 changes). Advanced Search Opensearch detection (gitlab-org/gitlab@38b58801fed210cef048daf30b4d52542fefb1cf) ( merge request (gitlab-org/gitlab!89266)) GitLab Enterprise Edition. on list page (gitlab-org/gitlab@d02cc074f6c3aa0da972d6a368aca423fe50f437) ( merge request (gitlab-org/gitlab!89266)). Include inherited owners when calculating User#solo_owned_groups (gitlab-org/gitlab@d38405007bb4b36441bdb4f15acc5d0093c63115) ( merge request (gitlab-org/gitlab!89266)). description list item styling (gitlab-org/gitlab@e1077027f1a2616026e7297ae5742a8ddc09d794) ( merge request (gitlab-org/gitlab!89266)). focus for linked input field IDE cursor (gitlab-org/gitlab@3249749eec2dddde761532d2d899e45c39db815c) ( merge request (gitlab-org/gitlab!89266)). docs: DS_DEFAULT_ANALYZERS variable docs (gitlab-org/gitlab@b5aad346a987a6135e05a0fb6b21b5928101fd7f) ( merge request (gitlab-org/gitlab!89266)). Remove existing repository backups when creating a full backup (gitlab-org/gitlab@d12ab4c65b7a99b94220716e9a0f60fe74296010) ( merge request (gitlab-org/gitlab!89266)). Move LFK scheduling out from EE check (gitlab-org/gitlab@43f352382e3dbeb445732e4d8752c161e3e26088) ( merge request (gitlab-org/gitlab!89266)). drag and drop list item (gitlab-org/gitlab@75957edfd741f0e96645871d73e09a87938b0012) ( merge request (gitlab-org/gitlab!89266)). Hide internal note checkbox on unsupported issuable types (gitlab-org/gitlab@4eaed3e11797c8f1e0c6a710b3a411fe9c38090d) ( merge request (gitlab-org/gitlab!89266)) GitLab Enterprise Edition. ### Changed (1 change). Update auto-deploy-image to v2.28.2 (gitlab-org/gitlab@881ef5713a6a16f6ed5e77cf91f9a82dff788b02) ( merge request (gitlab-org/gitlab!89266)).

MITL ruby ruby-on-rails git dvcs wiki bugtracker version-control

LimeSurvey 5.3.18 (build 220530) 💾

LimeSurvey is a web application that interacts with MySQL, MSSQL, or Postgres to develop surveys, publish surveys, and collect responses to surveys. Once a survey has been created, data can be inserted into the survey either by a "pretty" public screen which presents each question one at a time, or by a quick and nasty data entry screen. It includes the capacity to generate individualized "tokens", so that invitations can be issued to participants. It also has the capacity to set conditions on whether questions will display (branching), numerous question types, and a basic statistics function.

minor feature: security Update jquery-ui to 1.13.1 (Carsten Schmitz). Survey not properly resuming and showing blank page (Gabriel Jenik). Custom 'other' label text not applied to Bootstrap button layout (Gabriel Jenik). Save as default values' question setting not working properly (Gabriel Jenik). Updated translation: Spanish (Spain) by ireneoh. Updated translation: Slovak by jelen1. Updated translation: Portuguese (Portugal) by c_schmitz, marcelovincenzi, samarta. Updated translation: Italian by lfanfoni. Updated translation: Italian (Informal) by lfanfoni. Updated translation: Finnish by jeskiv, Jmantysalo. Updated translation: Croatian by rovinj.

GNU GPL survey php mysql mssql postgres

dos2unix 7.4.3 💾

dos2unix is a classic command line tool to convert between the different linebreak types of CRLF on DOS/Windows, plain LF on Unix systems, and CR on Mac systems.

documentation: New Serbian translation of the manual. Updated Esperanto translation.

BSDL c text text-conversion system compatibility

Qt5Gtk2 0.8 💾

This package provides GTK+2.0 style and platform plugins for Qt 5.7 or higher.

minor feature: Added preview support to the file dialog

GNU GPL qt gtk

Wine 7.10 💾

Wine is an implementation of the Windows API on top of X and Unix. It does not require Microsoft Windows, but can use native Windows DLLs if they are available. It provides both a development toolkit for porting Windows source code to Unix as well as a program loader, allowing many unmodified Windows programs to run on x86-based Unixes.

minor feature: MacOS driver converted to PE. Mono engine updated to version 7.3.0. Windows-compatible Unicode collation. Wow64 support in SECUR32. Various.

GNU LGPL c x86 windows win32 emulator compatibility library desktop operating-system

Pidgin 2.14.10 💾

Pidgin is a widely-used and featureful instant messenger and chat client. It supports AIM, Bonjour, Gadu-Gadu, Google Talk, Groupwise, ICQ, IRC, MSN, MXit, GroupWise, SILC, SIMPLE, Sametime, XMPP (Jabber), Yahoo!, Zephy. It provides friend lists across chat networks, file transfers, avatars, custom smileys, typing status display, away messages, and many more features (encryption, audio alerts, LED notification, IRC scripting, SMS gateways, sessions, auto-replys) and IM services (Tor, Twitter, WhatsApp, Facebook, QQ) through plugins.

minor bugfix: : General: Audit and correct the COPYRIGHT file. (RR 1425) (Richard Laager). a spelling error in a demessage for proxies. (RR 1426) (Richard Laager). Install some emojis already in the theme but not being installed. (RR 1428) (Richard Laager). Drop the QQ smileys as we don't ship QQ anymore. (PIDGIN-14385) (RR 1429). (Richard Laager). Modernize the desktop file. (RR 1433) (Richard Laager). Modernize the appdata file. (RR 1431) (Richard Laager). Make privacy settings persist. (PIDGIN-17137) (RR 1463) (Belgin Știrbu). Pidgin: a use after free that was introduced in 2.14.9. (RR 1488) (ivanhoe). IRC: a crash if the server sends a short form JOIN message. (PIDGIN-17375). (RR 1484) (Belgin Știrbu). XMPP: a regression from 2.14.9 where XMPP accounts state would get lost after failing to connect. (PIDGIN-17621) (RR 1455) (Belgin Știrbu). a crash when requesting your own info in an XMPP conference. (RR 1465). (Belgin Știrbu). hang when completing a file transfer over XMPP. (RR 1466) (Belgin. Știrbu). updating custom smileys. (PIDGIN-17153) (RR 1477) (Belgin Știrbu). unblocking users. (PIDGIN-16414) (RR 1479) (Belgin Știrbu). a crash when cancelling a file transfer. (PIDGIN-17189) (RR 1485). (Belgin Știrbu).

GNU GPL c gtk chat instant-messenger xmpp cross-platform internet-relay-chat

Poppler 22.06.0 💾

Poppler is librarified PDF rendering toolkit derived from the Xpdf 3.0 code base. It can utilize X11-independent rendering backends like Cairo, Splash, or Qt4 Arthur. It's not designed for platform-agnosticy, but proper BSD/Linux integration; is used by various PDF applications (Evince, Okular, TeXStudio, pdftotext, Zathura, Xournal, Inkscape), and comes with a set of command-line tools of its own.

major bugfix: : core: Forms: crash in forms with their own DR. Refactor CairoFontEngine caching. CairoOutputDev: preserve text color when drawing type 3 glyphs. Windows: font code simplification. Minor code improvements. cpp: Add missing header. utils: pdfattach: Assume filename is utf8 encoded. pdftohtml: type 3 font size calculation.

GNU GPL c++ pdf rendering library developers

exiftool 12.42 💾

ExifTool is a Perl library and command-line tool for reading and updating common meta data information in various file formats. Foremost it works on image files, EXIF, PNG, GPS, IPTC, XMP, JFIF/JPEG, GeoTIFF, ICC Profile, Photoshop IRB, FlashPix, AFCP, AIFF, DJVU, Postscript, GZIP, OpenDocument, PDF, SVG, OGG and ID3. It can also edit maker notes of digital (RAW) camera files from Canon, Casio, FLIR, FujiFilm, GE, HP, JVC/Victor, Kodak, Leaf, Minolta/Konica-Minolta, Nikon, Nintendo, Olympus/Epson, Panasonic/Leica, Pentax/Asahi, Phase One, Reconyx, Ricoh, Samsung, Sanyo, Sigma/Foveon and Sony.

minor feature: (production release). - Added support for reading maker notes from Panasonic DC-GH6 videos. - Added conversion for Samsung MCCData. - Added a new Nikon LensID. - Added a few new Canon LensType values. - Added a couple of new Olympus StackedImage values. - Added a few new values for some Nikon Settings tags. - Added a "lang:" element to the -json output for alternate language tags when. -D, -H or -t is used. - Update DNG writer to not an error when writing DNG 1.6 files. - Decode information from DJI "ae_dbg_info" maker notes. - Decode Olympus AISubjectTrackingMode. - Changed ExifTool FileSize print conversion to use kB/MB/GB units instead of KiB/MiB/GiB. - Changed "is not shiftable" warning to appear in -v (instead of just -v3) output. - Patched to allow PDF Encrypt object to be "null". - reading ICC_Profile 'meta' tags.

Artistic perl exif meta-data

Vim 8.2.5052 💾

Vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. Vim is often called a "programmer's editor," and so useful for programming that many consider it an entire IDE. It's not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files.

minor feature: patch 8.2.5052: CI checkout step title is a bit cryptic Problem: CI checkout step title is a bit cryptic. Solution: Add a better title.

Other text-editor ide vi vim

GitLab 15.0.1 💾

GitLab is a development collaboration tool and git DVCS frontend. It includes repository management features, code reviews, an issue tracker, activity feeds and wikis. GitLab provides fine-grained access control, user management, 5 permission levels and branch constraints, and can utilize LDAP/AD intranet authorization. Powered by Ruby on Rails it comes as open source package, and as commercial supported enterprise version.

minor security: (2022-06-01). ### Security (8 changes). IP restrictions not applying to deploy tokens (gitlab-org/security/gitlab@3af76bc31e2d141e2262d65eb08fcab7f34844bf) ( merge request (gitlab-org/security/gitlab!2474)). Trigger token should respect group IP restrictions (gitlab-org/security/gitlab@f9ba81383a97b014be3085524def6f01120d9e3e) ( merge request (gitlab-org/security/gitlab!2476)). content injection in Jira title (gitlab-org/security/gitlab@d0c449079ce8d680f3390e21ed08aced1bfaf17b) ( merge request (gitlab-org/security/gitlab!2463)). Escape contact details correctly in quick actions (gitlab-org/security/gitlab@cbafec91630b1309354784040c572ba1f844f794) ( merge request (gitlab-org/security/gitlab!2459)). Subgroup member can list members of parent group (gitlab-org/security/gitlab@93583b7fe97f59f746f719742230eadbfbdf5ce3) ( merge request (gitlab-org/security/gitlab!2479)). Do not allow project member import when membership is locked (gitlab-org/security/gitlab@b6ca02c9bac46ebcc822bbeee9e75aaf184d9996) ( merge request (gitlab-org/security/gitlab!2457)). Disable changing user attributes when updating SCIM provisioned user (gitlab-org/security/gitlab@660a0021e3df45893c1f4317d3aa86dd276c6071) ( merge request (gitlab-org/security/gitlab!2453)). Allow only job owner to run interactive terminal (gitlab-org/security/gitlab@917c3e4e314b02da33d8b9aea07179bc74833053) ( merge request (gitlab-org/security/gitlab!2451)).

MITL ruby ruby-on-rails git dvcs wiki bugtracker version-control

SDL_bgi 2.6.0 💾

SDL_bgi is a multiplatform, SDL2-based GRAPHICS.H implementation. SDL_bgi is fully compatible with BGI, the Borland Graphics Interface that was the de-facto standard in PC graphics back in DOS days. It's very easy to use, pretty fast, and it also provides extensions for ARGB colours, mouse support, vector fonts, and turtle graphics. It should run on any platform supported by SDL2.

major feature: New major release. New web page; Emscripten support: unmodified SDL_bgi programs can be compiled to WebAssembly embedded in html pages; added test/Makefile.emscripten, test/emcc.sh, doc/emscripten.md, doc/emscripten.pdf; added support for "environment files" (Emscripten replacement for environment variables); added getclick(), doubleclick(); extended mouseclick(); updated Windows Makefiles to SDL2-2.0.22

Zlib c library graphics x11 sdl2 bgi

Mozilla Firefox 101.0 💾

Firefox is a widely used web browser. It's based on Mozillas Gecko HTML rendering and IonMonkey JavaScript engine. It supports HTML5, XML, XHTML, SVG 1.1, MathML, XSLT, CSS3, Web fonts, APNG, SSL/TLS, sandboxed JavaScript 1.8.5 with many newer DOM and WHATWG extensions. It's highly extensible and themeable, provides tabbed browsing, security and privacy features, traditional and live/smart bookmarks.

minor feature: Reading is now easier with the. prefers-contrast media query, which allows sites to detect if the user has requested that web content is presented with a higher (or lower) contrast. It s your choice! All non-configured MIME types can now be assigned a custom action upon download completion. Firefox now allows users to use as many microphones as you want, at the same time, during video conferencing. The most exciting benefit is that you can easily switch your microphones at any time (if your conferencing service provider enables this flexibility). Various security. Various and new policies have been implemented in the latest version of Firefox. You can find more information in the Firefox for Enterprise 101 Release Notes.. Inspector panel: When adding/removing a class name to/from an existing HTML element (using.cls button in Rules View), an autocomplete drop down automatically offers all existing class names on the page. In Firefox 101 the selected class name in the autocomplete drop-down list is auto-applied immediately as the user changes the selection of the autocomplete list (using up/down arrow keys). This is especially useful for quick testing of various styles.. Inspector panel: This new option can be used to disable drag to update features in the Rule View (values of some CSS properties e.g. sizes can be modified by dragging the mouse horizontally).. WebDriver BiDi: This protocol is enabled on the release channel to support external tools such as Selenium, which plan to start using WebDriver BiDi for Firefox. WebDriver-BiDi aims to provide a cross-browser protocol for browser automation that meets the requirements of modern web application testing tools. This allows both the client and the server to send amp; receive requests and responses. Firefox new has added support for large, small, dynamic viewport units and logical ones ( *vi and *vb ). This gives users the flexibility to choose whether page elements are sized to the smallest viewport

MPL c++ web-browser html5 javascript mozilla

ugrep 3.8.0 💾

Ultra fast grep with interactive query UI: search file systems, source code, text, binary files, archives (cpio/tar/pax/zip), compressed files (gz/Z/bz2/lzma/xz), documents, fuzzy search, and more. A faster, user-friendly replacement for GNU/BSD grep.

minor feature: Released 3.8.0 New option combo -o with -ABC context; option -o with -b or -k shows results on separate lines; new option --width; short ug command now sorts by name by default; query TUI ALT- and ALT- keys switched; new + format field used by updated --only-line-number option; updated man pages.

BSDL utilities system-administrators developers

PrRescue 0.107 💾

PrRescue is a rescue CD based on Gentoo amd64 supporting nilfs2 and btrfs. Its goal is to always include the newest kernel and Gentoo packages.

minor feature: Kernel has been updated to version 5.18.1. Gentoo packages have upgraded to latest versions.

GNU GPL gentoo rescue boot

Checkstyle 10.3 💾

Checkstyle assists with source coding standard checking for Java. It supports the Sun or Google code conventions, but is flexible and configurable. It can be run as console tool, or integrated as ANT task.

minor feature: WhitespaceAfter should support LITERAL_CASE token. WhitespaceAfter should support LITERAL_YIELD token. SuppressionXpathSingleFilter suppresses all violations when used with the default configuration. SuppressWarnings: support not working on local variables. Wercker service will be shutdown on October 31st, 2022. Use Shellcheck to resolve violations code in Shell Script. NoSuchFileException during maven-compiler-plugin:3.10.1:testCompile. Extend IT tests to able to load few modules from configs. use linter for bash scripts. Remove some hardcoding of specifics so Checkstyle can be more Extensible. Update doc for NoWhitespaceAfter. Update Checkstyle's Copyright. Update doc for EmptyForInitializerPad. Specify violation messages in input files. Split pitest-coding execution into two executions and investigate instability. Solve fb-contrib errors. Resolve SimplifiableIfStatement inspection violations. Resolve IDEA violations from Teamcity 2022.04 (Bundled IntelliJ IDEA 2021.2.3). Update doc for MethodParamPad. Update Xpath unit tests to have at least two test methods. methods for package-info file check.

MITL java coding-style syntax-checker command-line

Vim 8.2.5041 💾

Vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. Vim is often called a "programmer's editor," and so useful for programming that many consider it an entire IDE. It's not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files.

minor feature: patch 8.2.5041: cannot a terminal popup with "NONE" job Problem: Cannot a terminal popup with "NONE" job. Solution: Adjust the conditions for whether a job is running. .

Other text-editor ide vi vim

sysklogd 2.4.0 💾

BSD syslog daemon and syslog()/syslogp() replacement API for Linux, provides 100% support for RFC3164 & RFC5424, unlike rsyslogd et al.

minor feature: A couple of new features, and a few bug fixes: secure mode possible to set from .conf file, call script on log file rotation, SIGUSR2 to rotate files on demand. Support for disabling kernel logging (when running in a container), support for 8-bit data in logs, and fixes to wall message.

BSDL

4MLinux 39.1 💾

4MLinux is a small, independent, general-purpose Linux distribution with a strong focus on the following four "M" of computing: Maintenance (system rescue Live CD), Multimedia (full support for a huge number of image, audio and video formats), Miniserver (DNS, FTP, HTTP, MySQL, NFS, Proxy, SMTP, SSH, and Telnet), and Mystery (meaning a collection of classic Linux games).

minor feature: This is a minor (point) release in the 4MLinux STABLE channel. Details at www.4mlinux.com

GNU GPLv3 x window system x11 console terminal osdistro

TheSSS (The Smallest Server Suite) 39.1 💾

TheSSS (The Smallest Server Suite) is a lightweight server suite distributed as a live CD. It is designed for system administrators who need an extremely tiny and fast set of server software. The supported servers are: DNS, FTP, HTTP, HTTPS, NFS, MySQL, SFTP, SMTP, SSH, and Telnet. A proxy server (Polipo with Tor) is also included. The main security components are the 4MLinux Firewall (based on iptables) and Clam AntiVirus. ISO images are fully compatible with UNetbootin, which can be used to create an easy-to-use TheSSS Live USB.

major feature: This is a minor (point) release based on the 4MLinux Server 39.1, meaning that the components of the LAMP server are now: Linux 5.16.20, Apache 2.4.53, MariaDB 10.7.4, and PHP (both 5.6.40 and 7.4.29). You can update your TheSSS by executing the "zk update" command (fully automatic process).

GNU GPLv3 server 4mlinux

Image Lock PEA 1.4 💾

Image Lock PEA protects photos, drawings, and documents in image format with a password. Thanks to the integrated viewer the images are never stored unencrypted on the hard disk, but are held only in memory. The Image Lock PEA uses functions to derive the key from the password, that protect also against attackers with a high budget. In addition to the confidentiality, an authenticated encryption protects the integrity and authenticity of the images.

major feature: - Show all images as slideshow - Show metadata in encrypted mode (experimental) mainly for jpg and png files - Additional default cryptographic algorithms: Serpent as cipher, SHA-512 as hash function - Command line mode: Allows calling via the command line and skipping the opening dialogue

GNU GPL cryptography java cross-plattform end-users

Notebook PEA 1.7 💾

Notebook PEA protects texts using authenticated encryption (EAX mode) for confidentiality, integrity, and authenticity of the text. Notebook PEA works like a self-decrypting archive (SDA): the plaintext is never stored on disk, instead it is displayed in a simple text editor with some styling functionality, redo/undo and copy, cut, paste commands. Supports access to Nextcloud, Owncloud and other cloud providers that support the WebDAV protocol.

major feature: - Button to make links clickable or to make text editable appears always when many links are present or if set from menu if any link is present - Import bookmark files like exported files from browsers as links - Header H1-H6 for HTML files - Starting the program in the console and quick start with scripts - Additional default cryptographic algorithms: Serpent as cipher, SHA-512 as hash function - Minor features, GUI changes and bugfixes - Accessibility: Keyboard access improved

GNU GPL cryptography security text-editor java cross-plattform linux cloud-support

Calendar Lock PEA 1.6 💾

Calendar Lock PEA displays password encrypted iCalendar compatible calendars in monthly, weekly and daily view with optional cloud connection. The calendars are always encrypted on the device or in the cloud. iCalendars from other applications can be imported.

major feature: - Encryption at rest: Store unused data separately - Command line mode: Allows calling via the command line and skipping the opening dialogue - Additional default cryptographic algorithms: Serpent as cipher, SHA-512 as hash function - Several minor bugfixes, performance and GUI improvements

GNU GPL security cryptography java cross-plattform end-users calendar cloud

File Lock PEA 1.5 💾

File Lock PEA encrypt files or folders, using authenticated encryption (EAX mode) to provide both confidentiality and the integrity and memory-hard key derivation functions to protect custom hardware attacks. Nextcloud, Owncloud and some cloud providers are supported. File Lock PEA is platform-independent, needs no installation but requires the Java Runtime Environment.

major feature: - Timer to encrypt the files automatically after a certain period of time - Command line mode: Allows calling via the command line and skipping the opening dialogue - Additional default cryptographic algorithms: Serpent as cipher, SHA-512 as hash function - Several minor bugfixes and improvements

GNU GPL file encrytion java password protection security privacy

LimeSurvey 5.3.17 (build 220525) 💾

LimeSurvey is a web application that interacts with MySQL, MSSQL, or Postgres to develop surveys, publish surveys, and collect responses to surveys. Once a survey has been created, data can be inserted into the survey either by a "pretty" public screen which presents each question one at a time, or by a quick and nasty data entry screen. It includes the capacity to generate individualized "tokens", so that invitations can be issued to participants. It also has the capacity to set conditions on whether questions will display (branching), numerous question types, and a basic statistics function.

minor feature: Export responses does not work on MSSQL (Carsten Schmitz). Cannot import a survey archive with timings on MSSQL (Carsten Schmitz). Updated translation: Swedish by joho1968, maxzomborszki. Updated translation: Spanish (Spain) by aesteban, albertodominguez, Ignacio, ireneoh. Updated translation: Slovak by c_schmitz, jelen1. Updated translation: Mongolian by amidral. Updated translation: Maltese by gabrieljenik. Updated translation: Japanese by d_inoue, nomoto. Updated translation: German by c_schmitz. Updated translation: German (Informal) by c_schmitz. Updated translation: Czech by jelen1. Updated translation: Czech (Informal) by jelen1.

GNU GPL survey php mysql mssql postgres

wxMaxima 22.05.0 💾

wxMaxima is a document based interface for the computer algebra system Maxima. wxMaxima provides menus and dialogs for many common maxima commands, autocompletion, inline plots and simple animations.

minor feature: A UI- and -centered release Updated the Ukrainian translation. Added `guess_exact_value` to the numeric menu. Added lapack to the matrix menu. Added linpack to the numeric menu. Added a "declare facts" right-click menu entry to variables. We no more reserve space for hidden input. A better logexpand section in the numeric menu. Many wizards have a more modern look and feel, now. The modern-style wizards are now dockable by default. Undo and redo buttons for the toolbar. A "construct fraction" wizard. Printing multiple-page documents now should work again on Linux. The selection should now no more overwrite test. Hidden code cells now are correctly sent to maxime. MacOs: The toolbar icons work now on retina screens. MacOs: The config dialogue works again. Many additional MacOs. The Cygwin build works again. Support for wxWidgets 3.1.6.

GNU GPL mathematics cas maxima

FileZilla 3.60.0 💾

FileZilla is a feature-rich FTP, FTPS and SSH FTP client, with support for all major plattforms. All tools are designed to aid moving and synchronizing files between local and remote file or webservers. It even allows multi-target uploading or editing files in-place. FileZilla also sports IPv6, a tabbed interface, resuming up and downloads, transfer speed limits, large files over 4GB, server and bookmark management, drag and drop, filtering, HTTPS / SOCKS5 / FTP proxying, and remote file searching.

major bugfix: SFTP: error handling if reading from child process fails. Transfers following recursive operations not starting if the connection limit has been set to 1 in the Site Manager.

GNU GPL c ftp ftps file-transfer