Vue lecture

Before LibreOffice there was OpenOffice, and before OpenOffice there was StarOffice…

Stefan Soyka, StarOffice developer in the early '90s

LibreOffice is the successor project to OpenOffice(.org), which in turn was based on StarOffice, a proprietary office suite developed in the 1990s. Learn more about the history here! And let’s hear from Stefan Soyka, who worked on StarOffice from 1990 – 1992…

When did you join Star Division, and what did you work on?

I came from Berlin to Hamburg to work for Marco Börries in his Star Lab in spring 1990, together with my friend and study mate Stefan. Both of us joined the project more or less at the same time and shared the same first name, which caused some confusion at first.

The situation in Hamburg needs some explaining if you are new to it. The Writer application that is the foundation of what we use today is not the first Star Writer – but thesedays it is often referred to as Star Writer 6 or Star Writer Graphic. Marco’s company Star Division, based in rural Lüneburg not far from Hamburg, had developed and sold with considerable success a text processing application with the same name, that was an MS-DOS application based on a home-grown graphics framework. A team of freelance programmers was working on it under the lead of Sven-Ola Tücke.

This was also the tool we used to write the first drafts for specifications, by the way.

The old Star Writer had a solid fanbase and sold quite well even after Star Lab started in Hamburg. So it is fair to say that the money we burned in Hamburg was earned in Lüneburg.

Marco, however, had the right feeling that graphical user interfaces were already around and taking up speed. The future (that is the time we live in now) would belong to applications running on the main graphical user interface platforms at this time, being Microsoft Windows, the X Window System and macOS. Of course there were voices that argued that graphical user interfaces were only hampering productivity and real pros would always use the command line. That may sound a bit funny today, but I took it all in my heart.

When I arrived there, development had pretty much advanced in the compatibility layer named Star View, that allowed portable programming of both operating system functions and graphical user interfaces. There was, however, no application yet. Because I had worked on a C++/X Window System project on the ODA standard (ISO 8613, Open Document Architecture), I had some background on this and formed with some others the core of the Star Writer project team.

Star Division logo

Tell us about the office location and team back then!

The offices of Star Lab at that time were at Heidenkampsweg, near Berliner Tor, in Hamburg in a quite modern building. I remember the adjacent gas station; many of us were heavy cigarette-smokers at that time, and I sometimes went there at night to get the next pack.

Dirk Bartels supervised the daily operations. He had a software company back in Berlin and he expected benefits from the Star View portability layer for his own products. His personal secretary was Marita, if I remember the name correctly, a lovely young woman, I think the only one in the project at that time. When I joined the team, there were about twenty people working there including administrative staff.

Andreas, a good-natured guy with intense freckles, managed the Star View project. Almost all the coding however, at least for the Microsoft platform, was completed by Thomas – a very young man who was incredibly well-organized and productive, the type of coder who writes a screen full of statements that compile instantly error-free. He also virtually lived in the offices. The staffing for this platform was good; the other platforms had fewer developers. I remember Dirk, a shy young man who did the Macintosh port. One day, he showed us that all output appeared like upside down. It turned out that the Macintosh uses a y-origin different from the Microsoft platform (top left, I think). That gave him certainly some headaches.

Michael, a freelancer from Lüneburg, sometimes visited Star Lab in his tiny, first generation Mazda MX-5, that he could barely fit into. He was the only engineer who contributed to both the “classic” Star Writer with Sven-Ola Tücke, and Star Lab. He introduced the first Star Basic macro language. For the Windows platform, it had been worth thinking about a Star Writer application programmers interface or component object model (OLE at that time, but was just emerging in 1991 with Word and Excel), but with portability above all, this did not come to pass.

The team at this time was Euro-centric at least – effectively most staff members came from nearby. Another great developer in the Star View team, however, was Eddy McGreal, an Irish guy, whom I saw by incidence recently in a software product presentation he held. Can’t stop hacking.

Armin kept the business in order. He was also working on internationalisation. When he married, he invited all mates to comes and celebrate. It was in a small town in the moors, I don’t remember the name, but we had a great time. When we went back to Hamburg in the morning – hopefully at least the driver was more or less sober.

In the Star Writer team, Jürgen was the most productive programmer, about two meters tall with a sad face. Playing handball was his first priority, if he was not hacking. He did incredible work under the hood, like importing exotic files from other text processors, and never complained or missed a deadline. I think we never gave him enough credit for what he achieved.

Despite all the good work, the Star Writer project did not meet the expectations in the time when I was there. Later, I spent many thoughts on why we were not more successful in the beginning, because it felt like a wasted opportunity to me. It was not for the lack of ambition: there are folders full of splendid concepts and intricate specifications. But none of us had a good blueprint of the best way to start this enormous, complex task, I believe.

What was the toolset and development process like back then?

The object-oriented programming paradigm had evolved into the first C++ standard and implementations. Before I came to Hamburg, a pre-compiler was used, on Sun Workstations at least, to generate standard K&R C code, that was fed into the platform native C-compiler. The result was not always predictable or free of errors, but luckily, at Star Division, we had the one-step Microsoft C++ compiler, so we were a step ahead at this point.

Star View, however, was a huge library and the Microsoft linker had a hard time (and needed a long time) to do the static linking. When it came to a code freeze, that is the integration of the stable versions of all projects, Stefan used an egg timer so that he didn’t miss the time when the linker had finished, to see if there were problems with the linking or not. It took so long, you could easily forget it. If it failed, it needed fixes and another round. The whole process needed much time, until Stefan one day found out that someone had tackled the problem with the Microsoft linker and had released a better implementation that did the job in a fraction of the time.

Another paradigm that came up at the time was the Model-View-Controller (MVC) pattern. It says, in short: what you see is only a volatile transformation of the model. The controller, like someone typing text into the application or a report generator producing table data output into a document, changes the model, which in turn from time to time updates the view.

Many in the project and even in the management were not comfortable with this procedure, because it appeared to make a simple thing unnecessarily complex. The argument was like: “This is meant to be a WYSIWYG text processor, and we need nothing beyond what the user sees on the screen, so let’s store this”. Nobody wanted to look at a document any different from before, when he or she opened it again – maybe on a different machine were fonts were missing or the display had a different resolution. There was a lot to explain and no proof that either concept was superior. What’s more, nobody could tell reliably and by their own experience, what adopting the MVC pattern for a text processing application meant in practice, and how the code would look like.

Then, the Unicode standard was evolving and a controversial debate started about what that meant for our plans. Speaking of 16-bit Unicode only, two aspects were unsettling: the same document would need twice the memory compared to 8-bit characters (we had no concept for memory management then and kept the whole document in RAM all the time, which obviously still needed some reworking). At that time, the model was using zero-terminated C strings for text paragraphs for the comfort of using the standard C string libraries.

Turning to Unicode, we would have to say goodbye to that and rewrite the functions we needed. It probably had not yet dawned everyone, that C strings would not suit the requirements of text attributes and formatting anyway.

UTF-8 strings, on the other hand had the downside that it was complicated to find out, how many character positions the output would use. Building substrings from UTF-8 strings is also a delicate matter, because the string can not be cut at any position without creating invalid UTF-8 character sequences.

Most of the developers working on StarOffice later will certainly be surprised, what basic considerations were moving us at the start, but man, this was all serious stuff.


StarOffice 3.1 and modern LibreOffice screenshot comparison

StarWriter 3.1 (screenshot courtesy of WinWorld) and modern LibreOffice

Do you still use LibreOffice today, and do you have any contact with old Star Division team members?

Sorry to say that I have no contact any more with my has-been workmates. I left Star Division somewhat frustrated because it took so long for the good concepts to materialize and also, because I felt, I was not the right man to promote that. But I also had a pregnant girlfriend (now my wife) in Berlin, which was even a better reason to say good-bye.

Frankly, I was relieved and amazed to see the first product. It was not free at that time. I don’t think it really paid for Marco before it went to Sun Microsystems – anyway there was no free download. With my Zyxel 14.400 baud modem, it had taken a long time anyway. I got versions on batches of CDs from time to time from my friend Stefan, though, who was still with the project.

I was not so happy with the application at first, because at that time it was a monolithic “desktop” with all applications in its belly (like Writer, Calc, Impress and Draw, I believe), which took ages on my machine to load. I would have loved to see more collaboration in it: at that time that would meant an e-mail client and calendar.

Sometimes I thought to myself, “If I had to decide …” but ended with a sigh :“There would be no Star Writer to this very day”. In fact, it would be another interesting story, which changes it took to finally make it happen.

I never had Microsoft Office for myself (I like Microsoft Publisher for the themes and the artwork that came bundled with it, but somehow Pokémon Druckstudio was an acceptable replacement). I had to buy a Microsoft licence for my children though, because teachers did not expect that someone would not have access to Microsoft Office, and I was hesitant to end my child’s learning career over this.

I use LibreOffice almost every day now. It has all I need, and probably much more.

I use LibreOffice for my everyday correspondence, and less often I use it to create PDF files for printing. I have a nice set of Star Basic macros, and a good document template I load all the formatting from, to create a good-looking A5 format book from a text file or a website, in no time at all. Creating PDF files is very easy in LibreOffice, yet it has some uncommon features that come in very handy at times, like the option to export also blank pages (that would usually be omitted). Believe me, you don’t want to go to print without the blank pages.

The E-books that I create from the same document (printing is a bit out of fashion) have no frills (they could have, of course) but they are nice to read. I confess that I find it very convenient to load them into my Kindle account, from which I can read them on any device that comes near to me.

Well, I’m not a young man anymore, I like to say that before anyone else does, and programming to empower users (with more luck in later projects) is still my passion to this day. The StarOffice project has been with me more or (sometimes) less all the way, a bit like a child I gave up for adoption at an early age.

TDF says: Thanks to Stefan for the insights into the early days of StarOffice – and we’re happy to hear that he’s still using LibreOffice today!

LibreOffice at the Linux Arena in Pordenone, Italy

LibreOffice at the Linux Arena in Pordenone

Marco Marega writes:

Hi, I’m Marco, an Italian translator and Member of The Document Foundation. Twice a year I take part in an event in Pordenone to promote LibreOffice within the stand “Linux Arena” of the PNLUG Linux User Group. It’s inside a local fair, part of which is dedicated to technology, makers, electronics and so on.

For the event from April 25 – 27 we had a LibreOffice stand with a 32″ monitor, showing an Impress presentation about LibreOffice on a loop. At the stand I met different interested people – some of whom I already know since they visit the fair regularly, while others I saw for the first time.

There is always curiosity about LibreOffice, and this time I noticed an increasing demand about AI integration and related plugins. The LibreOffice coffee/beer mats were very much appreciated by visitors to the stand.

LibreOffice at the Linux Arena in Pordenone

The Pordenone Linux User Group invited other associations to share the stand, so there were also:

  • Trieste Linux Users Group, with a nice game to learn bash commands while trying to deactivate a bomb
  • Odoo group, presenting the ERP/CRM/…
  • Bergamo Linux Users group presenting OpenWRT and some other projects (Emiliano Vavassori is one of them)
  • A Blender expert
  • Another member who uses openSUSE for multimedia production
  • A corner where volunteers helped visitors to install Linux on their PCs, or to solve little problems

The next edition of the event will be on 22 – 23 November.

LibreOffice at the Linux Arena in Pordenone

2.12.1 released

Par :Jonas

🌐 Translations

  • Updated Turkish translation using Weblate by @weblate in commit
  • Updated Hungarian translation using Weblate by @summoner001 in commit
  • Updated Italian translation using Weblate by @Wiccio in #804

ODF: An Analysis of the Adoption of the Open Document Format

Over the course of its 20-year history, the ODF standard has been adopted, or at least recommended, by numerous supranational bodies and several countries on almost every continent. However, this does not necessarily mean that the ODF standard is used in accordance with these decisions, which are often laws in their own right, as Microsoft’s substantial lobbying and misinformation campaigns aimed at protecting its revenue of around $25 billion generated by the proprietary OOXML format (DOCX, XLSX and PPTX) encourage the use of the latter. This is despite the fact that the disadvantages for national systems, communities of citizens and individuals are very easy to demonstrate: loss of control over content, interoperability problems and dependence on the commercial strategies of a single vendor.

The information in this post is based on my research into sources relating to the adoption or recommendations for the use of ODF. I began compiling this collection of documents around 2010 and continue to update it annually. Over the last twelve months, I have also used artificial intelligence in my research, which has helped me find some articles.

Unfortunately, formal adoption or recommendation of ODF does not guarantee its actual use in accordance with the law. For example, the latest version of Italy’s Digital Administration Code explicitly prohibits the use of OOXML because it is not a standard, yet this decision is largely ignored by public bodies.

SOVEREIGN BODIES

NATO requires all 28 member countries to use ODF as the standard format for document exchange.

UN and NGOs: UN organisations favour standard and open formats to ensure that all documents remain accessible and do not depend on expensive or restricted tools. This is why ODF is used for reports, policy drafts, and collaborative documentation between teams.

European Commission: has taken a strong stance in favour of open standards and promotes the use of formats such as ODF in documents through its open source software strategy. The European Parliament, the European Commission and the EUIPO (European Union Intellectual Property Office) have integrated LibreOffice and ODF into their internal workflows to ensure greater transparency and language neutrality.

EUROPE

Belgium: Since September 2007, all Belgian federal government departments have been required to accept and read ODF documents, and a memorandum has established ODF as the standard for the exchange of office documents within the federal public administration.

Denmark: From 1 April 2011, the Danish Parliament has mandated the use of ODF by state authorities for the exchange and archiving of documents, whereas previously agencies were only required to accept ODF documents. In recent weeks, articles have claimed that the Danish government will formally migrate to open-source software and, therefore, to ODF. We are, of course, seeking confirmation of this project.

Finland: The Ministry of Justice and other ministries have adopted ODF as the main document format.

France: The Référentiel Général d’Interopérabilité (RGI) recommends ODF as the preferred format for office documents in public administrations. Agencies are therefore encouraged to use ODF for creating and archiving text documents, spreadsheets, and presentations.

Germany: The German Council for Information Technology Planning, representing the federal and state governments, has committed to making ODF the standard for document management in public administration by 2027. The Ministry of Foreign Affairs and several federal courts already use ODF exclusively. Several federal states and municipalities have also switched to ODF-compatible office suites, such as LibreOffice and Collabora Online. ODF is cited as a core element of Schleswig-Holstein’s digital sovereignty strategy.

Italy: The Digital Administration Code only allows ODF in its guidelines for public administration, as OOXML does not meet the open standard criteria contained in the document’s glossary.

Netherlands: The Dutch government mandates the use of open standards, including ODF, for all data exchanges in the public sector, and adoption is monitored by an active political community that supports implementation.

Slovakia: All public authorities must be able to read and use ODF for electronic communication and publication of documents, including those with electronic signatures.

Spain (Andalusia and Extremadura): These regions require government agencies to use ODF (or PDF/A for static documents) for communication with each other and with citizens.

Switzerland: Government agencies are recommended to use ODF for document exchange with citizens or other agencies.

United Kingdom: In 2014, the British government adopted ODF as the sole standard for sharing and collaborating on editable documents across the public sector. The Home Office has a formal ODF adoption plan and does not reject ODF documents from citizens or businesses.

AMERICA

Argentina (Province of Misiones): The use of ODF is mandatory within government administrative organisations.

Brazil: Since 2010, proprietary formats have been prohibited in the federal public administration and ODF has been the standard for all office documents. It is mandatory in federal IT policies and is widely used in ministries and state governments. SERPRO (the federal data management service) ensures that national document workflows comply with the ODF standard.

Uruguay: public documents must use ODF for editable files and PDF for fillable forms and non-editable documents.

Venezuela: all federal government organisations must use ODF 1.0 for editable documents.

ASIA

India: India’s policy on the adoption of open standards for e-governance includes ODF as the preferred format for all federal and state services, particularly where vendor neutrality is critical for affordability and scalability.

Taiwan: The Ministry of Education has introduced ODF-compliant tools in all schools, and local governments use LibreOffice for daily administration.

AFRICA

South Africa: South Africa’s MIOS (Minimum Interoperability Standards) policy aims to ensure a future-proof digital government and access for all. It promotes open standards and lists ODF as an accepted format.

CASE STUDY

Monaco: In 2013, the city of Monaco made headlines when it migrated 15,000 desktops to Linux and OpenOffice/LibreOffice, adopting ODF. Despite positive results and significant cost savings, the project faced strong political opposition backed by the Microsoft lobby. In 2017, part of the migration was cancelled. This case is emblematic because it highlights the complexity of vendor lock-in and demonstrates the pressure that public institutions face from proprietary vendors to maintain a monopoly that is detrimental to the institutions themselves and their citizens.

Create a colour wheel in LibreOffice

Screenshot of colour wheel being created in LibreOffice Calc

Regina Henschel writes:

Susanne Mohn asked on the German-language user’s mailing list how to create a colour wheel with LibreOffice. It was not about the colours themselves, but about the geometry. How do you create a circle or ring with equally sized sectors?

Very different solutions were proposed. Susanne Mohn, Harald Berger and I (Regina Henschel) have created a page in the LibreOffice Wiki so that these do not remain hidden in a thread. Due to the development process, some sample files are in German, but the page itself is in English.

Colour wheels can be used to create “doughnut charts” of data. Have fun exploring!

Colour wheel

Libre Graphics Meeting 2025

Banner with graphic art and the sayings Libre Graphics Meeting 2025, Nuremberg, May 28 — 31, RE:Imagination
https://libregraphicsmeeting.org/2025/

Right after Inkscape Summit in Nuremberg, from May 28th to the 31st, the team attended to the Libre Graphics Meeting 2025, also in Nuremberg. It was a great opportunity to learn and share, and a unique experience to see how Inkscape contributes to the Libre Graphics scenario globally.

LGM 2025 featured a series of talks and workshops, covering aspects of creative software development, demoing real use cases for libre graphics, and pushing boundaries of technology as a platform for creative experimentation. From graphic design to embroidery stitching, XML editing to retro video game UI emulation, Inkscape showed up as an important part on the arts, design, and maker communities.

lgm-group-photo-2025.jpg

Ink/Stitch — Talk

https://libregraphicsmeeting.org/2025/program/ink-stitch/
Daniel K. Schneider gave an excellent overview around embroidery stitching as a durable and versatile artistic expression, with many areas of application. All existing embroidery machinery use proprietary file formats and require expensive software. Ink/Stitch is an Inkscape extension that offers a full-fledged, cross-platform embroidery digitizing platform. It is based entirely on free and open-source software. In the past year, Ink/Stitch had 225 thousand downloads. It's user base have an active community of 10k+ french speaking users in a Facebook group.

Daniel mentioned that one of Inkscape's advantage for building Ink/Stitch is that it is already familiar to the makers community, from other activities (like laser cutting). Inkscape's drawing conventions can be used to define stitch types (a thick stroke translates to satin stitches, for example), which is interpreted and converted by Ink/Stitch into real embroidery patterns. It is super cool to see Ink/Stitch converting SVGs and simulating the output.

A screen recording depicting Ink/Stitch UI and the vector drawing of an elephant being converted into embroidery patterns

How to Run a Film Festival on Libre Graphics — Talk

https://libregraphicsmeeting.org/2025/program/how_to_run_a_film_festival_on_libre_graphics/
Marc Rodrigues organized and ran the first LusOFest — Festival for Portuguese-Language Film in Offenbach am Main. Lusofest 2025 featured work from 6 countries and received 6 film makers. It's more than 350 visitors were able to attend to 3 feature films exhibitions and watch 40 out of 500+ submitted short films. As stated by Marc, "Organising a film festival is 90% communication". Marc covered the importance of advertising and rooting for people to come for your festival. All communication and promotional materials, were done entirely with FOSS. And as mentioned by Marc, Inkscape was the obvious choice for all the Graphic Design work, producing printed post cards, social media postings, and more.

A photo of a slide with the sayings 'The Oscars 2025', 'I'm Still Here' wins Best International Feature Film, 'Flow' wins Best Animated Feature Film, and a picture of directors Walter Salles and Gints Zilbalodis hugging and holding their awards. Lusofest.

Inkscape UI Vision Going Forward — Talk

https://libregraphicsmeeting.org/2025/program/inkscape_ui_vision_going_forward/
UX designer Henrique Perticarati walked through the design process for an Inkscape UI vision work, and how this proposal gained traction with the community. Henrique proposes that a friendlier UI would be more inviting to new users, and a larger user base would lead to more contributions. He also pointed out that tools like Blender, GIMP and Scribus had recently gone through UI redesigns, and that there's momentum in the community for a UX-led transformation. This vision work helped Henrique to build trust with Inkscape's community and start collaborating with other members (Yotam Guttman, Wen-Wei Kao, Adam Belis, Mike Kowalski) around the future of Inkscape UX. During the talk, Henrique covered some insights about UX related users' interests, based on analysis of Gitlab issues. These insights will help determine further research and UI explorations. Stay tuned for news around the UX initiative!

A graphic representation of a new User Interface for Inkscape

CapyPDF — Lightning talk

https://libregraphicsmeeting.org/2025/program/lightning_talks_thursday/
Jussi Pakkanen had a 10 min lightning talk about CapyPDF, a low level library for generating PDF files.
It exposes all PDF object specifications, nothing more, nothing less. CapyPDF is also the basis for the upcoming Inkscape CMYK-capable PDF exporter we've been all waiting for (our own Martin Owens is one of the project collaborators).

Other mentions to Inkscape

Picture of LGM attendees sitting around a restaurant table for dinner
After four days of exchanging knowledge and experiences with the community, we are excited about getting back to work!

The end of Windows 10 is approaching, so it’s time to consider Linux and LibreOffice

The Document Foundation and LibreOffice support the international campaign @endof10 https://endof10.org/

The countdown has begun. On 14 October 2025, Microsoft will end support for Windows 10. This will leave millions of users and organisations with a difficult choice: should they upgrade to Windows 11, or completely rethink their work environment?

The good news? You don’t have to follow Microsoft’s upgrade path. There is a better option that puts control back in the hands of users, institutions, and public bodies: Linux and LibreOffice. Together, these two programmes offer a powerful, privacy-friendly and future-proof alternative to the Windows + Microsoft 365 ecosystem.

The real costs of switching to Windows 11

The move to Windows 11 isn’t just about security updates. It increases dependence on Microsoft through aggressive cloud integration, forcing users to adopt Microsoft accounts and services. It also leads to higher costs due to subscription and licensing models, and reduces control over how your computer works and how your data is managed. Furthermore, new hardware requirements will render millions of perfectly good PCs obsolete.

This is a turning point. It is not just a milestone in a product’s life cycle. It is a crossroads.

The new path: Linux + LibreOffice

These two programmes form the backbone of a free and open computing environment based on open standards. For individual users, public administrations, schools and businesses, this combination offers more than enough: it is mature and secure, and is already in use worldwide for mission-critical workloads. Furthermore, using open standards protects users against any attempts by software developers to control them.

Here’s what this alternative offers:

  1. A modern, stable and unrestricted operating system, accessible to all users thanks to intuitive distributions that allow each user to choose the configuration that best suits their needs. It also offers regular updates, long-term support versions and communities where people can help each other and develop their digital knowledge together.
    Unlike Windows 11, Linux works with all personal computers that ran Windows 10, meaning there is no need to replace your old PC. Those with even older computers can also find a suitable version of Linux, extending their useful life and reducing electronic waste.
  2. LibreOffice is a complete office suite offering word processing, spreadsheets, presentations, drawing and database tools. It respects freedom and data because it is based on an open, standard document format (ODF), and is compatible with Microsoft’s proprietary formats (DOCX, XLSX and PPTX). This gives users control, as Microsoft cannot decide to end support at any time, as it is doing with Windows 10.
    LibreOffice is supported by a global community of volunteers, consultants, and companies who provide free and paid professional support, ensuring the ongoing development of the software and the prompt resolution of security and operational issues. There are no licence fees, telemetry or vendor lock-in.
  3. Both Linux and LibreOffice are based on transparency. This means that all documents saved in the standard format will always be available because the format is open, and all documentation is available online. They also do not require a user licence subscription that protects the software vendor more than the user, and which contains incomprehensible legal clauses.
    Both the operating system and the software are managed by foundations, not companies. All activities, including development, quality assurance, problem-solving and the release of new versions, take place in public because users have the right to control the quality of the digital tools they use and entrust with their content.

What does migration look like?

Replacing Windows and Microsoft Office is not as difficult as it seems, either at an individual or corporate level. Many organisations around the world have already done so, and many others are planning to do so right now, precisely because they no longer want to be subject to the commercial strategies of Microsoft and its partners.

These are the key steps:

  1. Start by testing Linux and LibreOffice on a second partition of your PC (for individuals) or in less critical departments (for companies).
  2. Check the compatibility of your software configuration with Linux and LibreOffice; most office tasks can easily be transferred or adapted with minimal effort.
  3. Build documentation to learn how Linux and LibreOffice work and organise training if necessary.
  4. Find a consultant who can help with the migration process, such as someone certified by the Linux Professional Institute or The Document Foundation (for LibreOffice).

This is not a radical change, but rather a gradual, tailor-made transition depending on user needs.

It is important to start immediately

Microsoft is forcing users’ hands, but it is also opening a door. Now is the time to challenge your assumptions and take back control of how your personal computers work, how long they last, and most importantly, how your content is managed.

Linux and LibreOffice are not just alternatives; they are superior choices that most users have not considered until now because they trusted Microsoft — perhaps too much. This trust has been betrayed by the decision to abandon a functioning operating system such as Windows 10, purely to sell more products and lock users in further, which cannot be justified by any technological assessment.

Here’s how to get started:

The end of Windows 10 does not mark the end of choice, but the beginning of a new era. If you are tired of mandatory updates, invasive changes, and being bound by the commercial choices of a single supplier, it is time for a change. Linux and LibreOffice are ready — 2025 is the right year to choose digital freedom!

The Document Foundation and LibreOffice support the international campaign @endof10 https://endof10.org/

LibreOffice for End User Privacy – TDF’s Annual Report 2024

TDF Annual Report 2024 banner

LibreOffice stands out as a privacy-respecting open source office suite. Unlike proprietary alternatives, the software is designed with privacy, user control and transparency in mind.

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

Introduction

Concerns about end user privacy in the digital world have grown significantly over the past two decades, with and increasing awareness of data collection, user tracking and online surveillance. Many proprietary applications, including office productivity tools, often collect vast amounts of user data, in most cases without clear user consent.

All this has been clearly documented by Shoshanna Zuboff in her book: The Age of Surveillance Capitalism, which is defined as a new economic strategy that uses the activities and experience of the individual as a free raw material for hidden commercial practices of extraction, prediction, profiling and selling.

In this context, open source software differs substantially because respect for the user and for privacy are part of the ethical principles that guide the development of all applications. And LibreOffice stands out as the only office suite – open source or not – that respects privacy. Unlike proprietary alternatives, LibreOffice is designed with privacy, transparency, and user control of content in mind. The software does not collect telemetry data by default, does not include intrusive tracking functions, and allows users to work completely offline.

The following is a list of LibreOffice features and settings which help ensure end-user privacy, making the software a preferred choice for individuals, businesses and government institutions that prioritise data security.

No data collection or telemetry by default

Infographic showing that LibreOffice doesn't mine your data

One of the most significant privacy benefits of LibreOffice is its lack of telemetry by default. Unlike proprietary office suites that constantly send usage data back to their developers, LibreOffice does not collect or send any personal data without the user’s consent.

  1. There are no background processes that track document usage, keystrokes or user activity.
  2. LibreOffice does not create a unique user ID or track document interactions like some proprietary office suites do.
  3. There is no built-in cloud storage requirement, ensuring that files remain on the user’s device unless manually uploaded elsewhere.

Optional telemetry with user consent

LibreOffice offers an optional telemetry feature, but it is entirely opt-in and requires explicit user consent. The collected data will only be used to improve the functionality of the software and will never be shared with third parties.

Full offline functionality

Unlike cloud-based office suites such as Google Docs, Microsoft 365 or Apple iWork, LibreOffice is a fully offline suite.

  1. No forced cloud storage: documents remain on the local computer, reducing the risk of unauthorised access.
  2. No dependence on an Internet connection: users can work in completely isolated environments.
  3. No third-party server involvement: documents are never stored on a corporate server unless explicitly uploaded by the user.

For security-conscious organisations such as government agencies, law firms and healthcare providers, this offline capability ensures that sensitive documents never leave the internal network.

Open Document Format (ODF) for privacy and transparency

ODF logo

LibreOffice uses the Open Document Format (ODF) as its default file format. Unlike proprietary formats such as Microsoft’s DOCX, XLSX and PPTX, ODF is an open standard, which means:

  1. It does not contain hidden tracking elements or embedded metadata that can leak user information.
  2. It guarantees the integrity of the data in the long term because the format is fully documented, and the documentation is publicly available. Furthermore, the documentation corresponds to the format currently used by the software, unlike what happens with Microsoft 365 where the documentation is stuck at 2008.
  3. It does not contain proprietary encryption mechanisms that could be exploited for surveillance or unauthorised access.

Control over metadata

Metadata can contain sensitive information such as: author details, document history, and editing timestamps. LibreOffice allows users to remove all metadata before sharing a document to ensure that private information is not inadvertently shared with external parties.

Strong encryption and password protection

LibreOffice provides robust document encryption to prevent unauthorised access. Users can protect their documents with strong passwords and encryption settings. This prevents unauthorised users from opening or modifying the file.

In addition, LibreOffice supports GNU Privacy Guard (GPG) encryption for users who require public key cryptography to secure their documents.

No cloud lock-in: freedom to choose storage

Unlike Microsoft 365 or Google Workspace, which force all users to store documents in their respective cloud ecosystems, LibreOffice allows full control over file storage. This flexibility ensures that no third party can access user data without explicit permission.

Users can:

  1. Store files locally on their hard drive or external storage.
  2. Use self-hosted cloud services such as Nextcloud or ownCloud for increased privacy.
  3. Store files on USB drives, encrypted partitions or private network servers.

Macro security and malware protection

Macros are often used in office documents for automation, but they can also be exploited to deliver malware. LibreOffice includes robust macro security settings to protect users.

  1. By default, LibreOffice blocks macros from untrusted sources.
  2. Users can only enable macros if they are signed with a trusted certificate.
  3. The security level can be configured to prevents malicious actors from using macros as an attack vector.

Transparency and open source code

One of the biggest privacy benefits of LibreOffice is its open source nature. Unlike proprietary office suites that operate as black boxes, LibreOffice’s source code is publicly available and regularly audited by the security community. This level of transparency and user control makes LibreOffice a trusted alternative to closed-source office suites.

  1. No hidden spyware: because anyone can inspect the code, LibreOffice cannot contain hidden trackers or surveillance tools.
  2. Independent security audits: governments, cybersecurity experts and researchers can verify LibreOffice’s privacy claims.
  3. No forced updates: users have complete control over when and how they update LibreOffice, avoiding unwanted feature changes or telemetry settings.

Conclusion

LibreOffice is the most privacy-conscious office suites available today. With no telemetry by default, full offline functionality, strong encryption, metadata control and open source transparency, it provides users with a secure and private environment for document creation and collaboration.

For individuals, businesses and governments concerned about privacy and digital sovereignty, LibreOffice is a reliable, free and ethical alternative to proprietary office suites.

As privacy concerns continue to grow in the digital age, LibreOffice remains committed to ensuring that users retain full control over their data: a core principle that sets it apart from many commercial alternatives.

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

Monthly News – May 2025

Par :Clem

Hello everyone,

Many thanks to our sponsors and to all of you who support the project with your donations.

Mint 20.x EOL

It’s been 5 years already!

Linux Mint 20.x releases (i.e. 20, 20.1, 20.2 and 20.3) reached EOL (End of Life) and are no longer supported. They will continue to work but they will no longer receive security updates from the repositories.

If you’re running Mint 20.x, you have two main options:

– Fresh installation of Linux Mint 22.1 (recommended): This is supported until 2029 and is the cleanest approach – backup your data and do a fresh install.

– Upgrade path through Mint 21: This gets you support until 2027 and involves multiple steps:

The minor upgrades towards 20.3 are quite simple, easy and fast. The upgrade from 20.3 to 21 on the other hand is a major upgrade. It is longer and more complicated. Take your time with this one and don’t hesitate to seek assistance within the community, in the chat room or on the forums.

For more information on upgrades visit https://linuxmint-user-guide.readthedocs.io/en/latest/upgrade.html.

Fingerprint Authentication

Linux Mint 22.2 will feature a brand new app called “Fingwit“.

Fingwit is a fingerprint configuration tool.

It detects if your computer has a fingerprint reader and lets you record your fingerprints.

It then configures your system to use fingerprint authentication for:

  • The login screen
  • The screensaver
  • sudo commands
  • Admin apps (pkexec)

Under the hood, Fingwit uses fprintd but provides a smarter PAM module than pam_fprintd.so. Whereas fprintd just uses fingerprint authentication all the time, Fingwit is able to detect problematic cases and dynamically switch between fingerprint and password authentication. For instance if you’re trying to log in but your home directory is encrypted, fingerprint authentication would log you in but your session would crash since ecryptfs requires your password. Fingwit detects that kind of things so you get fingerprint authentication as much as possible, but avoid such issues.

Fingwit is an XApp so it works everywhere, in any desktop environment and on any Linux distribution.

XViewer color correction

While working on themes and colors, it came to our attention that the XViewer image viewer was applying an EDID-based color correction filter to pictures and wasn’t showing pictures exactly as they were.

This “feature” could sometimes lead to a scenario where you could take a screenshot of an app, open up the screenshot, color pick the app and the screenshot of the app and get different color codes.

Color management is already handled at hardware and desktop level, so we found this feature in Xviewer surprising and counter-intuitive. We decided to make it optional and to disable it by default.

libAdwaita apps and patches

Starting with Linux Mint 22.2, libAdwaita will be patched to work with themes. Support for libAdwaita was added to Mint-Y, Mint-X and Mint-L.

The following apps will be upgraded to their libAdwaita versions:

  • gnome-calendar
  • simple-scan
  • baobab

libAdapta fork

In the scope of XApp and for our own projects, libAdwaita was forked into libAdapta:

https://github.com/xapp-project/libadapta

LibAdapta is libAdwaita with theme support and a few extra.

It provides the same features and the same look as libAdwaita by default.

In desktop environments which provide theme selection, libAdapta apps follow the theme and use the proper window controls.

LibAdapta also provides a compatibility header which makes it easy for developers to switch between libAdwaita and libAdapta without requiring code changes.

Framework

Last but not least, I wanted to talk about Framework a little bit.

The company sent me some of their hardware so I was able to test the Laptop 13 and the gaming Desktop already.

Their products are really nice. I hope to be able to review them soon and add them to our store section.

This isn’t just a commercial partnership. By testing this hardware we boost compatibility for the brand and significantly improve Linux Mint.

It’s thanks to Framework we implemented power profiles in Linux Mint 22.1. It’s also thanks to them that we worked on fingerprint authentication or pushed towards an HWE kernel in Linux Mint 22.2.

Their hardware challenges us to do better, because it’s packed with features in need for support.

It’s a lot of fun to play with modern tech and it’s a real treat when it contributes to making Linux Mint better!

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
AYKsolutions Server & Cloud Hosting
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
Chargeblast
chr0meice91 on TikTok
nesevo GmbH & Co. KG
Tinken Inc
VANT

Donations in April:

A total of $17,062 were raised thanks to the generous contributions of 529 donors:

$531 (4th donation), Christos P.
$531 (3rd donation), Andreas B.
$531, Anonymous
$531, Rolf M.
$400, Willard K.
$318 (4th donation), Jiří B.
$212 (9th donation), Richard H.
$212, Remi C.
$200 (16th donation), Tomasz E.
$200 (2nd donation), Kirby S.
$200, charles E. M.
$159, Mr Greg V.
$120, Benny A.
$110, Anna K.
$106 (3rd donation), Klaas H.
$106, Franz H.
$106, Irene A.
$106, Marcel H.
$106, Robert D. R.
$106, Sebastian F.
$106, Thibault G.
$106, Vincent H.
$100 (20th donation), John Mc aka “Land Research Project”
$100 (17th donation), Alfred H. aka “Varmint Al
$100 (7th donation), James F.
$100 (5th donation), Durwood A.
$100 (3rd donation), Lee J.
$100,
$100, James L. Y.
$100, James S.
$100, michael L. L.
$100, Patrick M.
$100, Richard P. B.
$100, Scott S.
$100, WebStep s.r.o.
$92, Kieran R
$75 (7th donation), Frank R.
$75 (2nd donation), Kelly E.
$74 (3rd donation), Urs K.
$70 (5th donation), Vincent F.
$63, Decorfolia
$63, Wolfgang A.
$60, Benjamin S.
$60, Ralph P.
$53 (23rd donation), Naoise G. aka “Gaff”
$53 (22nd donation), Bernard H.
$53 (14th donation), Roland H.
$53 (13th donation), Volker P.
$53 (10th donation), Jyrki A.
$53 (10th donation), Karl H.
$53 (4th donation), Christian Z.
$53 (4th donation), Peter S. aka “Pierre”
$53 (3rd donation), Pascal B.
$53 (3rd donation), Pierre V.
$53 (2nd donation), Hannu H.
$53 (2nd donation), Harry B.
$53 (2nd donation), Tero J.
$53 (2nd donation), Wilfried K.
$53, Arnest M.
$53, Bertram R.
$53, Carstzen K.
$53, Christian S.
$53, Daniel K.
$53, Denis G.
$53, Don M. H.
$53, Eugen B.
$53, Frank N.
$53, Frank P.
$53, Fritjof R.
$53, Gerd R.
$53, Hans-Joachim V.
$53, Henk S.
$53, Isolde Z.
$53, ladyred
$53, Marek Stapff aka “maff
$53, Mathias H.
$53, Mathieu L.
$53, michael B.
$53, Peter F.
$53, Pierre-Fran%E7ois L.
$53, R. S.
$53, Richard A.
$53, S.T. L.
$53, Sebastian B.
$53, Sebastian S.
$53, TFA Sprocket
$50 (8th donation), Dean R.
$50 (7th donation), David W.
$50 (7th donation), Mothy
$50 (5th donation), Tom D.
$50 (4th donation), Anthony C. aka “Ciak”
$50 (4th donation), Michael M.
$50 (4th donation), Robert M.
$50 (3rd donation), David J.
$50 (3rd donation), David R.
$50 (3rd donation), Geoff P.
$50, Alan G.
$50, Alexander S.
$50, B%E5rd S.
$50, Christopher F.
$50, EIJI H.
$50, Jeremiah F.
$50, John S.
$50, Joseph G.
$50, Kenneth H.
$50, Kevin R.
$50, Ludovic S.
$50, Michael D.
$50, Michael J.
$50, Peter S.
$50, Richard A.
$50, Richard B.
$50, Richard G.
$50, Roger U.
$50, Scott D. T.
$50, SEAN B.
$50, Stan S.
$50, Tim M.
$50, Todd S.
$50, Zehua X.
$43, Glenn D.
$42 (2nd donation), Andreas W.
$42, Tim F.
$40 (8th donation), Kenneth R.
$40 (2nd donation), RICK C.
$40, Frank G.
$40, Michel Beaulieu aka “Bazou”
$38 (3rd donation), Martin C. C. aka “Jesus Way Truth Life
$37, Mark J.
$35 (6th donation), P W E.
$35 (3rd donation), Mihai G.
$35, Roger M.
$33, Pablo R. D.
$31 (4th donation), Annie B.
$31, Ingo T.
$31, Jan K.
$31, Michael G.
$31, N/A
$31, Ralph S.
$30 (4th donation), Óscar R.
$30 (4th donation), Pierre S.
$30 (3rd donation), Dale K.
$30 (3rd donation), Rodney S.
$30 (2nd donation), Soner Balkir
$30, Troy W.
$27, Jessica B.
$26 (71st donation), Michael R.
$26, Andre L.
$26, David P. C. aka “AiV”
$26, Karo
$26, Ronny W.
$25 (50th donation), Linux Mint Sverige
$25 (17th donation), Vaughan Butler
$25 (9th donation), Mihnea Rădulescu
$25 (2nd donation), Thomas G.
$25, Bertram J. K.
$25, Craig S.
$25, Dave M.
$25, Rick F.
$25, Ted H.
$25, Theron K.
$24 (4th donation), Robin W.
$24 (2nd donation), Cevad O.
$23, E.G. K. aka “EGKMAN”
$22, Piotr A.
$21 (58th donation), Peter E.
$21 (30th donation), Doriano G. M.
$21 (25th donation), Stefan W.
$21 (20th donation), Benjamin W. aka “UncleBens”
$21 (17th donation), Janne S.
$21 (12th donation), Bernhard L.
$21 (12th donation), Gabriele Bandini aka “GiBi Gab
$21 (9th donation), Kostas M. K.
$21 (8th donation), Liviu B.
$21 (7th donation), Davide P. aka “Dragone2
$21 (7th donation), Thomas D.
$21 (6th donation), Harold H.
$21 (5th donation), Angus J. S.
$21 (5th donation), Kai D.
$21 (5th donation), Kiaran Smyth.
$21 (5th donation), Thomas M.
$21 (5th donation), William H.
$21 (4th donation), Johann K.
$21 (4th donation), Kari H.
$21 (3rd donation), Andrew G.
$21 (3rd donation), Jens R.
$21 (3rd donation), Marjan V.
$21 (3rd donation), Rainer B.
$21 (3rd donation), Sean M.
$21 (2nd donation), Andreas N.
$21 (2nd donation), Curt S.
$21 (2nd donation), Dimitris K.
$21 (2nd donation), Guenther K.
$21 (2nd donation), Heiko Z.
$21 (2nd donation), Michael T.
$21 (2nd donation), Peter B.
$21 (2nd donation), Stavros S.
$21 (2nd donation), Thomas F.
$21, albert P.
$21, Alexander T.
$21, Andrew W.
$21, Birgit B.
$21, Blaise M. B.
$21, Chris F.
$21, Christian E.
$21, Christoph E.
$21, Christophe H.
$21, Daniel A.
$21, David G.
$21, Dieter M.
$21, Dietmar J.
$21, Erika H.
$21, florent L.
$21, Gilles L.
$21, Giulio B.
$21, Jan B.
$21, Jan N.
$21, Jean-Paul W.
$21, Joaquim P.
$21, Johann F.
$21, Jonathan P.
$21, Juan D. B.
$21, Lars L.
$21, M M. K. M.
$21, Marc E. S.
$21, Marcel W.
$21, Marcelino S.
$21, marco C.
$21, mark A. B.
$21, Martin H.
$21, Martin J.
$21, MATHEO F.
$21, Matthias K.
$21, Maxim T.
$21, Michal H.
$21, Nicolas M.
$21, Peter D.
$21, Petr F.
$21, Rafael A. G.
$21, Randall S.
$21, RealizationZone
$21, Risto A.
$21, Sean D.
$21, Sebastian M.
$21, Sonia D. G.
$21, Stefan N.
$21, Theo F.
$21, Thomas M. S.
$21, Thomas W.
$21, Ulrich J. P.
$20 (67th donation), Bryan F.
$20 (46th donation), John D.
$20 (23rd donation), Nigel B.
$20 (18th donation), Dana S.
$20 (14th donation), John W.
$20 (9th donation), Anthony S.
$20 (9th donation), Leopoldo G.
$20 (9th donation), Steve T.
$20 (8th donation), Eric W.
$20 (6th donation), aka “GM46”
$20 (6th donation), Dismas S. aka “Dismas”
$20 (6th donation), Frederick S.
$20 (4th donation), Joe K.
$20 (4th donation), Yordan A.
$20 (3rd donation), Alfred A.
$20 (3rd donation), Raymond R.
$20 (2nd donation), Cosmo F.
$20 (2nd donation), J. T.
$20 (2nd donation), Joe L.
$20 (2nd donation), Rc
$20 (2nd donation), Wladyslaw T.
$20, Advisors Resource Network
$20, Albert C.
$20, Bruce H.
$20, C. C.
$20, Christian J.
$20, Duncan G.
$20, Francis B.
$20, francisco P.
$20, Hugh S.
$20, Irena K.
$20, Isaac B.
$20, Jacob R.
$20, James S.
$20, Jaroslaw R.
$20, John F.
$20, Kenneth D.
$20, Kevin S.
$20, Leoš P.
$20, Lochiel C.
$20, Logan W.
$20, marcus W.
$20, Marek M.
$20, Matthew O.
$20, Michael S.
$20, Niladri G.
$20, Patrick S.
$20, Rodrigo R.
$20, Serge D.
$20, Wesley L.
$16 (2nd donation), Gj F.
$15 (86th donation), Andreas S.
$15 (2nd donation), Thaha J.
$15, Ayush C.
$15, Florian F.
$15, Florian R.
$15, Julia B.
$15, Thorkild Z.
$14 (106th donation), Johann J.
$14 (5th donation), Laszlo F.
$11 (5th donation), Alessandro S.
$11, mohit K.
$10 (109th donation), Thomas C.
$10 (53rd donation), Philip Woodward
$10 (50th donation), Slavoljub aka “slw”
$10 (46th donation), Thomas R.
$10 (36th donation), Tugaleres.com
$10 (33rd donation), Denys G. aka “GD Next
$10 (22nd donation), Dave S.
$10 (19th donation), Slobodan Vrkacevic
$10 (18th donation), Francois B. aka “Makoto
$10 (18th donation), Thevirtua
$10 (16th donation), platypus products
$10 (16th donation), William M.
$10 (15th donation), Roger aka “GNU/Linux werkgroep
$10 (13th donation), RexAlan
$10 (13th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (12th donation), Riverside Retaining Wall
$10 (10th donation), redman
$10 (8th donation), Antonio C.
$10 (7th donation), Alfons B.
$10 (7th donation), Michał K. aka “PoldekPL”
$10 (7th donation), Thomas L. aka “hensys”
$10 (6th donation), Diego A. O.
$10 (6th donation), Jan V. P. aka “putteboem”
$10 (6th donation), John G.
$10 (6th donation), Phil B.
$10 (5th donation), Aleksi L.
$10 (5th donation), Gene E.
$10 (5th donation), Guillaume M.
$10 (5th donation), Miquel S. aka “msolde
$10 (5th donation), Nabil aka “Billy”
$10 (4th donation), Abe Z.
$10 (4th donation), Alessandro B.
$10 (4th donation), Craig D.
$10 (4th donation), Markus L.
$10 (4th donation), Peter B.
$10 (3rd donation), Alfonso M. O.
$10 (3rd donation), Darin aka “mechonster”
$10 (3rd donation), David G.
$10 (3rd donation), Gunnar A.
$10 (3rd donation), Ivan Dukov aka “illis”
$10 (3rd donation), Jay P.
$10 (3rd donation), Steven H.
$10 (3rd donation), Tobias A.
$10 (2nd donation), Andreas G.
$10 (2nd donation), Andreas L.
$10 (2nd donation), Andrew P.
$10 (2nd donation), Arsen T.
$10 (2nd donation), Carsten S.
$10 (2nd donation), Christoph G.
$10 (2nd donation), Christoph Holstein
$10 (2nd donation), Christoph S.
$10 (2nd donation), Gary B.
$10 (2nd donation), Harald F.
$10 (2nd donation), Jakub P.
$10 (2nd donation), John T.
$10 (2nd donation), Jón Ragnarsson
$10 (2nd donation), Joshua G.
$10 (2nd donation), Juan Z.
$10 (2nd donation), Lars D.
$10 (2nd donation), Ricardo J.
$10 (2nd donation), Robert A.
$10 (2nd donation), Thomas R.
$10, ABDULLA ALJEHANI
$10, ABELARDO L. C.
$10, Albert G.
$10, Aldo G.
$10, Alessandro G.
$10, Aliaksei K.
$10, alsh
$10, Antonius B.
$10, Avraam B. B.
$10, Bernd %.
$10, boris K.
$10, Christoph D
$10, Colin S.
$10, Dainius B.
$10, Daniel B.
$10, Daniel R.
$10, Diego Z.
$10, E N.
$10, Elpidio F.
$10, Eva T.
$10, Fabian S.
$10, Fabien O.
$10, FABRIZIO C.
$10, Florian R.
$10, Fr%E9d%E9ric Pepin
$10, Franco M.
$10, Frank R. B.
$10, Gabriele M.
$10, Gerald T.
$10, Gerold H.
$10, Gianluca A.
$10, Gilles T.
$10, Greger T.
$10, Hans V. T.
$10, Hartmut H.
$10, Hiten K.
$10, Howard W.
$10, Iancu C.
$10, Ivar S.
$10, Jaime E. Paillier G aka “Paillier999”
$10, jaime G. L.
$10, James B.
$10, JAMES F.
$10, Jin Xi
$10, Johan W.
$10, Johann L.
$10, Julio B.
$10, Kacper Ch.
$10, Kai D. S.
$10, Kenneth O.
$10, Kenton B.
$10, Kevin W.
$10, Lars K.
$10, Manuel S.
$10, Marco M.
$10, marco P.
$10, mark C.
$10, Markus S.
$10, Martin A.
$10, Martin R.
$10, Matthias H.
$10, MAURO F.
$10, Mauro F.
$10, Mitu M.
$10, Mohamed T.
$10, MR C. C.
$10, NORI I. aka “NORI”
$10, NovaDorium
$10, Octavian I.
$10, Pablo M.
$10, Pedica E.
$10, Petri M.
$10, Philippe D.
$10, Pierpaolo G.
$10, Piotr R. aka “papcio”
$10, Rainer M.
$10, Richard M.
$10, RICHARD W.
$10, Robert C.
$10, Roberto M.
$10, Roy D.
$10, Sasha E.
$10, Sebastian M.
$10, Simone D.
$10, Stefan F.
$10, Stephen R.
$10, SunBaked272
$10, Sven F.
$10, Tamas W.
$10, Tihomir S.
$10, Tim B.
$10, Tim S.
$10, TONY M.
$10, V%E1clav B.
$10, William P.
$10, Yann V.
$7, Alfonso Z.
$7, Walter Z.
$185 from 53 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,590 patrons, for a sum of $4,190 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

2.12.0 released

Par :Jonas

🚀 Features

  • Removed Nostr support (#784) by @spacecowboy in #784
  • Removed Conscrypt library (#789) by @spacecowboy in #789
  • Android 10 (sdk29) is now the oldest supported version (#796) by @spacecowboy in #796

🐛 Bug Fixes & Minor Changes

  • Ensured app is compatible with 16KB page sizes on modern Android devices (#781) by @spacecowboy in #781
  • Update feed URLs based on reported URL in feed (#785) by @spacecowboy in #785

🌐 Translations

  • Updated Japanese translation using Weblate by @larouxn in #765
  • Updated Turkish translation (#783) by @mikropsoft in #783
  • Updated Catalan translation using Weblate by @sf0nt in commit
  • Updated Latvian translation using Weblate by @Coool in #782
  • Changed “API Key” to “API key” (#802) by @GerbillLife in #802

❤️ New Contributors

  • @GerbillLife made their first contribution in #802

The Document Foundation announces LibreOffice 25.2.4

With LibreOffice 24.8 close to end of life, all users are invited to update their free office suite to the latest release

Berlin, 6 June 2025 – The Document Foundation is pleased to announce the release of LibreOffice 25.2.4, the fourth maintenance release of the LibreOffice 25.2 family for Windows (Intel, AMD and ARM), MacOS (Apple Silicon and Intel) and Linux, available for download at https://www.libreoffice.org/download [1].

With LibreOffice 24.8 approaching the end of life, this release – which includes dozens of fixes and enhancements that further improve the suite’s performance, reliability and interoperability – is ready for production environments. We invite all users to update their installation as soon as possible.

LibreOffice 25.2.4 is based on the LibreOffice Technology, which enables the development of desktop, mobile and cloud versions – either from TDF or from the ecosystem – that fully support the two ISO standards for document formats: the open ODF or Open Document Format (ODT, ODS and ODP) and the closed and proprietary Microsoft OOXML (DOCX, XLSX and PPTX).

Products based on the LibreOffice Technology are available for all major desktop operating systems (Windows, macOS, Linux and ChromeOS), mobile platforms (Android and iOS) and the cloud.

For enterprise-class deployments, TDF recommends a LibreOffice Enterprise optimized version from one of the ecosystem companies, with dedicated value-added features and other benefits such as SLAs and security patch backports for three to five years.

English manuals for LibreOffice 25.2 Write, Impress, Draw and Math are available for download at https://books.libreoffice.org/en/. End users can get first-level technical support from volunteers on the user mailing lists and the Ask LibreOffice website: https://ask.libreoffice.org.

Downloading LibreOffice

All available versions of LibreOffice for the desktop can be downloaded from the same website: https://www.libreoffice.org/download/.

LibreOffice users, free software advocates and community members can support The Document Foundation and the LibreOffice project by making a donation: https://www.libreoffice.org/donate.

[1] Fixes in RC1: https://wiki.documentfoundation.org/Releases/25.2.4/RC1. Fixes in RC2: https://wiki.documentfoundation.org/Releases/25.2.4/RC2. Fixes in RC3: https://wiki.documentfoundation.org/Releases/25.2.4/RC3.

Announcing the winners in the Month of LibreOffice, May 2025 – Get your free sticker pack!

Month of LibreOffice stickers

At the beginning of May, we began a new Month of LibreOffice campaign, celebrating community contributions all across the project. We do these every six months – so how many people got sticker packs this time? Check it out…

This is a huge increase over the last campaign, in November, which had 301 winners. So that’s fantastic work, everyone! Hundreds of people, all across the globe, have helped out in our projects and communities. And those are just community contributions, not including the hundreds more from our ecosystem and certified developers!

We’re hugely thankful for the work – and, of course, everyone who’s listed on the wiki page can get a sticker pack, with the stickers shown above.

How to claim

If you see your name (or username) on this page, get in touch! Email mike.saunders@documentfoundation.org with:

  • your name (or username) from the wiki page
  • and your postal address

…and we’ll send you a bunch of stickers for your PC, laptop and other kit. (Note: your address will only be used to post the stickers, and will be deleted immediately afterwards.) If you contributed to the project in May but you’re not on the wiki page, please let us know what you did, so that we can add you!

There is one more thing…

And we have an extra bonus: ten contributors have also been selected at random to get an extra piece of merchandise – a LibreOffice hoodie, T-shirt, rucksack or snazzy glass mug. Here are the winners (names or usernames) – we’ll get in touch personally with the details:

  • Takenori Yasuda
  • koyotak
  • Andrew Kopf
  • HiTom
  • bantoniof
  • Dominick
  • Jeremy Norvell
  • skyandrews
  • Johan van der Knijff
  • Yashodhan Sawardekar

Congratulations to all the winners, and a big thanks once again to everyone who took part – your contributions keep the LibreOffice project strong. We plan to have another Month of LibreOffice in November, but everyone is welcome to see what they can do for LibreOffice at any time!

LibreOffice Podcast, Episode #3 – Quality Assurance (QA) in Free and Open Source Software

Xisco Fauli, Ilmari Lauhakangas and Mike Saunders from The Document Foundation, the non-profit organisation behind LibreOffice, discuss Quality Assurance (QA) in free and open source software . (This video is also available on PeerTube.)

Please confirm that you want to play a YouTube video. By accepting, you will be accessing content from YouTube, a service provided by an external third party.

YouTube privacy policy

If you accept this notice, your choice will be saved and the page will refresh.

FreshRSS 1.26.3

Par :Alkarex

This is a bug-fix release for FreshRSS 1.26.x

A few highlights ✨:

  • Keep sort and order criteria during navigation
  • Implement loading spinner for marking as favourite/read
  • Many bug fixes

This release has been made by @Alkarex, @Inverle and newcomers @CarelessCaution, @the7thNightmare

Full changelog:

  • Features
    • Keep sort and order criteria during navigation #7585
    • Add info about PDO::ATTR_CLIENT_VERSION (relevant for MySQL / MariaDB with obsolete driver) #7591
  • Bug fixing
    • Fix SQL request for user labels with custom sort (affecting PostgreSQL) #7588
    • Fix regression for favicon in GReader and Fever APIs #7573
    • Fix newest articles (within last second) not shown #7577
    • Fix duplicate HTTP header for POST #7556
    • Fix important articles on reader view #7602
    • Fix remove last share method #7613
    • Fix API handling of default category #7610
    • Fix user self-deletion #7626
    • Move PHP minimum version check #7560
  • Security
    • Fix encoding of themes #7565
    • Fix .htaccess.dist for access to /scripts/vendor/ #7598
  • SimplePie
    • Strip more HTML deprecated styles attributes: bgcolor, text, background, link, alink, vlink #7606
  • UI
    • Implement loading spinner for marking as favourite/read #7564
    • Provide theme class for CSS #7559
  • Deployment
    • Use HTTP Cache-Control: immutable for some files #7552
    • Drop Apache 2.2 (only support Apache 2.4+) #7561
  • I18n
  • Misc.

LibreOffice project and community recap: May 2025

Brazilian LibreOffice Community at FLISOL Brasilia 2025

Here’s our summary of updates, events and activities in the LibreOffice project in the last four weeks – click the links to learn more…

  • We started May with a new Month of LibreOffice campaign! This is something we do every six months, to say thank you to contributors and encourage more people to join our project. We’ll post the final results here very soon…

Month of LibreOffice banner

LibreOffice guidebook covers

Brazilian LibreOffice Community at FLISOL Brasilia 2025

  • This year’s LibreOffice Conference will take place in Budapest from 4 – 6 September, and the call for papers is now open. Submit a talk, and we hope to seeing you there!

Photo of Budapest at night

  • On May 8, we announced LibreOffice 24.8.7, the seventh and last minor release of the LibreOffice 24.8 family. After this, all users are strongly recommended to upgrade to the LibreOffice 25.2 branch.

LibreOffice 24.8 banner

Open Document Format logo

GSoC logo

Keep in touch – follow us on Mastodon, Bluesky, X (formerly Twitter), Reddit and Facebook. Like what we do? Support our community with a donation – or join our community and help to make LibreOffice even better!

Inkscape Summit in Nuremberg

From May 24-28, 2025, we hosted an Inkscape Summit in Nuremberg, Germany, just before this year's Libre Graphics Meeting. With 14 on-site participants, 2 remote participants and 3 external guests (Cedric, Elisa and Tiar), this was Inkscape's largest physical event yet, and a good sign the project is healthy and growing. 

While we also got a fair amount of code done - 33 merge requests were opened over the course of the summit by its participants - the focus of this summit was on strategic planning and team discussions. 

On Sunday, the team visited the ZAM Erlangen makerspace to observe and try out what Inkscape is used for in the wild. We had fun stitching logos, lasercutting coasters, or drawing on eggs with an EggBot. 

Inkscape team members observe an egg being decorated by an Inkscape-operated EggBot at ZAM Erlangen
Inkscape team members observe an egg being decorated by an Inkscape-operated EggBot at ZAM Erlangen

This event was made possible with community funds, i.e. your donations. Thanks for your generous support! 

Below is an account of the meetings we had during the summit. Many of those pointed to strategic improvements in the project's direction. Help with these is greatly appreciated - if you want to contribute towards any of them, do get in touch!

Future of Live Path Effects

Marc proposed a redesign of the Live Path Effect system. In short, the proposal aims to enable procedural, non-destructive effects in Inkscape, with inspiration drawn from Blender's geometry nodes and Graphite. This would enable many workflows which now need either scripting (extensions) or are impossible to achieve, and make the entire path effect system much more robust. 

The custom additions to the SVG file format would be designed and specified, code sprawl of LPE-related code reduced and test coverage increased. 

We agreed on a set of changes for a prototype of this system.

UX Quality Initiative

Henrique presented his UX research; in dozens of hours of work, he had categorized all UX / UI related issues in our bugtrackers and localized areas most in need of attention. 

During the summit, a team consisting of ltlnx, Yoti, Adam and Henrique condensed it into a proposal to hire a UX designer and a developer as contractors; after a period of UX studies, the designer would come up with actionable changes and the developer would implement them. This proposal will be iterated upon and then be submitted for a vote to the Project Leadership Committee (PLC).

Roadmap / Project Priorities Working Group

Martin presented a proposal to form a Roadmap Working Group. This group would comprise of representatives from all of the project's subgroup, and its task would be to maintain a list of priority areas in the project (without explicitly promising them to users). 

This list would then inform decisions such as hiring and project selection for Google Summer of Code or Outreachy; it could also serve as guidance for contributors looking for inspiration. 

While the team maintained that we are in no position to attach dates to the roadmap, such a working group would be useful as a forum, and would tie in well with other initiatives, such as the Grants program. 

Martin plans to finish up the proposal and submit it for a vote soon.

Quality assurance

Despite a small number of automated tests that check against regressions in the Inkscape code, most of our test coverage is proved by manual user testing. 

Rafał presented his recent work towards improving the quality and stability of Inkscape by providing a good infrastructure for unit testing, in particular by providing a solid CMake infrastructure, mock objects and example unit tests. 

Good unit testing will become a focus in our code review process.

Steam Release

Our guest Tiar from the Krita team presented to us how Krita successfully released on Steam, and how they generate a significant amount of revenue from this channel. She showed us the most important rules for a successful Steam launch: from number of Wishlist items to Daily Deal, from discounts to the importance of good screenshots. 

The Inkscape PLC had recently decided to enable a Steam release; the necessary paperwork is currently under review by the SFC, our fiscal host. Vaibhav will coordinate the process of releasing on Steam.

Developer Documentation

Our developer documentation is currently spread around in many places: some is on the main website (with outdated translations), some is in the Wiki, some in the git repository. 

We formulated our requirements for the documentation and decided to migrate it in the main repository (except for short-lived or work-in-progress). Outdated Wiki information will be removed. Max already made progress towards this by moving our build instructions to git. 

Selected parts of the documentation may be auto-deployed to inkscape.org. Unfortunately we had to disable indexing of most of our website because AI crawlers quickly overwhelm it otherwise, so the last word on documentation remains to be spoken.

Node tool improvements

Rafał presented his plans to refactor the node tool with a number of architectural changes of the backend. These changes will not be visible to uses at first except for some outstanding bugfixes, but will enable better control of path-like objects in the long run - from his work on manipulating arc segments to control points for B-Splines, Spiro curves or κ-curves.

Extension packaging

Triggered by Mario's experience of maintaining a large set of extensions (MightyScape), we discussed how to make the process of packaging, submitting, reviewing and presenting an extension more efficient and transparent. Drawing inspirations from projects like OctoPrint and Typst, which have a healthy extension ecosystem around them, we came up with a process that now needs to be discussed with other extension stakeholders and finally implemented.

Finishing up the GTK4 migration & releasing Inkscape 1.5

In the last year, Inkscape has successfully migrated to GTK4, and the GTK4 version (master) has become the basis for all other development work. 

Nevertheless, there is a number of outstanding problems, especially on Windows and macOS. Many of those issues require fixes in the upstream GTK framework. 

During the summit, Jonathan, PBS and ltlnx came up with a proposal to hire contractors - both from within the Inkscape project and outside GTK experts - to finish up the work, targeting a 1.5 release early next year. 

A photo of the Inkscape Summit participants in front of the venue (Youth Hostel Nuremberg, Germany)
The 2025 Inkscape Summit Nuremberg particpants in front of the venue (Youth Hostel Nuremberg, Germany).

After the summit

Most of the team will stay for the Libre Graphics Meeting, held directly afterwards in Nuremberg, which even features two Inkscape-related presentations: Henrique will again present his UX initiative, and Daniel Schneider will give a talk about InkStitch. Looking forward to the next Inkscape meeting! 

Adam, Henrique, Ishaan, Jonathan, KrIr17, ltlnx, Marc, Mario, Martin, Max, Mike, PBS, Rafał, Tavmjong, Vaibhav and Yoti

 

LibreOffice Design team work in 2024 – TDF’s Annual Report

LibreOffice comment styles

Design has been one of the major focus points of LibreOffice in recent years. The design/UX community has continued to support QA by evaluating user reports on Bugzilla, helping development with mockups, and mentoring volunteers and students in different projects.

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

Besides a large number of fixed issues on macOS thanks to Patrick Luby, and continuous work on the Navigator by Jim Raykowski, we had many more improvements – here is just a small selection:

Improvements in LibreOffice 24.2

The column/row for active cells can be highlighted in Calc (implemented by Sahil Gautam)

Active cell highlighting in LibreOffice Calc

Tools ▸ Options was complemented by a search feature (Bayram Çiçek)

Comment styles were introduced for quick and consistent formatting of all comments (Maxim Monastirsky) (depicted in the screenshot at the top of this post)

Improvements in LibreOffice 24.8

Bundled templates were refactored with localized placeholders (Laurent Balland)

New “Quick Find” deck in the Sidebar, which lists the search results along with their context (Khushi Gautam)

Quick Find deck in LibreOffice Sidebar

Formatting characters are now treated independently from fields and do not toggle with non-printable characters (Heiko Tietze)

“Keep Ratio” settings in the Position and Size dialogs are more intuitive now with a lock symbol and reference lines (Heiko Tietze)

Hovering over a layer’s tab in Draw highlights the objects it contains (Jim Raykowski)

Among many other improvements to the Basic IDE, a dialog was added that allows users to pick one of six syntax highlighting colour schemes (Rafael Lima)

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

ODF and proprietary formats: a comparison

When we create or share a document – whether a simple text, complex spreadsheet or professional presentation – we make a choice that goes far beyond the file extension. This is because the format gives us, or takes away, control over the content.

This post compares the Open Document Format (ODF) with proprietary formats such as DOCX, XLSX and PPTX. The comparison is not just about compatibility, but also about freedom, security, costs, transparency, and our long-term digital future.

We have already discussed ODF, and we will continue to do so until its 10th anniversary as an ISO/IEC standard in May 2026, because it is the only open standard available to users. We hope that an increasing number of users will understand how important it is for them to use it to have complete and lasting control over the content they have created, i.e. for their digital freedom, rather than for those of us who support it.
ODF is the native format of LibreOffice and other programmes that use the LibreOffice Technology platform. These programmes offer the same functionality, flexibility, security, robustness and interoperability as applications that promote proprietary formats, but without the lock-in strategy.

Incidentally, even so-called open-source applications (read their AGPL licence to understand why we say “so-called”) handle documents in ODF format, yet continue to promote their own formats, preventing users from having full control over their content – because this would jeopardise their business strategy.

So, what are proprietary formats?

They are developed and controlled by a single company and are typically only fully supported within that company’s ecosystem. Common examples include .docx, .xlsx and .pptx (Microsoft), as well as .pages, .numbers and .key (Apple) and .gdoc, .gsheet and .gslides (Google). While the specifications for these formats may be public, this does not mean they are completely open, as support is always limited by what the provider allows or documents, and is dictated by their commercial strategies.

Comparison between ODF and proprietary formats

1. Control and vendor lock-in

ODF

  • Completely open and standardised
  • Anyone can implement or use it without legal restrictions
  • The user, not the software provider, controls the documents

Proprietary formats

  • Designed and controlled by a single provider
  • File characteristics and behaviour may change without notice
  • Users are often forced to update their software in order to access their documents

Example: If Microsoft changes how DOCX handles embedded fonts or custom styles, users of older versions of Microsoft software or compatible applications may have difficulty viewing or reading files.

2. Interoperability and compatibility

ODF

  • Designed with interoperability in mind
  • Promotes consistency in formatting and behaviour across different platforms and software
  • Facilitates the development of a multi-vendor ecosystem

Proprietary formats

  • Optimised for performance within the vendor’s software
  • Third-party implementations often encounter compatibility issues
  • File rendering may vary depending on the platform, particularly for advanced formatting

Example: A spreadsheet with complex macros in .xlsx format that works correctly with Excel may not work, or may lose functionality, when used with LibreOffice Calc or Google Sheets.

3. Transparency and trust

ODF

  • The format is documented, and matches the documentation
  • Data storage is also documented, and users control their files’ location
  • There are no secrets or hidden metadata, and the XML file is user readable

Proprietary formats

  • They may contain undocumented metadata or behaviour, and the XML file is not user readable
  • The complex and opaque structure of the files can create security issues, and files’ location is not controlled by the user
  • It is not always clear what information is embedded (e.g. edit history and comments)

Example: a DOCX file may contain residual metadata, such as the names of authors, the date and time of changes, and comments, even after they have been removed.

4. Digital preservation and long-term access

ODF

  • Designed for compatibility, interoperability, and long-term archiving
  • Recommended by governments (UK, Taiwan, the Netherlands and France) and supranational organisations (EU, NATO)
  • Open and future-proof, with regular updates from a known Technical Committee overseen by OASIS

Proprietary formats

  • Risk of format obsolescence (remember .doc, .wps and .wpd?)
  • Require specific software versions to access older files

Example: a government archive using ODF can be confident that it will still be able to access documents in 20 years’ time, while this is not guaranteed by proprietary formats, which are closely linked to the lifecycles of corporate products.

5. Public sector and legal obligations

Governments and institutions around the world should switch to open standards to ensure data sovereignty and reduce dependence on specific suppliers.

  • The UK, Germany, the Netherlands and Taiwan have all launched initiatives to promote ODF
  • The European Union’s open-source strategy recommends using ODF in all public administrations
  • Italy’s Digital Administration Code supports open formats for public documents to ensure long-term accessibility

Why? Because public data should be open and accessible, not locked behind corporate paywalls or licence terms.

6. Costs and licences

ODF

  • Free to use and implement
  • No licence fees, subscription costs or vendor lock-in

Proprietary formats

  • Almost always tied to paid software (e.g. Microsoft 365)
  • In some cases, access requires a cloud account and/or an active subscription
  • There are often restrictions on redistribution and format conversion

Example: If a school switches from Microsoft Office to LibreOffice and adopts the OpenDocument Format (ODF), it can save thousands of euros in licence costs without sacrificing functionality for students.

7. Innovation and community support

ODF

  • Developed transparently by a global community
  • Supported by several applications, both open source and proprietary
  • Open to improvements by anyone, under the Technical Committee overview

Proprietary formats

  • Innovation is centralised and constrained by the company roadmap, and development is closed and not transparent
  • Feature priorities are determined by revenue, and not by user needs

Example: Users can propose new features for ODF, contribute code, and fund development, all without having to wait for the company’s priorities to align with their own.

Conclusion: Why ODF matters

The choice of ODF is not linked to ideology or politics. It is a choice that offers users significant practical benefits: complete control over their data; independence from a single company’s tools, strategies and business model; the ability to access and share documents more reliably on any hardware platform or operating system; and support for an ecosystem where open standards drive progress rather than profit margins. ODF stands for transparency, freedom, and openness to the future. Try it, it’s easy and doesn’t cost anything. Download LibreOffice and you’re done.

LibreOffice Native Language Projects – TDF’s Annual Report 2024

TDF Annual Report 2024 banner

By helping to translate and market LibreOffice around the world, native language projects bring enthusiasm and passion to the global community. Here’s what they did in 2024…

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

Armenian

In 2024, the Armenian translation of LibreOffice reached 100% thanks to the efforts of Tigran Zargaryan. The suite was offered in Armenian for the first time. In addition, he ensured that the strings in the LibreOffice UI-master, website, Android Viewer and Help also reached 100% translated.

In appreciation for Tigran’s work, TDF invited him to join the LibreOffice Conference 2024 in Luxembourg using the foundation’s travel support programme.

LibreOffice user interface in Armenian

Czech

Throughout the year, Czech speakers worked on keeping the translation of LibreOffice’s UI complete, and the Help content around 95%. They presented the software at booths at two events: InstallFest in Prague in April, and LinuxDays in Prague in October.

They supported LibreOffice users on the Czech Ask site, and maintained social media accounts including X (Twitter), Facebook and Instagram. They also introduced a new Mastodon account.

Czech speakers produced many translated user guides in 2024, including the Getting Started Guide 24.8, Writer Guide 24.2 and Impress guide 7.5. And throughout the year they maintained the Czech LibreOffice website.

LibreOffice booth at LinuxDays 2024 in Prague

Danish

Speakers of Danish brought the user interface translation of LibreOffice up to 100%, while the Help content approached 100% (that goal was finally reached two months into 2025). They also translated the subtitles for LibreOffice videos covering features in new major releases.

Dutch

Dutch-speaking community members supported users by answering questions on the Ask LibreOffice website and mailing lists. They also translated the following guidebooks: the Calc Guide for LibreOffice 7.6 (translated and published in January); the Writer Guide for LibreOffice 24.2 (March); the Calc Guide for LibreOffice 24.2 (June); the Draw guide for LibreOffice 24.2 (July); the Impress Guide for LibreOffice 24.2 (July); the Getting Started Guide for LibreOffice 24.2 (August); the Impress Guide for LibreOffice 24.8 (October); the Draw Guide for LibreOffice 24.8 (December); the Writer Guide for LibreOffice 24.8 (December); and the Math Guide for LibreOffice 24.8 (December).

On Weblate, the community managed to keep up with the changes of the UI, maintaining it at 100% translated. Although the Help content kept growing they were able to maintain it at 100% translated.

Community members also set up a stand at the NLLGG in May 2024 – a conference of the Dutch Linux community. There, LibreOffice users could obtain information and ask questions about LibreOffice, whether or not in conjunction with a Linux operating system.

They also had a stand at the LocHal open source event in November 202 – another conference of the Dutch Linux community.

Finnish

There was ongoing translation of the LibreOffice user interface and (to a lesser extent) Help, along with ongoing recruitment of volunteers on the vapaaehtoistyo.fi online platform. In addition, there was translation of the upcoming LibreOffice website redesign.

LibreOffice on vapaaehtoistyo

French

Thanks to the French-speaking community, translations on Weblate were maintained at 100% for all versions of LibreOffice. There were also other translations: the new website (based on Hugo); Calc functions on the wiki; press releases and video subtitles for LibreOffice “New Features” videos; and release notes for all versions.

In terms of events, community members were present at Capitole du Libre (Toulouse) and Open Source Experience (Paris). There was also coordination with UBO University for LibreOffice guidebook translations by translator students.

German

In terms of translations and documentation, the German-speaking community continued their work on Weblate by translating LibreOffice’s user interface and Help content. They also translated the release notes for major updates of the software, blog posts from TDF’s English blog, and published videos in German showing and explaining various features in LibreOffice. In addition the German community updated the Base Guide for versions 24.2 and 24.8.

Development continued on the XRechnungs-Extension for the new German legal requirements (which became effective in January 2025).

Members of the German-speaking community attended various events throughout the year to promote LibreOffice and encourage more people to join the project, such as the Univention Summit 2024 in January, Chemnitz Linux Days 2024 in March, FrOSCon in August and 38c3 in December.

Finally, the community helped to raise awareness of the ongoing migration of 30,000 PCs to LibreOffice in the northern German state of Schleswig-Holstein.

LibreOffice at FrOSCon

Japanese

The Japanese community had its local annual conference, LibreOffice Kaigi 2024 Online – which they reported about on their blog.

There were also Online Study Parties, held twice, where users shared knowledge and interacted with each other. And then there were 44 online hackfests throughout the year, where participants worked together in the community to make progress on tasks and transfer skills. They mainly checked the Japanese Ask LibreOffice website and tried to answer questions, but also did some UI translation, and occasionally bug triaging and bug reporting. All online events were held on Jitsi and streamed live on YouTube.

Meanwhile, there were in-person events every month in Awaji, Osaka City. They were held jointly with Open Awaji, an event themed around open data and the movement to open cities. Other activities at events included having booths and open source conferences (Osaka, Tokyo, Nagoya, Hiroshima, Tokyo, and Fukuoka). There was also the Kansai Open Forum 2024, an event for open source and IT communities in the Kansai region that has been held annually since 2002. Attendees talked about LibreOffice.

Japanese community members participated in the LibreOffice Asia Conference 2024 and COSCUP (Taiwan), along with the openSUSE.Asia Summit 2024 (Tokyo).

Six people from Japan participated in the LibreOffice Asia Conference 2024 in Taipei, two of whom gave joint presentations. Many members of the FLOSS community outside of the LibreOffice project who participated in COSCUP also attended the LibreOffice Community Party.

In terms of translations into Japanese, the user interface was 93% complete, and Help content 48% complete. There were also guidebook translations (Writer, Calc etc.) – Meguro-san translated using TexTra, a machine translation service provided by NICT, a Japanese government research institute.

On Japanese Ask LibreOffice, 101 questions or comments were added in 2024, while on the blog, community members posted 19 articles; these mainly consisted of translating the English TDF blog, especially the release announcements. And finally, on social media, the Japanese LibreOffice X (Twitter) account had: 2936 followers and 65 posts, while on Facebook there were: 624 followers and 23 posts. The Japanese community has created a Bluesky account but has not yet started using it fully.

LibreOffice Kaigi 2024 - Screenshot of online session

Norwegian – Nynorsk

The Nyorsk project is led by one translator (Kolbjørn Stuestøl) who has maintained the user interface and Help content translations for LibreOffice at 100%.

Portuguese (Brazil)

One of the community’s key achievements was the publication of the Guia do Writer 7.6, a fully revised Portuguese translation of the Writer Guide 7.6, initially generated through machine translation and then carefully edited for linguistic accuracy and style. To streamline future translation efforts, the community launched a GitHub project utilizing the OmegaT computer-assisted translation tool, which integrates machine translation to reduce rework and improve quality control.

The local team — Tim Brennan, Tulio Macedo, and Olivier Hallot — successfully completed the full translation of both the user interface and Help content into Brazilian Portuguese. Rafael Lima contributed significantly by enhancing the Operations Research tools, commonly known as “Solver,” making them fully functional.

Weekly community meetings were held every Wednesday at 21:00 local time, providing a space to discuss all aspects of the LibreOffice environment and stay updated on developments from TDF.

The community also revamped the announcements for LibreOffice versions 24.2 and 24.8 with multimedia content tailored for Brazilian social media platforms, greatly expanding their reach — an effort led by Eliane Domingos.

Support and engagement remained strong across multiple channels, including active participation in the Brazilian Portuguese section of the Ask LibreOffice forum, two dedicated Telegram groups, Facebook and Instagram communities, and the ongoing translation of wiki pages, with notable contributions from Diego.

LibreOffice social media image in Brazilian Portuguese

Spanish

Spanish speakers worked on updating their translation of the LibreOffice Base tutorial book (by Mariano Casanova), reaching 80% translation status. 31 articles were published on the Spanish blog, and community members worked on updating the LibreOffice UI translation (99%) and Help content (around 80%). They also published various guidebooks: Draw Guide 7.6 (in ODT, PDF and HTML formats); Calc Guide 7.5 (in ODT, PDF and HTML formats); and the Math Guide 7.3 (in HTML format).

Tagalog

The LibreOffice Tagalog localization project was relaunched in April 2024 after it was discovered that a previous effort had been abandoned years earlier. Motivated by the opportunity to complete the project for the benefit of both the global and local community, a new initiative was launched with the goal of finishing the translation within a year.

Working closely with the LibreOffice localisation support community, the project followed a consistent schedule of weekly and monthly progress updates. A key focus was integrating and automating translations using three different AI language tools, which included implementing verification processes, suggestions, and comments to ensure quality.

Technical workflows were developed to compile developer edition translations on a bi-weekly basis using Linux Mint, with results verified and shared through best practices posts on a US-based technology blog. The project also drew on the support of Filipino relatives to better understand and incorporate the nuances of various Filipino dialects, enhancing translation accuracy and cultural relevance.

The translation work was completed ahead of schedule in January 2025 – four months earlier than planned. Fine-tuning continued with the help of the l10n support team to correct inaccuracies, particularly in the LibreOffice menus. (The screenshot below shows TDF’s Weblate instance being used to translate LibreOffice into Tagalog.)

In a further step toward community impact, the project began outreach to local contacts in Manila to share tools and methods used in the localization process, aiming to support similar efforts in K–12 education and non-profit business software across the Philippines.

Weblate interface showing LibreOffice being translated into Tagalog

Thank you to everyone

These are just some of the native language projects in the LibreOffice community, who provided summaries for the Annual Report. But there are many more – so we at The Document Foundation would like to say a huge thank you to everyone who in the native language communities. Your work makes LibreOffice accessible to hundreds of millions of people around the world, and your passion is wonderful. Thank you so much!

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

2-in-1 release – Inkscape 1.4.2 is out!

Draw your world by Kess Marks, CC-By-SA 4.0

The first minor release since Inkscape 1.4 is here!

No worries, you didn't miss 1.4.1! Due to a signficant bug that was only discovered shortly before its planned release, 1.4.1 has been merged with 1.4.2. 

With lots of fixes, some smaller improvements and even a few new features around file format support, we believe it was well worth the wait.

Here's a summary of what to expect from the new release:

  • A new splash screen, providing a visual cue while Inkscape loads in the background
  • Initial support for importing Vectornator / Linearity Curve files
  • A new extension to Clean up Paths
  • Substantially improved Affinity Designer files (.afdesign) import
  • 20 crash/freeze fixes, many of which affected PDF import
  • more than 50 other bug fixes and small improvements, including improvements to Boolean operations, layer selection, minimal window width and restoration of Spray tool buttons' functionality
  • and 15 updated translations!

For more detailed information on the changes in version 1.4.2 available in the release notes.

Again, thanks to all Inkscape users and contributors for their support in identifying and flagging these critical issues for us through sending bug reports for our volunteer developers to examine and solve.

Should you experience an issue while using Inkscape, please let us know! We've put together a step-by-step video to help you post your first bug reports on Gitlab.

Built with the power of a team of mostly volunteers, this open source vector graphics editor represents the combined efforts, passion and work of many hearts and hands from around the world, ensuring that Inkscape remains available free for everyone to download and enjoy.

If you'd like to contribute to the project, you are more than welcome in our project's global community! You'll find the list of ways to connect with us here.

You can also help Inkscape to stay alive and evolve by making a donation.

Get Inkscape 1.4.2 for Linux, Windows or macOS!

Draw Freely.

Inkscape Summit Frankfurt 2025

For the past few days, 7 Inkscape Members met up in Frankfurt, Germany to collaborate on various projects and get to know each other.

We were especially delighted to have two InkStitch maintainers, a major downstream project of Inkscape, join us. This way, we got to learn about the struggles and worries of projects using Inkscape better, and even built a new capability for extensions to interact with Inkscape during the event.

Marc, our release manager, cleared out our merge request backlog, reviewing and merging various contributions. He also set up a new web-based translation service, so that translators don't have to learn how to use git, and we hopefully see better Inkscape translations in many languages. He also collaborated with Vaibhav on getting the handles behave well when editing Text to Path.

Jonathan, extensions maintainer, enabled Inkscape to tell extensions in real-time about changes in the document (merge request), and even update the document in return. The new system works on all major platforms. This feature was requested by our InkStitch friends, who will use it to build a preview of the stitch pattern while the user is working on the document. Variations of this feature were often requested by extension authors, so we're excited what the community will use it for!

Tav was working on delivering color font support, and helped Martin and Vaibhav with a wide variety of text-related problems.

Martin wasn't able to attend in-person, but did join via Video Chat to work on PDF support and help answering questions with other people in Frankfurt. He got up at 3am his time to attend!

Ravi is one of our GSoC students from 2024, and we're happy that we got to know him better & to integrate him into our team! He is still working on the node-based filter editor, his GSoC project (merge request), and is hopefully finished soon.

Vaibhav also is a former GSoC student, but is contributing regularly since. He is currently working on improving Text on Path (merge request). Thanks to his work during the Summit, Text on Path now loops around on closed paths (an SVG2 feature)  and has correct and intuitive handle movement.

Kaalleen, InkStitch maintainer, helped us understand their packaging process and helped shape the direction of development on the extensions environment. Apart from that, she worked on various InkStitch issues, including support for long-arm quilting machines. Also, she gifted all of us beautiful bags with the 1.4 About screen stitched on (she also has a tutorial for this on the InkStitch website).

 

The beautiful embroidery Kaalleen gifted to the other participants (from the InkStitch Website).

After 3 days full of coding and enlightening conversations, we now take home with new ideas in our luggage, and look forward to the next meeting - May 2025 in Nuremberg, just before LGM.

The 7 participants of the Frankfurt Summit.

Inkscape at 21 is growing up and getting organized

Flourishing Inkscape by Sreya Saju, CC-By-SA 4.0

 

November 6, 2024, marks the end of the 20th anniversary year for the Inkscape project, and the beginning of a new decade of adventure. There were a few milestones this past year, among them an informal global celebration, a bug-fix program, an About Screen Contest, an Inkscape Summit, a summer of code, and the launch of version 1.4.

Here’s a brief look at some of those milestones:

Bringing contributors from around the world together in real time online

Looking back over the past year, our 20th anniversary got off to an active start with an online anniversary party in November 2023, where users and contributors gathered over the span of several time zones to welcome guests who shared their passion for Inkscape, their art, and discussed how and why they contribute to the project. The world showed up to hang out and filled us all with pride to be part of this open source community.

From there, things moved quickly with preparations for version 1.4 and all the elements that come together before the annual version release.

Inkscape’s 1.4 About Screen Contest

Preparations for the popular About Screen Contest began early in the year, setting up the voting space and rallying contributors to organize the promotion and review of contest entries. The winning entry was featured in the 1.4 release that launched in the Fall of 2024. If you’re curious about the contest, feel free to check out the rules and history of this tradition.

Inkscape’s Contributor Blog

Some of our developers, especially those who are paid by the project (i.e. from your donations), publish articles about their work in our Contributor Blog, which can be found on the web site under the News tab. Among the blog posts include ones the progress made on our Bug Accelerator program, the Adobe Illustrator File import project, and the GTK4 migration work. You can find the posts through to Spring 2024 online.

Inkscape Summit 2024 in Rennes, France!

We had a great Inkscape Summit in Rennes, France, in May 2024. Our three-day meeting was well attended and offered an opportunity for developers and a couple of other contributors to meet, work, and discuss the future of the project. A member of the SFC was in attendance and participants had a chance to exchange with a representative from the Open Document Project, too, on open source projects.

Learning to Code through Contributing to Inkscape

Inkscape developers continued the longstanding tradition of participating in the Google Summer of Code (GSOC) program, which enables people new to open source projects and students to learn about software development and gain experience within a project environment. Several Inkscape developers mentored three students in 2024, one of whom is still working hard. If you’re curious to know what these students accomplished, their code journeys can be found on the GSOC site.

When it comes to the software itself, Inkscape has been embarking on big changes that will span a couple of future versions, specifically the transition to GTK4. This year marked a big milestone as the master branch was successfully migrated to the new code base. Also in the works is the future of CMYK color inside of Inkscape, though there is no final date set yet for integrating a system.

Inkscape Monthly Art Challenges

This past year has seen regular monthly Inkscape Challenges in the forum, posted on social media channels, to encourage Inkscape artists to share their work and learn new skills. From easy to intermediate projects to challenge your Inkscape skills, there’s something for everyone who is curious to learn. These challenges, along with the many opportunities to learn and collaborate within the project, have helped to bring new contributors to the table, too. You’ll find plenty of art to enjoy in the project’s forums!

Looking at Possible Futures for the Project

In October, an informal discussion was held among contributors to look at the possibilities of taking the  project in a new direction in the future. As with some other open source projects in the past, Inkscape is seeking to grow and explore possible futures, including being an independent organization. While there are no immediate plans to move from SFC, the discussion led to contributors beginning to imagine what Inkscape might look like three years down the road. At 21, it’s time to consider the possible bright futures ahead.

For now, we would like to say a big thank you to all of you, Inkscape users, contributors, and supporters. It’s in working together that this software program continues to develop and grow.

Curious to know what contributing to Inkscape might bring to your world? Get in touch!

In the meantime, enjoy using Inkscape, a professional quality vector graphics software on your Linux, Mac OS X and / or Windows desktop computers.

Draw Freely.

Inkscape’s 20th Anniversary

On November 18, 2023, the Inkscape project celebrated its 20th anniversary.

The anniversary celebration was an online get-together of Inkscape users and contributors.

This was an initiative by the Vectors team and the intention was to bring Inkscape users and contributors together to celebrate 20 years of Inkscape.

Inkscape is used by people around the world. To accommodate that, two sessions were organized in different time zones. The first session was scheduled at 12:00 UTC for folks from regions like Eastern North America, Europe, India, & Indonesia. The second session started at 18:00 UTC for other regions, including Oceania.

The attendees were invited to share their approximate location in the world so that we could “map” the Inkscape community that came together to celebrate the anniversary. The interactive map can be viewed online. It is a beautiful souvenir of Inkscape’s global reach.

 

Map of attendees of Anniversary Celebration in November 2023
Map of attendees of Anniversary Celebration in November 2023

The larger Inkscape community also sent birthday wishes which were read during the sessions. An interactive slideshow of the wishes is available on Gitlab.

These sessions featured interviews from people in the Inkscape community. The interviewers asked guests about their Inkscape journey, how they discovered Inkscape, what they liked most about using Inkscape, among other questions. Guests answered that they use Inkscape for various things, some of them being designing board games, a children’s book for their loved ones, doing professional design work. One guest said they loved the feeling of freedom when designing with Inkscape. Another guest wanted a free vector graphics application, they stumbled upon Inkscape and found a bug. After reporting it, they ended up eventually contributing translations for their language.

After the interview ended, the room was opened to the chat so that people could ask the guests questions. The sessions went well over time as those in attendance wanted to keep the great Inkscape party going.

You can get involved with the Inkscape project, too, and help make the next 20 years even greater!

Inkscape launches version 1.4, with powerful new accessible and customizable features

After months of waiting, we are finally ready to unbox the latest version of Inkscape... meet 1.4, the Geek edition, where accessibility and customization reign.

Inkscape project developers, most of them volunteer contributors from countries around the world, have been plugging away behind the scenes on new features, improving current ones, bug fixes and setting the stage for the arrival of GTK 4.

Let’s dig into some of the new and improved features that enable more customization and better accessibility in Inkscape in a cool, geeky sort of way. Inkscape Power Users, this one’s for you!

Filter Gallery Dialog

The Inkscape 1.4 Filter Gallery dialog is your new entry point into the world of filters. Head to the Filters menu to find it and your favorites more easily, with previews by category or by typing key words in the search bar. This includes those custom filters you’ve added – look for them in the Personal category. Accessibility features here include the ability to change the size of the preview of thumbnails.

The Filter Gallery with previews and search
The Filter Gallery with previews and search

Modular Grids

For those of you seeking the ultimate in symmetry and accuracy, you’ll find the new grid selector buttons a quicker, more visual way of identifying your grid of choice. For the new modular grids, you can adjust plenty of grid parameters separately, from height and width to horizontal and vertical gaps – including adjustments at the grid module (rectangle) level. Enable this option by heading to document properties.

Example of a modular
Example of a modular grid

Swatches Dialog

Inkscape’s Swatches dialog has a fresh new face. It now includes a drop-down menu with previews of color palettes. You can display them with their colors’ names as a list or a grid. For Power Users, you can now increase the tile size, too. Search for your custom swatches, or those of your customers, too. Import palettes from the dialog, including those from Adobe Color Book that use CIELAB colours, while support for those with CMYK is still limited for now. Transitioning from CMYK to RGB has been improved.

Refactored 'Swatches' dialog with search field
Refactored 'Swatches' dialog with search field

SVG Font Editor

For those of you who have a thing for fonts, Inkscape 1.4 is your new go-to for customization. You’ll find an easier route to buttons for sorting glyphs and removing pairs. Powerful customization at it’s finest in Inkscape!

Unified Font Browser

Inkscape is testing out a unified font browser preview. Activate this feature in Preferences and restart. After that, you will access visual previews for fonts with settings such as adding your own sample text. Check for particular font characteristics by searching fonts by collection type. Click on the one you want and watch it be applied to your text.

Adjusting the dialog by its various options
Adjusting the dialog by its various options

Customizable Handles

With Inkscape 1.4, you’ll now see that the on-canvas handles are customizable by size, colour, stroke width, outline and opacity. This will be updated live in Inkscape when the CSS file has been saved.

The new default handles
The new default handles

Shape Builder

You can now tackle quick edits on raster (pixel) images within Inkscape using the Shape Builder tool. Load an image and select sections that you want to isolate. Choose them with Shape Builder to clip them. Note that to edit them, you’ll need to release the clip and then unlink the clone. This tool is useful for a quick fix, isolating part or parts of an image quickly.

Using the Shape Builder Tool to quickly split a raster graphic into multiple
    parts
Using the Shape Builder Tool to quickly split a raster graphic into multiple parts

Object Properties Dialog

As of Inkscape 1.4, the Objective Attributes and Object Properties dialogs have been rolled up into one. This one-stop-shop is where you can change the different properties of objects, including rotations and corners.

The refactored 'Object Properties' dialog
The refactored 'Object Properties' dialog

Import & Export Updates

If you use Inkscape to develop and publish documents, you’ll be happy to know that you can now add links from one page to another within a PDF document–think table of contents.

Additionally, Inkscape 1.4 can now open Affinity Designer files, adding more versatility to the program.

Icon Sets

Welcome, Dash, the latest icon set to be accessible within Inkscape. For those of you who like customizing, you’ll appreciate this additional set of 500 plus icons to explore. These include cursors, both scalable and symbolic versions, that work on light and dark themes.

That concludes our brief wander through some of the top features included in Inkscape 1.4. For more information, the Inkscape 1.4 Release Notes are up to date to with information on all the changes included in this edition.

New icon set in use in the Inkscape interface
New icon set in use in the Inkscape interface

Get Inkscape 1.4 for Linux, Windows or macOS!

If you have questions for us, head to our web site and find our online community, where you can also find ways to get involved in the project.

In the meantime,
  Draw Freely.

Inkscape Summit 2024

We had a great Inkscape Summit in Rennes, France. Our three-day meeting was hosted by long-time Inkscaper's Elisa and Cédric in their school of design Activ.design

Five Inkscaper's travelled to the event (Marc, Mikekov, Adam Belis, S-Rafael, and Tav). Two more were present via video (Martin and René). Jonathon dropped in occasionally. And our hosts hung out with us when they weren't too busy preparing for LGM (Libre Graphics Meeting). In previous years we called these events "Hackfests", but have decided in order to be more inclusive to non-programmers and encourage greater partipation these events will be known as "Inkscape Summits".

These important events give the contributors of Inkscape a place where they can get some work done. Rafael [pictured left] is seen here working on some graphic user interface code at the event space. Mike, Adam, and Rafael spent a lot of time discussing and implementing UX designs. Marc did lots of merges, especially forward porting. We had great discussions on the future of Inkscape, including a plan for an improved Live Path Effects system (more of a Live Object system), better testing, etc..

During breaks and after the day, the contributors will go out for a meal and socialise. Rafael, Adam, Mikekov, Tav and Marc [pictured right] sit at a restaurant near the event space for lunch and get to know each other better.

All of these activities are funded by the Inkscape project, who provides travel and event expenses and run by one of the team. This is all funded by our kind donors who help the project cover the costs to run these important events. So a big thank you to all of you, you know who you are!

After the Inkscape Summit event, everyone was able to participate in the Libre Graphics Meeting (LGM) which happened directly afterwards. We will often try and organise our own physical meetings along side another conference or event. Tav [pictured left] is seen talking to other LGM attendees who will be contributors to other Free Software projects such as Blender, Krita, Penpot, etc. While smaller than in the past, there were still lots of great talks including talks on color, type, animation, and chocolate.

Meeting with the wider community of Free Software contributors helps us stay up to date with what's happening in the wider industry as well as meeting with some pretty cool people who help run a lot of the software which our users also depend upon. Big thanks for the organisers of LGM for running the event this year, which is the first in person event since Covid.

See you all next time!

 

Congratulations to Inkonic on winning Inkscape 1.4 About Screen Contest

We have a winner! Congratulations to the winning entry by artist Inkonic for their artwork "Inkscape's Path–Artist's Blossom". 

The theme this year was "Growth" and Inkonic's winning artwork depicted this wonderfully with branches and leaves growing directly out of the work of artists' hands using artists' tools ― literally drawing themselves and their worlds into existence and making them grow. Congratulations to Inkonic ― and thank you for helping Inkscape continue to grow!

We would also like to thank all of the artists who submitted artwork for the contest. Our deepest gratitude to you for showing myriad ways Inkscape can be used to create incredible artworks. These examples are invaluable to helping the project grow and thrive by inspiring and educating artists.

We encourage everyone to take a moment and download any of the artworks you find interesting and explore the objects, nodes, effects, layers, and groups that make up these complex artworks. And if you want to help out the Inkscape Project even more, you can review these artworks by testing the Inkscape 1.4 beta release that will feature this winning artwork here.

Finally, we'd like to extend a big thank you to all of the community members ― more than 250 of you! ― who cast votes in the initial round and selected the top finalists as well as the 23 Inkscape contributors served as the final round of judges for the 1.4 About Screen Contest.

If you’re interested in getting started with or better at using Inkscape check out this month’s challenge.

Thanks to all of you for helping Inkscape continue to grow. 

 Draw freely.

1.4 About Screen Contest

Inkscape 1.4 About Screen Contest by Kyle R. Conway, CC-By-SA 4.0

 

Announcing the About Screen Contest for Inkscape 1.4! Calling all artists! Each new version of Inkscape, we run a fun contest inviting all seasoned Inkscape artists and newcomers to participate in the "About Screen" contest. The About Screen is the image that you see when you click on Help → About in Inkscape to find more information about the version of the program installed on your device.

This release the topic is "GROWTH". This could be interpreted in many ways! Trees, hair, and grass grow. Children grow. How have you grown as an artist this year? How has the Inkscape project grown? How have the benefits of free software "grown" in your mind?

We are so excited to see what great art is submitted this year and excited to have artists be a part of it!

Keep in mind that the About Screen Contest is about much more than the About Screen. Submitted contest artwork is not only shared with the entire inkscape community, but is often featured in other places to help the project!

Entering the contest as an artist and/or voting for your favorites is a great way to help the Inkscape project continue to thrive! Each and every submission also helps us test the newest version of Inkscape.

Learn more about the contest here

Draw Freely.

It’s time to celebrate the success of GSOC 2023 and recruit for 2024 with Inkscape

Inkscape’s involvement in Google’s Summer of Code (GSoC) program is one of the ways the project helps to advance both learning and new and improved features in the program. We’re excited to be taking part in GSoC once more in 2024!

For more information on the timeline and details for applying to collaborate with Inkscape this year, head to our project page on Google's Summer of Code website.

If you’re curious to know more about what some of Inkscape’s GSoC students accomplished in 2023, keep reading!

Customize the appearance of your Canvas Controls

GSoC 2023 Inkscape student Sanidhya Singh was a sophomore undergraduate student in Computer Science and Engineering at the Indian Institute of Technology Roorkee (IIT Roorkee), India.

Sanidhya spent the summer working on developing a customizable appearance for canvas controls under the mentorship of Inkscape core developer Marc Jeanmougin.

What are these canvas controls, you ask? If you’ve drawn a shape using the Pen tool and tried to later edit it using the Node Tool, you might have noticed the circular (or square) handles Inkscape provides to manipulate and transform the shape. These are called "canvas controls" or more commonly "node handles". The style of these controls has been the same since at least Inkscape 0.48, and was in need of a refresh – one that would enable the user to have more flexibility in changing the style. Sanidhya stripped out the old handle styling part and replaced it with an easily editable CSS file, so that users can now change styles by just editing the file. This also enabled better default colors for the controls which will hopefully land in Inkscape 1.4.

You can read more about Sanidhya's work.

Preparing behind the scenes for GTK4 Migration

GSoC 2023 student Vaibhav Malik is from New Delhi, India. Once again, he joined Inkscape devs who have been putting a lot of work into the GTK4 migration. GTK is the user interface toolkit Inkscape uses to draw things like text boxes, buttons, etc. on the screen. Inkscape currently uses GTK3 which is version 3 of the toolkit. The migration to the latest version of the toolkit - GTK4, is what Vaibhav worked on under the mentorship of Inkscape core developer Tavmjong Bah (Tav).

Vaibhav's changes are mostly under-the-hood changes so that Inkscape works as expected with GTK4. One noticeable user-facing change is the addition of popovers for smaller screens. Below a particular window size, Inkscape will automatically adjust the items in the toolbar so that they're still usable on a smaller screen!

You can read more about Vaibhav’s work.

Collaborating with Inkscape developers is a learning experience and helps our free and open source program to advance for all Inkscape users.

Reach out, ask questions and get involved with our global team of volunteer contributors!

Draw Freely.

Creators: Don't Fall for Inkscape Impersonator

The project has received multiple requests for confirmation from creators, asking us whether we have been reaching out to them about collaborations / partnerships. They have been approached by someone who used the name “Inkscape PhotoEditor,” which does not exist. This is not us. Any official invitations to collaborate from the project will be listed prominently on our website (i.e. here).

 

Why is the Open Document Format (ODF) important?

Consider the history of control over user files, whether for organisations or individuals

Think about all the documents you have created in your lifetime: School assignments. Work presentations and reports. Household budgets. Letters. Perhaps even a personal diary or your CV.

Now imagine this: a few years go by, and when you try to open one of those files, it doesn’t work. The software has disappeared. Or it has been updated and no longer supports that format. Or you have to pay to unlock it.

It’s not just frustrating. It’s a real problem. That’s why the Open Document Format (ODF) was created: it’s a file format that allows computers to save documents such as letters, spreadsheets and presentations. You can recognise these files by their extensions: .odt for text files, .ods for spreadsheets and .odp for presentations.

What makes ODF special is that it is an open, transparent format that doesn’t hide anything from users. This means that anyone can use it freely; no company owns or controls it; and it is designed to work with different software, even years later. In short, it gives you control over your documents.

Let’s look at some everyday situations in which ODF can be useful:

Long-term access: you write your memoirs or your family history. Ten years later, you want to read or share them. With ODF, you don’t have to worry about the software becoming unavailable or obsolete.

Barrier-free education: A teacher asks students to submit their assignments digitally. With ODF, there is no need to purchase expensive software, as you can use a free tool such as LibreOffice instead.

Job search and consulting: create your CV in an open format so that anyone, regardless of their operating system (Windows, macOS or Linux) or application, can open it without encountering any formatting errors. You don’t even have to buy the software.

Sharing files with other users: you can send a document to a colleague or family member and they can open it without any problems, regardless of the programme they use. This is the advantage of a format that does not “belong” to a single company.

Public services: official documents in an open format can be accessed by everyone forever without them having to purchase or update software.

Unfortunately, most people forego all this because they use formats such as .docx (Word) or .xlsx (Excel). These are proprietary formats exclusively owned by Microsoft and can change at any time depending on their business strategies. Microsoft may require a subscription fee for a specific version, as older files may not be compatible with newer ones.

Proprietary formats can also cause problems when documents are opened with a different version of the same application, as the text and images may move and the document may look different. Sometimes, files do not open because the format is not recognised. This is not only annoying, but also risky if the file is important.

This is known as ‘lock-in’, a strategy that prevents users from choosing the software they prefer because migrating to a different format could result in the loss of all their content.

ODF, on the other hand, means freedom of choice, no restrictions, reduced costs, privacy, openness to the future and trust in technology. You don’t need to be a technology expert to use it; you just need to understand why it was created and why it has continued to grow for 20 years. Using ODF is like saving your documents in your own safe: it won’t suddenly disappear or require you to pay a monthly fee.

ODF also means security and transparency. ODF files are ZIP containers that use simple XML syntax, which any user can understand. This makes security checks much easier, allowing for automation and integration with companies’ CMS/ERP systems.

The digital agenda has always emphasised open standards, interoperability, and data portability. ODF fits perfectly into this landscape, not only replacing .docx or .xlsx, but also rejecting software that treats user data as a product.

ODF gives users full control over their documents. This is not just a technical detail; it ensures that documents belong to their creators, not the software used to process them. ODF enables us to assert ownership of our documents.

LibreOffice Marketing Activities – TDF’s Annual Report 2024

TDF Annual Report 2024 banner

In 2024, The Document Foundation and its global LibreOffice community undertook a variety of marketing initiatives aimed at increasing visibility, fostering community engagement, and driving adoption of LibreOffice

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

LibreOffice and Open Source Conference 2024 in Luxembourg

A major highlight of TDF’s 2024 marketing activities was the LibreOffice and Open Source Conference, held from October 10 to 12 in Luxembourg. The annual event brought together contributors from around the world, including developers, designers, documentation writers, translators, and marketers.

Marketing efforts for the conference included:

  • A targeted social media campaign promoting the event’s location, speakers, and agenda.
  • Outreach to local technology communities and universities in Luxembourg to boost participation.
  • The creation of promotional graphics and materials highlighting the conference themes and goals.
  • Live updates and content shared across LibreOffice’s social channels to engage a remote audience.
  • The conference acted as a vital showcase of LibreOffice’s progress, community strength, and future plans.

LibreOffice Conference 2024 group photo

“Month of LibreOffice” Campaigns

Throughout May and November 2024, TDF organized its recurring “Month of LibreOffice” initiative. This campaign aimed to recognize and reward community contributors across various roles, including development, documentation, QA and marketing.

Participants who contributed during the campaign period were acknowledged through:

  • Special edition badges awarded digitally.
  • Public recognition via blog posts and social media.
  • Incentives like stickers and merchandise shipped to selected contributors.

This initiative not only celebrated existing contributors but also attracted new participants interested in supporting open source software.

Month of LibreOffice stickers

Launch of the LibreOffice Podcast Series

In November 2024, TDF launched its LibreOffice Podcast, a new platform to discuss topics related to LibreOffice and the wider world of open source software. The podcast aimed to:

  • Share success stories from migrations to LibreOffice.
  • Offer insights into FOSS marketing strategies.
  • Feature interviews with developers and community leaders.
  • Provide behind-the-scenes looks at the ongoing work within TDF.

The first episode focused on marketing strategies for FOSS, with discussions on how to engage institutions and governments in adopting LibreOffice.

Please confirm that you want to play a YouTube video. By accepting, you will be accessing content from YouTube, a service provided by an external third party.

YouTube privacy policy

If you accept this notice, your choice will be saved and the page will refresh.

Enhanced Social Media and Content Strategy

In 2024, TDF expanded and optimized its social media presence. Alongside its traditional platforms like Twitter (X) and Facebook, TDF increased its focus on:

  • Mastodon: engaging the open-source community on federated social platforms.
  • LinkedIn: Sharing professional success stories, including case studies on large-scale LibreOffice deployments.
  • Regular posting of blog content, including release announcements, tutorials, and community spotlights.
  • Short video clips and graphics to make content more accessible and visually engaging.

These efforts aimed to grow the project’s audience, particularly among decision-makers in public administration and enterprises.

Native Language Community Outreach

TDF placed a strong emphasis on supporting native language communities. The marketing team worked with volunteers worldwide to produce localized materials, including:

  • Press releases for new LibreOffice versions.
  • Social media templates and visual assets.
  • Brochures explaining the benefits of LibreOffice in local contexts.

Several regions ran independent marketing initiatives, including:

  • Nepal: workshops for students on using LibreOffice Writer to create professional resumes.
  • India: local events demonstrating LibreOffice’s potential for government offices and educational institutions.

Software Freedom Day participants in Nepal

Workshops, Training and Community Events

Throughout the year, TDF organized workshops and training sessions aimed at onboarding new users and contributors. These included:

  • Online training for translators and QA testers.
  • Regional events offering hands-on experience with LibreOffice migrations.
  • Webinars aimed at IT administrators exploring LibreOffice deployment in enterprise environments.

The Open Source Workshops helped public sector organizations understand the benefits of LibreOffice and how it can replace proprietary office suites.

Outreachy and Template Development

LibreOffice participated in the Outreachy program, with a focus on developing new templates for LibreOffice Writer. These templates included resumes, reports, and business documents aimed at improving the user experience and broadening appeal, particularly for users migrating from proprietary suites.

Marketing activities highlighted:

  • How templates increase productivity.
  • The contributions of new developers and designers participating in the Outreachy program.
  • The availability of these templates through LibreOffice’s website and community channels.

Media and Press Relations

TDF continued its media relations work, distributing regular press releases covering:

  • New LibreOffice releases and features.
  • Major migrations by organizations and governments.
  • Events such as LibreOffice Conference and Month of LibreOffice campaigns.

TDF’s press outreach focused on reinforcing LibreOffice’s position as a cost-effective, secure, and privacy-respecting alternative to proprietary office suites.

Download Statistics and User Adoption

The marketing efforts in 2024 yielded significant results:

  • Download Milestone: by the end of 2024, LibreOffice surpassed 400 million cumulative downloads since its inception in 2011, with an average of 28.6 million downloads per year.
  • Weekly Downloads: Weekly downloads approached 1 million, marking the highest figures since 2023.
  • Public Sector Adoption: The German state of Schleswig-Holstein announced plans to migrate 30,000 PCs to LibreOffice, aiming for completion by 2026.

Schleswig-Holstein moving 30,000 PCs to LibreOffice

Conclusion

In 2024, through conferences, campaigns, podcasts, and media outreach, TDF advanced its mission of promoting free and open source software while making LibreOffice more accessible and trusted around the world. These marketing efforts not only amplified LibreOffice’s visibility but also demonstrated the value of community-driven open source projects in delivering professional-grade software solutions.

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

What is the Open Document Format (ODF)?

An introduction to the Open Document Format

The documents we create today, whether reports, spreadsheets or presentations, are essential for communicating, sharing and storing knowledge. However, the format in which these documents are saved often goes unnoticed. This is where the Open Document Format (ODF) comes in. ODF is a technical standard and a tool that ensures documents remain accessible, editable and usable over time without being tied to a specific vendor or product.

Approved by OASIS as an open standard document format in May 2005 and by ISO/IEC in May 2006, ODF has been around for over 20 years. Despite 20 years having passed, most productivity software users are not familiar with the format and therefore do not use it, as it is not as widespread as its proprietary counterpart, Microsoft OOXML.

This means that a huge number of documents — equivalent to over 100 zettabytes of data in 2025 — are subject to the commercial strategies of a company and completely beyond the control of their authors. These authors may suddenly find themselves unable to manage their own content unless they use specific software.

This also means that the enormous wealth of information contained in these documents does not contribute to the growth of collective intelligence because they are limited in terms of interoperability due to being tied to a single, specific, proprietary software.

Furthermore, Microsoft’s touted backward compatibility feature prevents true innovation in document formats because the presence of proprietary elements from old binary formats, which are not included in the ODF standard, forces documents to remain with technologies that have long been obsolete and incompatible with future developments.

What is ODF?

ODF is an open standard for saving and exchanging office documents. It includes text files (.odt), spreadsheets (.ods), presentations (.odp), and other types of documents, such as drawings (.odg). Developed by OASIS, an organisation that promotes structured information standards, it was approved by ISO/IEC as the international standard ISO/IEC 26300 in 2006.

Put simply, ODF is a universal language for documents, ensuring they can be read and written by any compatible software without locking users into a single ecosystem.

To understand the importance of ODF, it is helpful to know how proprietary formats work. When a document is saved in a Microsoft format, such as .docx, or an Apple format, such as .pages, it is often designed to work best with that company’s software only. Over time, this can cause problems such as limited compatibility, vendor lock-in, and the risk of obsolescence if the proprietary format is abandoned or changed significantly, as older documents may become unreadable.

ODF avoids these problems. It is completely open and free, meaning that anyone can implement it in their software, and users can switch between tools without losing access to their files.

ODF is not limited to text documents, but includes a wide range of office document types, including .odt (OpenDocument Text) for text documents such as reports, letters and books; .ods (OpenDocument Spreadsheet) for data analysis, tables and financial models; .odp (OpenDocument Presentation) for presentations with visual content; .odg (OpenDocument Graphics) for diagrams and vector graphics, as well as documents containing text and images; and .odf (OpenFormula) for formulas used in ODS spreadsheets.

Each of these document types is structured in such a way as to allow maximum compatibility while maintaining formatting and advanced software features.

How does ODF compare with Microsoft document formats?

Feature ODF Microsoft (docx. xlsx, pptx)
Open Standard Yes No
Long Term Archiving Solid Support Risk of Format Changes
Risk of Online Dependency
Offline Support Fully Supported Supported
Editable without Vendor Software Yes Limited

Common misconceptions about ODF

It is not as feature-rich as .docx or .xlsx

False. ODF supports complex formatting, styles, images, tables, charts, macros and more. Its feature set is robust and evolving thanks to contributions from a global community of developers and users.

No one uses ODF

This is also false. In fact, millions of users worldwide use ODF-compatible software every day. LibreOffice alone has tens of millions of active users worldwide.

It doesn’t work with my existing documents

ODF-compatible software, such as LibreOffice, can open, edit and export many formats, including .docx and .xlsx. Switching to ODF is easy and you won’t lose access to your existing files.

The future of ODF

The growing importance of digital documents in every sector, including education, public administration and business, is bound to impact the adoption of the ODF format because users cannot continue to use a format that disadvantages them in every way. Furthermore, the number of countries adopting policies based on open standards and demanding transparency and control over their data is growing all the time, and this can only lead to increased adoption of ODF in the long term.

Documents should belong to their authors, not to a software vendor through the file format used. In the case of a country, documents should belong to its citizens. ODF is the only effective way to regain control and ensure that data remains open, accessible and future-proof. ODF embodies the principles of digital freedom, collaboration, and user empowerment.

Whether you are an individual seeking control over your digital life, a teacher aiming to share knowledge using open tools to ensure its long-term availability to the community, a public official seeking long-term transparency, or a politician representing citizens’ interests, ODF is the smart, sustainable choice.

DISCLAIMER: Artificial Intelligence has helped in putting together background data in a matter of seconds, thus dramatically reducing the time needed to draft the article. I have over 4GB of background documents on my online storage, and although I have read most of them, it is impossible for my humble brain to retain all information. Here, Artificial Intelligence helps a lot, especially a 70 years old guy.

Month of LibreOffice, May 2025 – Half-way point!

Month of LibreOffice banner

So we’re half-way through the Month of LibreOffice, May 2025. And already, 216 contributors have won cool LibreOffice sticker packs! Details on how to claim them will be provided at the end of the month, but if you don’t see your name (or username) on that page, it’s not too late to join…

How to take part

There are many ways you can help out – and you don’t need to be a developer. For instance, you can be a:

  • Handy Helper, answering questions from users on Ask LibreOffice. We’re keeping an eye on that site so if you give someone useful advice, you can claim your shiny stickers.
  • First Responder, helping to confirm new bug reports: Go to our Bugzilla page and look for new bugs. If you can recreate one, add a comment like “CONFIRMED on Windows 11 and LibreOffice 25.2.3”.
  • Drum Beater, spreading the word: Tell everyone about LibreOffice on Mastodon, Bluesky or X (Twitter)! Just say why you love it or what you’re using it for, add the #libreoffice hashtag, and at the end of the month you can claim your stickers.
  • Globetrotter, translating the user interface: LibreOffice is available in a wide range of languages, but its interface translations need to be kept up-to-date. Or maybe you want to translate the suite to a whole new language? Get involved here.
  • Docs Doctor, writing documentation: Whether you want to update the online help or add chapters to the handbooks, here’s where to start.

So, two more weeks to go! We’ll be posting more updates on this blog and our Mastodon, Bluesky and X (Twitter) accounts…

Projects selected for LibreOffice in the Google Summer of Code 2025

The LibreOffice Google Summer of Code projects have been selected for 2025.

  • Adam Seskunas – Implement Report Builder in C++: replacing the current Java-based Report Builder with a new solution will improve maintainability and remove one of the last remaining dependencies on Java.
  • Karthik Godha – New dialog to edit Table Styles: Writer and Calc have a feature called AutoFormat styles with the possibility to add custom styles. This project will make it possible to edit existing table styles.
  • Devansh Varshney – BASIC IDE code auto-completion: rudimentary auto-completion for BASIC macro authors is already available, but this project will make the feature much more helpful.
  • Manish Bera – Python code auto-completion: currently there is no support at all for Python auto-completion when developing scripts for LibreOffice, so this will be quite a welcome addition.
  • Mohamed Ali Mohamed – Rust UNO language binding: last year LibreOffice received support for Lua and the latest .NET and now it’s time to make it possible to use the API with Rust.
  • Ujjawal Kumar – Import Markdown files into Writer: Markdown is a rather popular markup language for quickly formatting text in blog content, comments, chats and more. Requests to support it have increased recently, so it makes sense to tackle it.
  • Shardul Vikram Singh – Rework Impress slideshow to use DrawingLayer primitives: this is one of those projects that are incomprehensible to most users, but really important for the long term maintenance of the code.

Good luck to the contributors – we appreciate their work on these important features and improvements! And thanks to our mentors for assisting them: Thorsten Behrens, Stephan Bergmann and Sarper Akdemir (allotropia); Rafael Lima; Jonathan Clark, Heiko Tietze, Xisco Faulí, Michael Weghorn and Hossein Nourikhah (TDF).

Between August 25 and September 1, contributors will submit their code, project summaries, and final evaluations of their mentors. Find out more about the timeline here, and check out more details about the projects on this page.

TDF and LibreOffice website, blogs and social media – Annual Report 2024

TDF Annual Report 2024 banner

Our two main websites are vital sources of information for The Document Foundation and the LibreOffice software. We also use our social media channels to raise awareness about our work, share information and encourage new contributors to join us

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

TDF website

The Document Foundation website provides general information about the foundation (overview, statutes, code of conduct, financials and reports) and its governance (board of directors, membership committee, members, advisory board, and engineering steering committee), and about LibreOffice certification, including a list of certified developers, and professionals for migrations and trainings.

During 2024, the foundation’s website was visited 98,499 times, with 146,456 page views – a slight reduction in visits but also a slight growth in page views from 2023. Continent-wise, the largest chunk of visits were from Europe (52%), followed by North America (24%) and Asia (16%). And regarding software: the most visits were from PCs using the Windows (65%) operating system, followed by GNU/Linux (10%) and macOS (8%) and devices uses Android (6.2%), while for browsers: Chrome had 39%, followed by Firefox (16%) and Microsoft Edge (15%).

Matomo graph of visits to the website

LibreOffice website

The LibreOffice website provides information about the office suite and the document format, the various download options, how to get help, how to contribute to the project, events where users can get to know the LibreOffice community, and how to make a donation to support the project and the community.

In 2024, we continued to make improvements and tweaks to the website, updating the “Discover” and “New Features” sections of the site to reflect new versions of the software.

During 2024, the English-language LibreOffice website was visited 19,298,517 times (a 0.6% gain over 2023), with 46,065,236 page views (a 0.1% gain). Most visits were from Europe (52%), followed by Asia (20%), North America (15%) and South America (9%), from PCs using the Windows operating system (82%), followed by macOS (6%) and Linux (23%). Regarding web browsers, Chrome was the most popular (41%), followed by Microsoft Edge (29%) and Firefox (13%).

Matomo graph of visits to the website

Blogs

TDF’s blogs (like this one) are essential for communicating activities inside and around the project, including new releases of LibreOffice, community events and support for other free and open source initiatives. In 2024, we used them to post regular interviews with community members and provide updates from team members about documentation, marketing, QA, design and more.

Photo of Ndidi Folasade Ogboi

Blogs were also maintained by various native language communities including Japanese, Spanish, German and others. Thanks to the hard work of community members, we had press releases, tips and other articles translated into many languages, and picked up by local media organisations.

These native language blogs complement the information provided by the main blog in English, and by the two blogs managed by members of the design and the quality assurance projects, which provide updates about activities for the upcoming major releases.
In 2024, the blog had 100,180 visits and 131,174 page views – a drop in both cases of around 30% from the previous year. The press releases for LibreOffice 24.2 and 24.8 were the most popular posts, followed by the posts about the German state of Schleswig-Holstein moving 30,000 PCs from Microsoft Office/365 to LibreOffice.

Social media

In January 2024, our X (formerly known as Twitter) account (@LibreOffice) had 63,060 followers; by the end of the year, we had grown this to 68,870. Our most popular posts were for major releases of LibreOffice, and news about migrations to the suite. We posted customised images for “Community Member Monday” interviews with short quotes, encouraging more users to get involved with LibreOffice projects.

In addition, we focused not only on our own posts, but also retweeting announcements from the LibreOffice community members. We liked and reposted messages of support from end users – many of whom were surprised and thankful that a large project would show them support. To keep the content flowing, we reposted popular older tweets, and responded to individual messages.

On other social media platforms, we focused on growing our account on Mastodon, a Twitter-like open source, federated and self-hosted microblogging service. In 2024 we worked more on expanding our activities on our account @libreoffice@fosstodon.org, and from January to December, we grew our follower base from 25,440 to 29,326. We also joined Bluesky in late 2023 thanks to invites from a community member, and by December 2024 our follower count had reached 2,900.

Screenshot of LibreOffice account on Bluesky

Our Facebook page growth was smaller, from 63,348 page followers to 64,239. We’ve noticed a gradual reduction in activity on Facebook over the last few years, which reflects its changing audience, and the move towards other social media platforms. Nonetheless, Facebook still provides a good opportunity to interact with end users of LibreOffice, and every day we checked in to answer questions, get feedback, and post announcements/tips about the software.

YouTube channel

Our YouTube channel grew from 20,638 subscribers and 3,243,107 video views in January 2024 to 22,586 subscribers and 3,534,370 video views by the end of the year. The most popular videos were the “New Features” videos for LibreOffice 24.2 and 24.8, and we also added videos of talks, presentations and workshops from the LibreOffice Conference 2024.

At the end of 2024, we posted the first video from the new LibreOffice Podcast series, where Italo Vignoli and Mike Saunders from TDF talked about the challenges and opportunities in marketing free and open source software like LibreOffice. More podcasts are planned for 2025.

Please confirm that you want to play a YouTube video. By accepting, you will be accessing content from YouTube, a service provided by an external third party.

YouTube privacy policy

If you accept this notice, your choice will be saved and the page will refresh.

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

LibreOffice Quality Assurance (QA) in 2024 – TDF’s Annual Report

TDF Annual Report 2024 banner

Quality Assurance (QA) is a cornerstone of the LibreOffice project, thanks to the activity of a large number of volunteers and the feedback of many users who help in reporting bugs and regressions

(This is part of The Document Foundation’s Annual Report for 2024 – we’ll post the full version here soon.)

QA team work

In 2024, the QA team triaged thousands of bugs, bisected hundreds of regressions, and answered questions from countless bug reporters. As one of the most visible groups directly responding to end users, the QA team must be nimble and able to adapt to changes. In addition, it must deal with specific requests for help from other teams.

The QA team meets regularly on IRC on the #libreoffice-qa channel, which is the best medium for discussing bugs and regressions. The IRC channel provides an excellent opportunity to remain in close contact with team members, and to tutor new members in the art and skill of LibreOffice QA. This is bridged to the Telegram group.

During 2024, 5351 bugs were reported by 2463 users, which means 103 new bugs were reported every week on average. The QA team prepared monthly reports about their activity and posted on the QA blog.

Top 10 bug reporters

  • Eyal Rozenberg (211)
  • Gabor Kelemen (193)
  • Mike Kaganski (137)
  • Telesto (86)
  • Regina Henschel (85)
  • Xisco Faulí (82)
  • Stéphane Guillou (78)
  • peter josvai (75)
  • Rafael Lima (72)
  • Heiko Tietze (54)

Triaging

During 2024, 5086 bugs were triaged by 328 people. The top 10 bug triagers were:

  • Stéphane Guillou (stragu) (762)
  • Buovjaga (684)
  • m_a_riosv (499)
  • Heiko Tietze (374)
  • V Stuart Foote (241)
  • Mike Kaganski (232)
  • Julien Nabet (186)
  • Xisco Faulí (175)
  • ady (144)
  • Dieter (144)

Bibisecting

Also, during 2024, the QA team performed 561 bibisects of regressions by 30 people. The top 10 bisecters were:

  • raal (121)
  • Buovjaga (111)
  • Stéphane Guillou (104)
  • Xisco Faulí (91)
  • Gabor Kelemen (24)
  • Aron Budea (23)
  • Timur (14)
  • zcrhonek (10)
  • Mike Kaganski (9)
  • Justin L (8)

Like what we do? Support the LibreOffice project and The Document Foundation – get involved and help our volunteers, or make a donation. Thank you!

ODF 20th Anniversary Video

On May 1st, 2005, the Open Document Format (ODF) become an OASIS standard. One year after, it became an ISO/IEC standard. After two decades, it is the only true open standard for document formats available on the market, and the only one protecting users from proprietary lock in and ensuring a full control over contents. The presentation provides an overview over ODF features and explains why ODF should be used versus Microsoft OOXML (DOCX, XLSX and PPTX).

PeerTube: https://peertube.opencloud.lu/w/2b9JeZw1M884V5BK21RioW

YouTube: https://youtu.be/Z-Xo9v9-1YU (please note that once you leave this blog to access the video, a different set of privacy rules will apply)

Open Document Format (ODF) has been designed as a document standard for the next 20-50 years, to liberate users from the lock-in strategy built into yesterday’s and today’s proprietary formats and foster interoperability. On the contrary, OOXML – approved by ISO/IEC in 2008 in a version never implemented by MS Office – has been designed as a document pseudo-standard format to propagate yesterday’s document issues and lock-in strategy for the next 20-50 years, to the detriment of users and interoperability.

The philosophy behind the ODF standard document format was to design a mechanism in a vendor neutral manner from the ground up, using existing standards wherever possible. Although this means that software vendors had to tweak their individual packages more than if they continued down their original routes, the benefits for interoperability were important enough to justify this objective. The OOXML pseudo-standard document format was designed by Microsoft for Microsoft products, and to interoperate with the Microsoft environment. Little thought appears to have been exercised for interoperability with non-Microsoft environments, or compliance with established vendor-neutral standards.

LibreOffice 24.8.7 is available for download

Berlin, 8 May 2025 – LibreOffice 24.8.7, the seventh and last minor release of the LibreOffice 24.8 family of the free open source, volunteer-supported office suite for Windows (Intel, AMD and ARM), MacOS (Apple and Intel) and Linux, is available at www.libreoffice.org/download. LibreOffice is the only office suite that respects the privacy of the user, ensuring that the user is able to decide if and with whom to share the content they create. It even allows deleting user related info from documents. In addition, it has a feature set comparable to the leading product on the market.

The biggest advantage over competing products is the LibreOffice Technology engine, the single software platform on which desktop, mobile and cloud versions of LibreOffice – including those from ecosystem companies – are based. Products based on LibreOffice Technology are available for desktop operating systems (Windows, macOS, Linux and ChromeOS), mobile platforms (Android and iOS) and the cloud.
End users looking for manuals can download the LibreOffice 24.8 guides from the following link: books.libreoffice.org/.

For enterprise-class deployments, TDF strongly recommends the LibreOffice Enterprise family of applications from ecosystem partners, with three or five year backporting of security patches, other dedicated value-added features and Service Level Agreements: www.libreoffice.org/download/libreoffice-in-business/.

LibreOffice 24.8.7 availability

LibreOffice 24.8.7 is available from www.libreoffice.org/download/. Minimum requirements for proprietary operating systems are Microsoft Windows 7 SP1 (no longer supported by Microsoft) and Apple MacOS 10.15. Products for Android and iOS are at www.libreoffice.org/download/android-and-ios/.

LibreOffice 24.8 will reach its EOL (End of Life) in mid-June 2025. Users are encouraged to migrate to LibreOffice 25.2, which is now fully tested for all types of use in production. The current version is LibreOffice 25.2.3.

End users can get first-level technical support from volunteers on mailing lists and the Ask LibreOffice website: ask.libreoffice.org. They can support the project by donating at www.libreoffice.org/donate.

LibreOffice Conference Budapest 2025 Call for Papers

Join us in Budapest and tell us what you’re doing with LibreOffice!

The Document Foundation invites all members and contributors to submit talks, presentations and workshops for this year’s LibreOffice conference in Budapest at ELTE’s Faculty of Informatics, co-organized by FSF.hu Foundation. The event will take place from 4 to 6 September, with an informal community meeting on 3 September. Whether you are an experienced presenter or have never spoken in public before, if you have something interesting to say about LibreOffice, the Document Liberation Project, the Open Document Format or the ODF Toolkit, we want to hear from you!

Proposals should be submitted by 15 June 2025 to ensure they are considered for inclusion in the conference programme.

The conference programme will be based on the following tracks

a) Development, APIs, Extensions, Future Technology
b) Quality Assurance
c) Localisation, Documentation and Native Language Projects
d) Appealing LibreOffice: Usability, Design and Accessibility
e) Open Document Format, Document Liberation and Interoperability
f) Advocacy, promotion and marketing of LibreOffice

Presentations, case studies, workshops and technical talks will cover a topic in depth and last 30 minutes (including Q&A). Lightning talks will cover a specific topic and last 5 minutes (including Q&A). Sessions will be streamed live and recorded for download.

Please submit your proposal – including a short description of contents and a short biography of yourself – to https://events.documentfoundation.org/. If you would like to give more than one talk, please submit a separate proposal for each one. Only software based on the LibreOffice Technology platform will be allowed on stage, while slide decks will be shared using the ISO standard ODP and PDF file formats.

If you need a VISA, please contact the organising team at conference@libreoffice.org as soon as possible to receive an invitation letter.

If you are unable to travel to Hungary and prefer to present remotely, please include a note in your proposal to allow the organisers to schedule your presentation (and organise a test session beforehand).

If you do not agree to make the data for the presentation available under the Creative Commons Attribution-Share Alike 4.0 Licence, please specify your terms. In order to make your presentation available on the TDF YouTube channel, please do not make use of copyrighted material (music, images, etc.) for your slide deck.

Of course, this is only the Call for Papers, but everyone is welcome to attend the talks and events! We’ll post again soon when registration is open…

Thank you for your participation!

Monthly News – April 2025

Par :Clem

Hello everyone,

Many thanks to our sponsors and to all of you who support the project with your donations.

Codenames

The codenames for the next releases of Linux Mint and LMDE were chosen:

  • Linux Mint 22.2 will be called “Zara”
  • LMDE 7 will be called “Gigi”

PewDiePie

We have a new user!

How many of us now? We don’t count. Dozens at least, dozens! 🙂

Welcome to Linux PewDiePie!

A hint of Blue in Mint-Y

We’re adding a little bit of blue in our theme.

This is common practice in UI design. It’s done on mobile, desktop and all over the web. Grey is rarely completely grey, it usually has a little bit more blue in it than red and green.

Take your color picker and check the grey on GitHub. It’s not #f8f8f8, it’s #f6f8fa. Firefox does that well, Google docs, Trello etc..

The reason this is done is to make grey slightly more metallic looking and appear more modern. Pure grey is neutral, it can be perceived as cold or warm based on its surroundings. By bumping the blue (or in the case of github both the green and the blue) we force it to look cold.

Here’s an interesting discussion on the topic: https://www.reddit.com/r/UXDesign/comments/1cd40iz/why_apples_systemwebsite_grey_shades_always_lean/

Another reason this makes the UI look more modern is because this is done a lot nowadays but it wasn’t done so much 10 years ago. Like with all new trends, sticking to past standards can make things feel outdated.

Interestingly libAdwaita also just did this.

If you update your Flatpak libAdwaita applications you’ll see they now use #222226 for dark and #ebebed for light.

Because there are many libAdwaita apps already in Flathub and since our own theme is already quite close to it in terms of colors,  we’re adapting Mint-Y to use the same colors.

The difference in the light theme is subtle. It probably wouldn’t be noticed by someone who wasn’t told this had been done. The headers go from #e8e8e8 to #ebebed.

The difference is more visible in the dark theme, which also affects dark apps and the panel and cinnamon clutter elements in the default theme. This one is going from #2b2b2b to #222226 and #404040 to #2e2e33. It looks more modern but also much softer than before.

These changes bring the following improvements:

  • The themes look more modern
  • The dark theme and Cinnamon elements are softer and much nicer looking
  • Flatpak libAdwaita applications fit in a little bit better since they use the same colors

Accent Colors

We made a small change to the XDG Desktop Portal XApp to support accent colors.

The XApp desktop portal simply scans the GTK theme for a named color called “accent_color”. If this color is present it provides it via the XDG Settings API.

Put simply this changes the accent color in Flatpak libAdwaita applications based on your chosen GTK theme.

This works in Cinnamon, MATE and Xfce. All that is needed is for the theme to define its “accent_color”.

Note to theme artists: This is a one-liner in your GTK CSS.

@define-color accent_color #9ab87c;

libAdwaita

A year ago we complained about libAdwaita, not because it was bad, but because it didn’t support us. Applications made with this library only properly integrated with GNOME and broke functionality in Cinnamon, MATE and Xfce.

With the release of Linux Mint 22, GNOME Apps which used libAdwaita were downgraded back to their GTK3 versions so that they could continue to function properly in the desktop environments we support. This was a temporary solution until these applications either got replaced, removed, forked, or until we found a way to continue to use them.

I know our audience isn’t ready to let theming die. It would be extremely unpopular right now if we were to remove theme selection. And since we provide it, it has to work. We cannot ship with a desktop that provides theme selection and a core set of applications which violate it.

As shown above, we’ve updated Mint-Y to use the same colors as libAdwaita. We also made the libAdwaita accent color follow the theme. This helps the integration but it’s only a small step towards properly integrating these applications. It doesn’t solve the issue with window controls and doesn’t help with other themes.

Whether we downgrade or fork applications, I know many of the GNOME developers are as sad as we are about this fragmentation and duplication of efforts. We were talking about extracting epub support in Xreader last week and making a new app. It would take between a week and a month to achieve the level of functionality we see in something like Foliate, but what’s the point long-term? Wouldn’t it be better for Foliate to work outside of GNOME and for us to use it?

Within our XApp discussions we talk about Qt, GTK3, application alternatives, forks and rewrites. What we looked at recently is slightly different. How do we make GNOME apps continue to work outside of GNOME?

Is there anything actually wrong with them once they follow the theme and provide proper window controls?

We gave it a try. We added libAdwaita stylesheets in Mint-X and Mint-Y and made a few changes in libAdwaita to not use its own stylesheet.

As you can see, the layout and style of libAdwaita widgets is different than in traditional GTK3 applications. It’s more touch friendly with sidepanes, split navigation headerbars rather than menubars and toolbars. It works really well for some of the apps though.

In the GIF above, gnome-calendar, gnome-characters and foliate are libAdwaita applications. They integrate really well.

If we apply these patches to libAdwaita we probably won’t need to continue to downgrade the GNOME applications.

Upstream and long-term, if we continue to use libAdwaita applications we probably need an XApp platform lib similar to libAdwaita, either in the form of a soft-forks (libs and/or apps which are often rebased on upstream) or in the form of an extension library (something that extends libAdwaita, similar to libGranite).

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
Chargeblast
chr0meice91 on TikTok
nesevo GmbH & Co. KG
Tinken Inc
VANT

Donations in March:

A total of $14,716 were raised thanks to the generous contributions of 523 donors:

$500 (8th donation), Matthew P.
$250 (3rd donation), Tom K.
$212, Daniel C.
$159, Sylvain L.
$150, ROMAN T.
$130 (7th donation), J aka “look but don’t touch. Thank you”
$127, Norbert B.
$125, Charles H. C.
$106 (2nd donation), Dennis K.
$106 (2nd donation), Thomas F.
$106, Anonyme A.
$106, Harland F.
$106, Jiří B.
$106, Markus H.
$106, Raiko Z.
$106, Tero J.
$106, Thomas J.
$106, Tobias R.
$100 (7th donation), Jaxon L.
$100 (7th donation), Konrad W.
$100 (7th donation), Sivaguru
$100 (6th donation), James F.
$100 (5th donation), Jamison G.
$100 (2nd donation), Thomas P.
$100, Alan F. T.
$100, Christina S.
$100, Ethan D.
$100, Jason R.
$100, Leon K.
$100, Network Informatics Inc
$100, Nigel A.
$84, Simon D.
$79 (11th donation), Jacques P.
$79, Florian S.
$76, James W.
$74 (3rd donation), Peter P.
$63 (2nd donation), David M.
$53 (8th donation), Richard H.
$53 (5th donation), Birgit B.
$53 (3rd donation), jo
$53 (3rd donation), Willem L.
$53 (2nd donation), Anonymous
$53 (2nd donation), Joachim H.
$53 (2nd donation), Laobhan
$53 (2nd donation), Matthijs S.
$53, Anonymous A.
$53, Baptiste C.
$53, Felix K.
$53, Frank W.
$53, Gerd W.
$53, Jakub B.
$53, JAUME E. E. P.
$53, Lars L.
$53, Maik T.
$53, MALCOLM T.
$53, Marcus B.
$53, Markus N.
$53, Martin E.
$53, michael H.
$53, MICHAEL J.
$53, Nicolas O.
$53, Olaf P.
$53, Poppy
$53, SIMONA B.
$53, Stefan K.
$53, Thomas G.
$53, Thomas K.
$51 (20th donation), Adam K.
$50 (19th donation), John Mc aka “Land Research Project”
$50 (6th donation), Clark R.
$50 (6th donation), Gerard S.
$50 (6th donation), Lynn H.
$50 (6th donation), Mothy
$50 (4th donation), Gregory A.
$50 (4th donation), Norman K.
$50 (3rd donation), Anthony C. aka “Ciak”
$50 (3rd donation), Beatrice G.
$50 (3rd donation), Brenda C.
$50 (3rd donation), Carlos L.
$50 (3rd donation), Donald L.
$50 (3rd donation), Frank J.
$50 (3rd donation), Robert L.
$50 (3rd donation), William E. aka “Bill”
$50 (2nd donation), Brian S.
$50 (2nd donation), Kris J.
$50 (2nd donation), Michael T.
$50 (2nd donation), Paul J. C.
$50 (2nd donation), Wade L.
$50, Alejandro E. G. V.
$50, Declan S.
$50, Derek M.
$50, Frank B.
$50, Gary W.
$50, Hallet B. I.
$50, James W.
$50, Jasmin K.
$50, John M.
$50, Kellee C.
$50, Kevin H.
$50, Mark P.
$50, Michael S.
$50, Mikko-Ilkka P. H.
$50, Nancy W.
$50, Patrick O.
$50, Peter G.
$50, Peter G.
$50, Phill R.
$50, Ronald F.
$50, Shu Hai Teng
$50, Sim%F3n Benito Stuardo Novoa
$50, suzanne E.
$50, Verne P.
$50, Wally Hale
$42 (2nd donation), F. S.
$42, Andreas N.
$42, Cazelle
$42, Szlovak J.
$42, Tony M.
$42, Wolfgang S.
$40 (10th donation), Robert T.
$38, Fabrice D.
$37, Luka L.
$35 (17th donation), B. H. .
$35 (12th donation), John Eady
$35 (5th donation), P W E.
$33, Alexis F.
$31 (6th donation), R. Sch.
$31 (2nd donation), Fernando M.
$31, ALEXANDROS K.
$31, CASALINI M.
$31, Emilie G.
$31, Francien V. D.
$31, Jonas K. D. L. R.
$31, Pélage
$30 (2nd donation), Abu
$30 (2nd donation), Jonathan N.
$30, debashis B.
$30, Marco V.
$26 (70th donation), Michael R.
$26 (2nd donation), Hans-werner J.
$26, Benjamin M.
$26, Heiko P.
$26, Klaus S.
$26, Martin D.
$26, Martin W.
$26, R. O. P.
$26, Tiago N.
$25 (49th donation), Linux Mint Sverige
$25 (16th donation), Donna B.
$25 (8th donation), Mihnea Rădulescu
$25 (8th donation), Timothy L.
$25 (7th donation), Chuck G.
$25 (6th donation), Antonio John Ettorre aka “AJ”
$25 (5th donation), John N.
$25 (2nd donation), David W.
$25, Adam Y. W.
$25, Collum C. L.
$25, Colten B.
$25, Daniel d. A.
$25, David P. G.
$25, Garry D.
$25, Matthew C.
$25, Nicholas K.
$25, RENEE A. R.
$22 (4th donation), Pj Sylvia.
$22, Tate G.
$21 (24th donation), Stefan W.
$21 (19th donation), Benjamin W. aka “UncleBens”
$21 (13th donation), Brandon W.
$21 (7th donation), Artur K.
$21 (5th donation), Juri N. aka “Electronic music connoisseur”
$21 (4th donation), Clifford C.
$21 (3rd donation), David K.
$21 (3rd donation), Declan K.
$21 (3rd donation), Dirk S.
$21 (3rd donation), Elisabeth D.
$21 (3rd donation), Giordano A.
$21 (3rd donation), John R.
$21 (3rd donation), John S.
$21 (3rd donation), Jörg B.
$21 (3rd donation), Matthias K.
$21 (3rd donation), Tim S.
$21 (3rd donation), Ulrich J.
$21 (2nd donation), Alexandre R.
$21 (2nd donation), Alexandros D.
$21 (2nd donation), Armin K.
$21 (2nd donation), Ben Coyote
$21 (2nd donation), Cyril A.
$21 (2nd donation), Denick M.
$21 (2nd donation), Ester V.
$21 (2nd donation), Gunnar H.
$21 (2nd donation), Jochen M.
$21 (2nd donation), Renato P.
$21 (2nd donation), Salvatore C.
$21, aka “Denali”
$21, Adam D.
$21, Alexander B.
$21, Andrej D.
$21, Anne-Christine U.
$21, Arthur M.
$21, Bernd E.
$21, Bruno J.
$21, CARLOS H. N.
$21, Christian K.
$21, Christoph K.
$21, Christophe C.
$21, christophe O.
$21, david G.
$21, David L.
$21, David L. V. aka “12elotro”
$21, didier B.
$21, Enrico Pitea aka “Zippex”
$21, Frazer
$21, G%FCnther H.
$21, giovanni A.
$21, Guenther K.
$21, Horst D.
$21, I%F1aki F.
$21, J M. P.
$21, James I.
$21, Jens K.
$21, Johan R.
$21, Johannes J.
$21, Jonathan S.
$21, Jose G.
$21, Kim F.
$21, Konstantin M.
$21, Lee P.
$21, LEVENTE V.
$21, M J. P.
$21, Markus F.
$21, Markus S.
$21, Martin B.
$21, Martin D.
$21, Mateusz M.
$21, Matthew K.
$21, Michael B.
$21, Michael H.
$21, Michael W. M.
$21, Paolo Bee
$21, Patrick P.
$21, Paul G.
$21, Peter N.
$21, Robert V. D.
$21, Roland H.
$21, Sam H.
$21, Sebastian L.
$21, sisko M.
$21, Stefan R.
$21, Stephan R.
$21, Sven T.
$21, Toms Web Solutions
$21, Wil L.
$21, Yixue W.
$20 (66th donation), Bryan F.
$20 (51st donation), Stefan M. H.
$20 (32nd donation), vagrantcow
$20 (14th donation), Carl K.
$20 (11th donation), Lamont C.
$20 (10th donation), Daniel V. M.
$20 (9th donation), Eric W. aka “powerwagon75”
$20 (8th donation), Chris B.
$20 (7th donation), Eric W.
$20 (6th donation), Alex S.
$20 (6th donation), Allen S.
$20 (6th donation), Jim W.
$20 (6th donation), Mark C.
$20 (6th donation), Wladyslaw Tom Tomkiewicz
$20 (5th donation), Cheryl Meril, Notary Public
$20 (5th donation), Keith M.
$20 (4th donation), Eric H.
$20 (4th donation), Jack H.
$20 (4th donation), Vincent D.
$20 (3rd donation), Larry G.
$20 (2nd donation), Bergis H.
$20 (2nd donation), M Jay K.
$20 (2nd donation), Orville M G.
$20 (2nd donation), Thomas T.
$20 (2nd donation), Vincent A.
$20, Andrew
$20, Anthony C.
$20, Arjun J.
$20, Bartosz P.
$20, BK
$20, Bradley I.
$20, Chris H.
$20, Daniel R.
$20, Dean D.
$20, Ian D.
$20, Jason T.
$20, Jerry M. H.
$20, Jin Z.
$20, John K.
$20, John R.
$20, Madison W.
$20, Marc N.
$20, Mark S.
$20, matthew V.
$20, Reed Love
$20, Richard G.
$20, Stanley K.
$20, Terry D.
$20, Vernard E.
$20, Winston M.
$19, Stephen P.
$18 (4th donation), Piermarcello P.
$18, zoomonus
$17, Christoph aka “Stoffelchris”
$16 (85th donation), Andreas S.
$15 (105th donation), Johann J.
$15 (9th donation), Alexander H.
$15 (9th donation), Florian P.
$15, Andrej S.
$15, KENNETH W.
$15, Thaha J.
$15, Viktor S.
$12, Carsten B.
$12, Thejas L. U.
$11 (8th donation), Brian H.
$11 (4th donation), aka “mw-wonder”
$11 (4th donation), Alessandro S.
$10 (108th donation), Thomas C.
$10 (57th donation), Peter E.
$10 (52nd donation), Philip Woodward
$10 (35th donation), Tugaleres.com
$10 (17th donation), Thevirtua
$10 (16th donation), Christian B.
$10 (14th donation), Philip E.
$10 (13th donation), Karlheinz R.
$10 (12th donation), Axel R.
$10 (12th donation), Axel R. aka “Airwave”
$10 (12th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (11th donation), Michiel B. aka “Fairyland Ironwolves
$10 (9th donation), Donatas Dainys
$10 (9th donation), JvdB
$10 (9th donation), Tom M.
$10 (8th donation), Jacques V.
$10 (8th donation), Roy S.
$10 (7th donation), Dino G.
$10 (7th donation), Marco B. aka “Erouc
$10 (7th donation), Michael W.
$10 (6th donation), Kjerkreit Ytre, Anders Kiær
$10 (6th donation), Daniel H.
$10 (6th donation), Erik L.
$10 (6th donation), Gary R.
$10 (6th donation), Joseph G.
$10 (6th donation), Steven L.
$10 (6th donation), Tomasz K.
$10 (5th donation), Carlo R.
$10 (5th donation), Robert S.
$10 (5th donation), Tommy H.
$10 (4th donation), Axel P.
$10 (4th donation), Dafydd F.
$10 (4th donation), David G.
$10 (4th donation), Edward G.
$10 (4th donation), Fernando A. P.
$10 (4th donation), Gene E.
$10 (4th donation), Guillaume M.
$10 (4th donation), Mario M.
$10 (4th donation), Simon M.
$10 (4th donation), Tristan V.
$10 (3rd donation), Abe Z.
$10 (3rd donation), Artem Ignatyev aka “ZaZooBred”
$10 (3rd donation), Bruno L.
$10 (3rd donation), Craig D.
$10 (3rd donation), David J.
$10 (3rd donation), Francis S.
$10 (3rd donation), George P.
$10 (3rd donation), James G.
$10 (3rd donation), M.B.
$10 (3rd donation), Mike A.
$10 (3rd donation), Timothy L.
$10 (2nd donation), Christian G.
$10 (2nd donation), Christian O.
$10 (2nd donation), Devin S.
$10 (2nd donation), Diego Moya
$10 (2nd donation), Gerhard K.
$10 (2nd donation), Gunnar A.
$10 (2nd donation), Joseph M.
$10 (2nd donation), Mauro D.
$10 (2nd donation), Michael M.
$10 (2nd donation), Terry S.
$10 (2nd donation), Umberto B.
$10 (2nd donation), Vanderlei G. D. S.
$10, aka “Mint supporter”
$10,
$10, Adam J. V. R.
$10, Adithya
$10, Adriano C.
$10, Alain C.
$10, Aldo Acquistapace aka “Aldo.acqui”
$10, Alexis G. G.
$10, Alfio G.
$10, Alfonso F. aka “alf”
$10, ALTAMIR J.
$10, Anastasios A.
$10, andrej B.
$10, Anel S.
$10, ARIS J. J. N.
$10, Arne J.
$10, Askeldaja
$10, B.N. B.
$10, bartolameotti D.
$10, Bram B.
$10, bruno B.
$10, Capital Region Technology and Computer Support
$10, carlo Z.
$10, Carlos G.
$10, Chris S.
$10, CHRISTOS T.
$10, CLAUDE V.
$10, Constantin R.
$10, Daniel A. L. H.
$10, Daniel H.
$10, Dave J.
$10, Dener L. D. S.
$10, Dennis J.
$10, Didier F.
$10, Dirk N.
$10, Edward L.
$10, Eugen S.
$10, Felix P.
$10, Frank H.
$10, Geoffrey N.
$10, Giancarlo M.
$10, Hugo P.
$10, Ingo W.
$10, John G.
$10, Juan S. G.
$10, LORENZO A.
$10, M%E1rcio F.
$10, Manfred R.
$10, Marian P.
$10, Mario M.
$10, Mario R.
$10, Marlon R.
$10, Mateusz G.
$10, Matthias E.
$10, Michaela H.
$10, Michel W.
$10, MIGUEL A. A. G.
$10, Norberto C. N.
$10, Oliver S.
$10, Patrick G.
$10, Paul R.
$10, Peter K.
$10, Rainer B.
$10, Ramiro M.
$10, Randall R.
$10, Reinhart S.
$10, riccardo G.
$10, Richard M.
$10, Rodrigo C.
$10, ROMANAZZI G.
$10, Salvatore C.
$10, Salzgrotte Meissen
$10, Silvio E.
$10, Spencer D.
$10, Stefan L.
$10, Sydney C.
$10, Thomas S.
$10, Tony A.
$10, Udo S.
$10, valentino U.
$10, Vasco K. aka “Vascoder”
$10, Werner B.
$10, werner B.
$10, Yaroslav V.
$10, Yasir R.
$10, Yogerlan L. A.
$8, Matija K.
$196 from 51 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,559 patrons, for a sum of $4,149 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

Monthly News – March 2025

Par :Clem

Hi everyone,

Before we start with the news, I’d like to thank all the people who donate, sponsor and contribute in various ways to our project. Many thanks to all of you!

Note: The features which are previewed in this post are planned for upcoming releases. They are not available right now.

Searching for files in Nemo

The Nemo file manager was improved.

Its search functionality was enhanced. A new filter was added to find files using regular expressions matching their filenames.

Cinnamon in Wayland

We’re working on adding support for keyboard layouts and input methods to Cinnamon in Wayland.

Will this be included in the next release? Hopefully.

It’s functional but it’s not fully ready yet. Although it’s great news for Wayland compatibility, it can impact toolkit compatibility and input methods for Asian languages. We need a little bit more time to finalize it and properly test it.

OEM Support in LMDE

LMDE 7, which will be based on the next version of Debian Stable, will come with full support for OEM installations.

Thanks to OEM installs, Linux Mint can be pre-installed on computers which are sold throughout the World. It’s a very important feature and it’s one of the very few remaining things which wasn’t supported by LMDE.

OEM stands for “Original Equipment Manufacturers”. It’s used to refer not only to manufacturers but to any company big or small which sells computers. This feature is also used by individuals who either donate or sell their computers.

When you prepare a computer to be sold, you don’t know its future user. You can’t select the username or the password. Big companies might not even know the user’s language, timezone or keyboard layout. So this feature allows the system to be pre-installed on the computer, without selecting user details.

These details are later asked to the user via a first-run wizard when the computer is turned on.

CJS

We’re changing how we handle version numbers for the JavaScript engine that powers the Cinnamon desktop.

Previously, our JavaScript interpreter (CJS) shared the same version number as the Cinnamon desktop environment and was only updated when Cinnamon itself was updated.

Moving forward, CJS will be versioned according to the Mozilla JavaScript engine it uses, and we’ll update it independently from Cinnamon. This means:

  • Updates can happen more frequently and efficiently
  • New JavaScript engine improvements can be added without waiting for a full Cinnamon release
  • The desktop environment can work with multiple versions of the JavaScript engine

This change will especially benefit Linux distributions like Debian and Ubuntu, making it easier for them to ship Cinnamon without having to maintain multiple versions of the Mozilla JavaScript engine.

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
Chargeblast
chr0meice91 on TikTok
nesevo GmbH & Co. KG
Tinken Inc
VANT

Donations in February:

A total of $14,904 were raised thanks to the generous contributions of 502 donors:

$1000 (7th donation), Mikhail Chabanov
$250 (2nd donation), Gary S.
$216, Anna V.
$216, Christian F.
$200 (3rd donation), Curt B.
$200, David Z.
$108 (10th donation), Christian G. aka “Chrissy”
$108 (5th donation), Thomas I.
$108 (2nd donation), Klaus J.
$108 (2nd donation), Werner F.
$108, Anneliese R.
$108, Dirk B.
$108, Michael A.
$106, ossian B.
$100 (11th donation), John M.
$100 (11th donation), Timothy P.
$100 (3rd donation), Christopher G.
$100 (3rd donation), Ronald W.
$100, Artem K.
$100, Catherine H.
$100, Christopher W.
$100, Donald P.
$100, Lawrence L.
$100, Michael R.
$100, Philipp M.
$100, Prateek S.
$100, Ryan G.
$100, Stephen L.
$81, Michael P.
$75 (6th donation), David B.
$75 (4th donation), Warren A.
$68 (6th donation),
$65, Ralf H.
$60 (13th donation), James L.
$54 (9th donation), Jyrki A.
$54 (9th donation), Stoyan
$54 (7th donation), Thomas M.
$54 (4th donation), Christof S.
$54 (4th donation), Hubert F.
$54 (4th donation), Joost S.
$54 (4th donation), Rolf H.
$54 (3rd donation), Alain M.
$54 (3rd donation), John F.
$54 (3rd donation), Michel B.
$54 (2nd donation), Bernhard M.
$54 (2nd donation), Kai G.
$54, aka “Hp1200
$54, Albert van Alphen aka “Phoerax”
$54, Andrea L.
$54, Benedikt H.
$54, Christopher C.
$54, Gerret S.
$54, Javier P.
$54, Job S.
$54, Karsten H.
$54, Lotte L.
$54, Manuel B.
$54, Marc L.
$54, Marcel F.
$54, Markus R.
$54, Massimo R.
$54, Michael H.
$54, Michael M.
$54, Nadine B.
$54, Rico B.
$54, Simon Speich
$54, Stefan R.
$54, Wolfram K.
$53 (2nd donation), Yusuf D.
$53, ALAN M.
$53, G D. W.
$53, Mar I.
$50 (10th donation), Greg C.
$50 (10th donation), John B.
$50 (7th donation), Dean R.
$50 (7th donation), W G. M.
$50 (5th donation), Jason B.
$50 (5th donation), Mothy
$50 (4th donation), Alan L.
$50 (3rd donation), Andri A.
$50 (3rd donation), Guillermo A.
$50 (3rd donation), John D.
$50 (3rd donation), Neal C.
$50 (2nd donation), Brian Milot Sr
$50 (2nd donation), Anthony C. aka “Ciak”
$50 (2nd donation), Benjamin P.
$50 (2nd donation), Richard M.
$50, ANDREW H.
$50, Arthur S.
$50, Brian D.
$50, BRIAN N.
$50, David T.
$50, Eric K.
$50, Frank S.
$50, Geekazon.com
$50, James H.
$50, Kelley W.
$50, Kira S.
$50, Mathieu D.
$50, Max
$50, Michael K.
$50, Mitch N.
$50, Monica R.
$50, Nils T.
$50, Rob F. aka “CheekinRob”
$50, Suzanne S.
$50, Thomas W.
$50, Travis M.
$50, WILLIAM M.
$49 (7th donation), Fred W.
$45 (2nd donation), Hesham A.
$45, Nicholas A.
$44 (4th donation), Juri N. aka “Electronic music connoisseur”
$43 (14th donation), Roger aka “GNU/Linux werkgroep
$43 (2nd donation), Claire P.
$43, Lele
$40 (3rd donation), Leah M.
$40 (2nd donation), Daniel P.
$38 (8th donation), Vittorio F.
$38, Michael W.
$37, Frank N.
$35 (4th donation), P W E.
$35, Timothy K.
$32 (16th donation), Anthony M.
$32 (10th donation), Alexander M.
$32 (4th donation), Jean-claude M.
$32 (4th donation), Paul R.
$32 (3rd donation), A. P. .
$32 (3rd donation), Martin B.
$32 (2nd donation), Daniel M.
$32 (2nd donation), Daniel T.
$32 (2nd donation), John B.
$32, Andreas K.
$32, David M.
$32, Wulf S L.
$31, Tony D.
$30 (3rd donation), Devon B.
$30, Calvin N.
$30, Eduardo N. aka “edunkt”
$30, Jeffrey B.
$30, Kevin P.
$29 (4th donation), Birger M.
$29, Richard K.
$27 (23rd donation), John K. aka “jbrucek”
$27 (8th donation), Jonathan. H
$27 (6th donation), Peter M.
$27 (2nd donation), Jürgen N.
$27, Lars B.
$27, Marcello M.
$27, Mr. R.
$25 (48th donation), Linux Mint Sverige
$25 (19th donation), Richard N.
$25 (13th donation), John W.
$25 (7th donation), Mihnea Rădulescu
$25 (5th donation), Miles S. P.
$25 (4th donation), John N.
$25 (4th donation), Richard T. aka “RichT54”
$25 (3rd donation), JeffK969
$25 (3rd donation), Mr C. aka “oldpeculier”
$25 (3rd donation), Pablo J.
$22 (23rd donation), Stefan W.
$22 (19th donation), Marek S.
$22 (10th donation), Francis N.
$22 (9th donation), Bobcam Computer Solutions aka “Rob
$22 (8th donation), Maurice G. aka “guilmau”
$22 (7th donation), Francesc M. C.
$22 (7th donation), Holger B.
$22 (6th donation), Artur K.
$22 (4th donation), Michael M.
$22 (3rd donation), Willem G. D. L.
$22 (2nd donation), Andreas O.
$22 (2nd donation), Bernd Z.
$22 (2nd donation), Börje Å.
$22 (2nd donation), Gerard W.
$22 (2nd donation), Jean-B. N.
$22 (2nd donation), Michael R.
$22 (2nd donation), Oleksandr P.
$22 (2nd donation), Sylvain Brunerie
$22 (2nd donation), Thorsten S.
$22 (2nd donation), Vladimir S.
$22 (2nd donation), Volkmar G.
$22, Attila L.
$22, Bernd B.
$22, Bernd M.
$22, Cesar B.
$22, Christoph K.
$22, Daniel K.
$22, Davy V.
$22, Dieter L.
$22, Emil H.
$22, Florian H.
$22, Gerard C.
$22, Giampaolo N.
$22, Hugo Z.
$22, Imrich P.
$22, Janis L.
$22, Jefferson F.
$22, Joerg A.
$22, Klaus K.
$22, Laurent R.
$22, Leonardo S.
$22, Luis P.
$22, Mads Damgaard M.
$22, Marco F.
$22, Martin F.
$22, Michael W.
$22, Olcay Ö.
$22, Patrick L.
$22, Peter H.
$22, Peter L.
$22, Raphaël A.
$22, René H.
$22, Rico D.
$22, Rob T.
$22, Robert E.
$22, Robert M.
$22, Robert P.
$22, Rodion S.
$22, Sebastian P.
$21 (6th donation), Mario N.
$21 (4th donation), Lawrence K.
$21 (4th donation), Rienk R.
$21 (3rd donation), Johnny B.
$21 (2nd donation), Andrea V.
$21, Basil aka “Cätch”
$21, M
$21, Manuel L.
$21, Marcel
$21, Marcus R.
$21, Mario O.
$21, MICHELE B.
$21, Oliver J.
$21, Stichting Elektoor
$20 (45th donation), John D.
$20 (24th donation), Pawel M.
$20 (10th donation), Mark R.
$20 (7th donation), Ray W.
$20 (6th donation), Andrew D.
$20 (6th donation), Bezantnet, L.
$20 (6th donation), Eric W.
$20 (5th donation), Richard W.
$20 (4th donation), Alonzo J.
$20 (4th donation), Daniel S.
$20 (4th donation), David P.
$20 (4th donation), Geoff A.
$20 (4th donation), Martin F.
$20 (4th donation), Simon H.
$20 (4th donation), Steven M.
$20 (3rd donation), All-Access Customer
$20 (3rd donation), Christopher O.
$20 (3rd donation), Christopher W.
$20 (3rd donation), Darwin H.
$20 (3rd donation), Eric H.
$20 (3rd donation), John R.
$20 (3rd donation), Leela A.
$20 (3rd donation), Perry B.
$20 (2nd donation), Adam F.
$20 (2nd donation), DH
$20 (2nd donation), Jacob L.
$20 (2nd donation), Luke M.
$20 (2nd donation), Oren K.
$20, 2MC Home Solutions
$20, Andrew R.
$20, Brett H.
$20, Clinton B.
$20, Cynthia T.
$20, Dale B.
$20, David P.
$20, Dylan C.
$20, Earl P.
$20, Ernesto G.
$20, Frederick B.
$20, George A. R.
$20, George Quentin H.
$20, Jack C.
$20, Julian L.
$20, Max R.
$20, Steven R.
$20, T J S.
$20, Timothy D.
$16 (84th donation), Andreas S.
$15 (104th donation), Johann J.
$15 (14th donation), Fred B.
$15 (9th donation), Bogdan P.
$15, Alexander F.
$15, K V
$15, Kenneth S.
$15, Onerahtokon M.
$13 (2nd donation), Bernd S.
$13, Stefan B.
$12 (13th donation), Bengt Falke aka “Falke”
$12 (3rd donation), Alessandro S.
$12, Martin B.
$11 (58th donation), Daniel S.
$11 (45th donation), Thomas R.
$11 (34th donation), Tugaleres.com
$11 (32nd donation), Denys G. aka “GD Next
$11 (18th donation), Adis H.
$11 (17th donation), Francois B. aka “Makoto
$11 (15th donation), Frank J.
$11 (15th donation), Robert W.
$11 (14th donation), Alan B.
$11 (14th donation), Ronald S.
$11 (9th donation), Alfred H.
$11 (9th donation), Antoni Aloy Torrens
$11 (8th donation), Jeanmichel T.
$11 (8th donation), Jerome M.
$11 (7th donation), Mark W.
$11 (6th donation), H.V. L.
$11 (5th donation), Frank H.
$11 (5th donation), Jorge F. M.
$11 (4th donation), Gines S.
$11 (4th donation), Marco Z.
$11 (4th donation), Michele D.
$11 (4th donation), Peter S.
$11 (3rd donation), Andreas H.
$11 (3rd donation), Arvidas S.
$11 (3rd donation), Hakan C.
$11 (3rd donation), Matthew D.
$11 (2nd donation), Artem Ignatyev aka “ZaZooBred”
$11 (2nd donation), Christoph V.
$11 (2nd donation), Denis Š.
$11 (2nd donation), Etienne G.
$11 (2nd donation), Holger K.
$11 (2nd donation), Jean Charles A.
$11 (2nd donation), Junaid N.
$11 (2nd donation), M.B.
$11 (2nd donation), Markus Z.
$11 (2nd donation), Richard L.
$11 (2nd donation), Sergei Petrov
$11 (2nd donation), Thaha J.
$11, A. Dent
$11, Adam J.
$11, Alain C.
$11, Andreas W.
$11, Antonio S.
$11, Basil M.
$11, Bokor A.
$11, Chris L.
$11, Christian E.
$11, Christian H.
$11, Christian K.
$11, Christian O.
$11, Cristian G.
$11, Cristian Virgil B.
$11, Daniel A.
$11, Enea L.
$11, Fortunato M.
$11, Franco D.
$11, Georg W.
$11, Gerald H.
$11, Gerhard Z.
$11, Giuliano L.
$11, Guerrino C.
$11, Hakan C.
$11, Harald F.
$11, Igor C.
$11, Ines G.
$11, Jason C.
$11, Jerome L.
$11, Jochen M.
$11, Johanna F.
$11, John D.
$11, Jørn D.
$11, Kamil G.
$11, Krzysztof S.
$11, Leonard H.
$11, Marco P.
$11, Marek C.
$11, Martin D.
$11, Michael M.
$11, Michael W.
$11, Miloš H.
$11, Norman S.
$11, Oliver A.
$11, Paolo B.
$11, Pawat A.
$11, Peter T.
$11, Robert S.
$11, Roberto M.
$11, Rolf B.
$11, Romano C.
$11, Salvatore C.
$11, Sandor A.
$11, Saro E.
$11, Sascha A.
$11, Scholtz T.
$11, Stephan K.
$11, Thomas S.
$11, Thomas W.
$11, Thomas W.
$11, Troels R.
$11, Ulrich H.
$11, Umberto B.
$11, zukasz K.
$10 (107th donation), Thomas C.
$10 (26th donation), Bruce M.
$10 (18th donation), Slobodan Vrkacevic
$10 (15th donation), platypus products
$10 (14th donation), Tomi P.
$10 (11th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (10th donation), Kleiner Funk-Electronic
$10 (9th donation), redman
$10 (7th donation), Geoffrey P.
$10 (5th donation), Joseph G.
$10 (5th donation), Stan aka “Dataful.Tech
$10 (5th donation), Steven L.
$10 (4th donation), jacobsen.biz
$10 (4th donation), James N.
$10 (4th donation), Jefferson Fernando L.
$10 (3rd donation), Gene E.
$10 (3rd donation), Helena K.
$10 (3rd donation), Jorge Arturo V.
$10 (3rd donation), Narate T.
$10 (2nd donation), aka “Vel”
$10 (2nd donation), Abe Z.
$10 (2nd donation), Chris P.
$10 (2nd donation), Craig D.
$10 (2nd donation), Detlef D.
$10 (2nd donation), Gerold H.
$10 (2nd donation), Jonathan E D.
$10 (2nd donation), Jose Vicente M.
$10 (2nd donation), Sebit M.
$10 (2nd donation), Seby C.
$10, Alexander M.
$10, Alfred P.
$10, Andranik S.
$10, Carlos G.
$10, CHAN S. C.
$10, Chris P.
$10, CobyW50
$10, Dana W.
$10, Daniel G.
$10, ihar I.
$10, James G. C.
$10, John H.
$10, John M.
$10, Johnathan B.
$10, Lawrence C.
$10, leo M.
$10, Maarten van der Loo aka “Lodewijk”
$10, Murad M.
$10, Paul Ove M.
$10, Richard H.
$10, Roy F.
$10, Sergei S.
$10, SERGIO IVAN LIRA RODRIGUEZ
$10, Stephen M.
$10, Stephen W.
$10, Thomas D.
$10, Tizian D.
$10, William B.
$10, William L.
$184 from 46 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,528 patrons, for a sum of $3,810 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

Monthly News – February 2025

Par :Clem

Hi everyone,

Many thanks for your donations and support.

Here are the news for this month.

Important Firefox Update

On March 14, 2025, a root certificate used by Firefox will expire.

When this happen, Firefox version 128 (and lower) will suffer significant issues related to:

  • configuration
  • add-ons
  • signed content
  • DRM-protected media playback

To avoid these problems, make sure you’re up to date in your Update Manager. Press Refresh and apply all updates.

This is important for security reasons, and in this case it’s also important to avoid regressions.

Firefox 135.0.1 is available on all supported Linux Mint releases.

Firefox 135.0.1 was also sent as an emergency update to the following discontinued releases:

  • Linux Mint 19.3, 19.2, 19.1 and 19
  • LMDE 5
  • LMDE 4

If you are using a discontinued version of Linux Mint (20 or older) or LMDE (5 or older) please upgrade or reinstall Linux Mint.

For more information on upgrades read https://linuxmint-user-guide.readthedocs.io/en/latest/upgrade.html.

Website Maintenance

The backend for the main Linux Mint website was completely rewritten and containerized. This allowed us to minimize the interactions between the site and the hosting server, making it easier to upgrade the server and maintain/develop the website on different computers.

Sometimes we make a tiny little change and everybody loves it. This time it’s the opposite. It took a lot of time to get this done, yet nobody will be able to tell the difference.

The URLs were kept unchanged to avoid 404 errors.

Stripe was integrated and is now fully supported. Donations made with Stripe are now automatically handled and included in our stats.

Cinnamon App Menu

Work started on a redesign of the Cinnamon application menu.

This project is led by Joseph in our development team.

Here’s a preview of what it currently looks like:

Desktop and Release Stats

Our Datadog stats show us the following breakdown for our different desktops:

Note that these stats reflect downloads over the last 7 days, not usage.

Cinnamon represents 60% of our downloads, followed by Xfce and MATE at roughly 20% each.

The following chart gives us a breakdown per release:

Linux Mint 22.1 represents 70%, followed by LMDE 6 at 14%, Mint 22 at 8% and Mint 21.3, still relevant also at around 8%.

As previously announced, Linux Mint 22.x will not have an EDGE release. Starting with Linux Mint 22.2, the HWE kernel will be used.

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
DeepTide, LLC
HamoniKR
Tinken Inc
VANT

Donations in January:

A total of $18,676 were raised thanks to the generous contributions of 668 donors:

$300 (13th donation), Plamen Penev Atanasov
$250, Victor B.
$200 (3rd donation), Edmund B.
$200, Edgar Y.
$200, Robert F D.
$150, Adam S.
$140, RS
$120 (8th donation), Markus S.
$108 (9th donation), Christian G. aka “Chrissy”
$108 (5th donation), Kristoff S.
$108 (2nd donation), Peter V.
$108, Chris W.
$102, Data Eng team on behalf of Tymek!
$100 (37th donation), Wolfgang P.
$100 (22nd donation), Philip W.
$100 (18th donation), John Mc aka “Land Research Project”
$100 (9th donation), Jean P. R.
$100 (9th donation), Michael C.
$100 (7th donation), John B.
$100 (5th donation), Charles H.
$100 (5th donation), James F.
$100 (4th donation), Philip M.
$100 (3rd donation), David S.
$100 (3rd donation), Donald C.
$100 (3rd donation), Emily L.
$100 (3rd donation), Vincent P.
$100 (2nd donation), Charles W.
$100 (2nd donation), Steven W B.
$100, Curtis K.
$100, Daniel W.
$100, David T.
$100, Donkeydude
$100, Gary H.
$100, James P.
$100, Justin M.
$100, Kyle T.
$100, Pierre-emmanuel V.
$100, Robert H.
$100, Steven M.
$81 (3rd donation), Thomas B.
$80 (4th donation), Terry Ya!
$72 (2nd donation), Andy Frank S.
$54 (21st donation), Bernard H.
$54 (13th donation), Roland H.
$54 (10th donation), Mimi
$54 (9th donation), Jorge R. R.
$54 (9th donation), Peter W.
$54 (8th donation), Johanan M.
$54 (7th donation), Daniel K.
$54 (7th donation), Jean-luc W.
$54 (7th donation), Nurettin G.
$54 (7th donation), Rolf-Jürgen G.
$54 (6th donation), erwn16 aka “erwn”
$54 (6th donation), Gerald H.
$54 (6th donation), Marcin G.
$54 (6th donation), Thomas R.
$54 (5th donation), Bobby
$54 (5th donation), Guenter B.
$54 (5th donation), Winfried B.
$54 (4th donation), Athanasios M.
$54 (4th donation), Bernard R. aka “Beer4661”
$54 (4th donation), Gerard B.
$54 (4th donation), Karl-heinz P.
$54 (4th donation), Mark K.
$54 (4th donation), Stefan N.
$54 (3rd donation), Siegfried S.
$54 (2nd donation), Alfred G.
$54 (2nd donation), António Salsinha – Graphic Designer
$54 (2nd donation), Christian S.
$54 (2nd donation), Domagoj Ž.
$54 (2nd donation), Enrico V.
$54 (2nd donation), James C.
$54 (2nd donation), Klaas M.
$54 (2nd donation), Mori aka “Romio”
$54 (2nd donation), Peter S.
$54, Andreas K.
$54, Andrew R N.
$54, Craig E.
$54, Dieter H.
$54, Dirk M.
$54, Dominique S.
$54, Francesco G.
$54, Hannu H.
$54, Jens M.
$54, Jonathan H.
$54, Jostein T.
$54, Marc G.
$54, Michael J.
$54, Olivier C.
$54, Pablo V.
$54, Rainer Werner B.
$54, René B.
$54, Roberto G.
$54, Viv H.
$54, Walter V.
$54, Walter W.
$54, WebTradeSolutions
$50 (91st donation), Anthony C. aka “ciak”
$50 (16th donation), An L.
$50 (10th donation), Ian H White.
$50 (10th donation), Kyle S.
$50 (7th donation), David V.
$50 (6th donation), Herman B.
$50 (6th donation), James G.
$50 (6th donation), William C. aka “N4ES”
$50 (5th donation), Jaime F. Zarama
$50 (5th donation), Salomon G.
$50 (4th donation), Mike H.
$50 (4th donation), Mothy
$50 (3rd donation), Arestor B.
$50 (3rd donation), Derek B.
$50 (3rd donation), Don Jr.
$50 (3rd donation), Jay V.
$50 (3rd donation), Karl J.
$50 (3rd donation), M J W.
$50 (3rd donation), Patrick N.
$50 (3rd donation), Patrick T.
$50 (3rd donation), Shane B.
$50 (2nd donation), Andri A.
$50 (2nd donation), Jason G.
$50 (2nd donation), John M.
$50 (2nd donation), Joseph B.
$50 (2nd donation), Martin M.
$50 (2nd donation), Michael F.
$50 (2nd donation), Stephen L.
$50, 4 FUN LLC
$50, Alan G.
$50, Alfred C.
$50, Allen S.
$50, Carl F.
$50, Christopher M.
$50, Craig H.
$50, Douglas C.
$50, Glenn S.
$50, Hector G.
$50, Jaime A.
$50, John B.
$50, Jonathan S.
$50, Kenneth B.
$50, Kenneth S.
$50, Liam H.
$50, Matthew J Hunt
$50, Miles C.
$50, Peter N.
$50, Peter N.
$50, Robert P.
$50, Russell T.
$50, Tom M.
$50, Vincent E.
$45 (6th donation), William L.
$44 (2nd donation), Joachim F.
$43 (2nd donation), Martin .
$43, John N.
$43, Toni
$40 (32nd donation), Hemant Patel
$40 (8th donation), Darin W.
$40 (5th donation), Douglas R. aka “darco”
$40 (2nd donation), Christopher W.
$36, Jens V.
$36, Joachim K.
$35, Stefan K.
$35, Tom M.
$33 (2nd donation), Christopher B.
$32 (13th donation), H ScottB
$32 (7th donation), Wolfgang S.
$32 (6th donation), Gerardo A. M.
$32 (6th donation), Jürgen H.
$32 (3rd donation), Lukas P.
$32 (2nd donation), Gerard O.
$32, Claude V.
$32, Jan L.
$32, Thomas Schmall
$30 (24th donation), Kevin S. aka “K R Shook Consulting
$30 (11th donation), Thomas C.
$30 (6th donation), Anonymous
$30 (5th donation), aka “GM46”
$30 (3rd donation), macglen
$30 (2nd donation), Petur K.
$30, Axel W.
$27 (12th donation), Alexander M.
$27 (5th donation), Opik Oort
$27 (4th donation), Rob B.
$27 (3rd donation), Florian H.
$27 (3rd donation), Heiko K.
$27 (2nd donation), Matthias W.
$27, Andreas M.
$27, Bernhard K.
$27, Fabian B.
$27, Nico M.
$27, Pascal V.
$27, Philippe GM
$25 (83rd donation), Andreas S.
$25 (47th donation), Linux Mint Sverige
$25 (14th donation), Andrew Currie
$25 (9th donation), John T.
$25 (6th donation), Mihnea Rădulescu
$25 (4th donation), John A.
$25 (4th donation), Myron J.
$25 (3rd donation), James H.
$25 (3rd donation), John N.
$25 (3rd donation), Robert O.
$25 (2nd donation), Larry G.
$25 (2nd donation), Pablo J.
$25, D L R.
$25, Frank Z.
$25, Hector R.
$25, John B.
$25, Matt W.
$23, Rooter
$22 (56th donation), Peter E.
$22 (24th donation), Ke C.
$22 (22nd donation), Stefan W.
$22 (18th donation), Benjamin W. aka “UncleBens”
$22 (18th donation), Marek S.
$22 (11th donation), Dirk M.
$22 (10th donation), Daniel Gruhn
$22 (8th donation), Peter C.
$22 (8th donation), Robert D. aka “Wilbobob”
$22 (7th donation), Alberto A.
$22 (7th donation), Erik W.
$22 (7th donation), John V.
$22 (7th donation), Pavel P.
$22 (7th donation), Waldemar P. aka “valldek”
$22 (6th donation), Jan S.
$22 (6th donation), Jean, Jacques G.
$22 (6th donation), Jose M. K. Z.
$22 (6th donation), Thomas M.
$22 (5th donation), Benoit R.
$22 (5th donation), Raik D.
$22 (5th donation), Stefan E.
$22 (5th donation), Wouter W.
$22 (4th donation), Daniel K.
$22 (4th donation), Dragomir Deltchev aka “Drago”
$22 (3rd donation), Andrea C.
$22 (3rd donation), Edward A Lockhart
$22 (3rd donation), Frits M.
$22 (3rd donation), Giorgio B.
$22 (3rd donation), Henning P.
$22 (3rd donation), John Baines
$22 (3rd donation), Luca V.
$22 (3rd donation), Odie P.
$22 (3rd donation), Raffael V. aka “raffael”
$22 (3rd donation), Robert L.
$22 (3rd donation), Samy S.
$22 (3rd donation), Sławomir P.
$22 (2nd donation), Andrea C.
$22 (2nd donation), Antero K.
$22 (2nd donation), Benito R.
$22 (2nd donation), Bernd B.
$22 (2nd donation), Bernd H.
$22 (2nd donation), Christian M.
$22 (2nd donation), François D.
$22 (2nd donation), G. L.
$22 (2nd donation), Gb K.
$22 (2nd donation), Jean-yves D.
$22 (2nd donation), Jens R.
$22 (2nd donation), Loic D.
$22 (2nd donation), manuelvh
$22 (2nd donation), Mario D.
$22 (2nd donation), Michael A.
$22 (2nd donation), Michael J.
$22 (2nd donation), Mirko Z.
$22 (2nd donation), Philippe W.
$22 (2nd donation), Reinhard R.
$22 (2nd donation), Szymon N.
$22 (2nd donation), Tiberiu N.
$22 (2nd donation), Wolfgang P.
$22, Achim S.
$22, André G.
$22, Andreas F.
$22, Andrew S.
$22, Arwind S.
$22, Christoph W.
$22, David P.
$22, Denick M.
$22, Dieter B.
$22, Dirk S.
$22, Edgars S.
$22, Endre M.
$22, Felix G.
$22, Francisco J G.
$22, Frank K.
$22, Georges H.
$22, Georges M.
$22, Gideon K.
$22, Giovanni F.
$22, Harald Und Beate P.
$22, Harry P.
$22, Hendrikus T.
$22, Joseph D.
$22, Karl K.
$22, Marc H.
$22, Marco T.
$22, Marcus H.
$22, Matthias E.
$22, Matthias K.
$22, Michael K.
$22, Michel S.
$22, Mike G.
$22, Nicolas S.
$22, Noelle A.
$22, Oleksandr V.
$22, Pablo M.
$22, Rolandas B.
$22, Ronny G.
$22, Salvatore C.
$22, Simon W.
$22, Sven B. aka “OldFox”
$22, Sven L.
$22, Thomas G.
$22, Thomas J.
$22, Thomas S.
$22, Viktor W.
$22, Volker B.
$22, Werner M.
$22, Wolfgang R.
$20 (65th donation), Bryan F.
$20 (21st donation), Dave S.
$20 (16th donation), Vladimir Litvinenko
$20 (15th donation), Joao Kodama
$20 (14th donation), Terry B.
$20 (12th donation), John W.
$20 (10th donation), Andrei Sinkevich
$20 (8th donation), David K.
$20 (7th donation), Doug S.
$20 (7th donation), Kendall G.
$20 (7th donation), Lal C.
$20 (7th donation), Stacey B.
$20 (7th donation), Thomas N.
$20 (6th donation), Gareth L.
$20 (6th donation), Robert A.
$20 (6th donation), Robert S.
$20 (5th donation), Eric W.
$20 (5th donation), John P.
$20 (5th donation), Nicholas B.
$20 (4th donation), Nathan B. aka “Diginate ”
$20 (3rd donation), Ben M.
$20 (3rd donation), Michael R.
$20 (3rd donation), Robert W.
$20 (3rd donation), Steven W.
$20 (3rd donation), Tony W
$20 (3rd donation), Yotuel G.
$20 (2nd donation), Adam D.
$20 (2nd donation), Alex M.
$20 (2nd donation), Andrew R.
$20 (2nd donation), Goran M.
$20 (2nd donation), Hans-dieter W.
$20 (2nd donation), Ivo Kremer
$20 (2nd donation), John G.
$20 (2nd donation), Jonathan F.
$20 (2nd donation), Lee B.
$20 (2nd donation), Mark J.
$20 (2nd donation), Paul C.
$20 (2nd donation), Pencho P.
$20 (2nd donation), Phillip B.
$20 (2nd donation), Ron G.
$20, Chester J.
$20, Claudio Leonel S.
$20, Clifford J.
$20, Daniel C.
$20, David G.
$20, David H.
$20, David M.
$20, Dirk A.
$20, Edward G.
$20, Eric K.
$20, Fred P.
$20, Frederick J.
$20, Gilbert T.
$20, Gregg D.
$20, Halt Productions
$20, Jack B.
$20, Jean-cédric F.
$20, Jimmy H.
$20, John B.
$20, John H.
$20, John McKissick
$20, John S.
$20, Jonathan M.
$20, Justin S.
$20, Lucas R.
$20, Luis E.
$20, Michael H.
$20, Michael H.
$20, Norman C.
$20, Parsifal H.
$20, Paul J.
$20, Pradeep Gowda aka “btbytes
$20, Quebec
$20, Raymond R.
$20, S & CV Marshall
$20, SAVE4ENERGY
$20, Scott S.
$20, Tomasz K.
$20, Werner F.
$20, William W.
$19 (2nd donation), CercLL d’Entraide et Réseau Coopératif Autour des Logiciels Libres (LUG of Marseille, FR)
$16 (2nd donation), Günter S.
$16, Alain E.
$16, Michael A.
$16, Michael R.
$15 (16th donation), Michel C.
$14 (103rd donation), Johann J.
$13 (9th donation), Theofanis-Emmanouil T.
$13 (4th donation), Kiss J. aka “lowstar
$13 (2nd donation), Xabier A.
$13, Gordon L.
$13, Jean Francois B.
$12 (9th donation), Adian K.
$12 (5th donation), John W.
$12 (2nd donation), Alessandro S.
$11 (57th donation), Daniel S.
$11 (33rd donation), Tugaleres.com
$11 (31st donation), Denys G.
$11 (19th donation), Abdulkadir H. aka “Askari”
$11 (18th donation), Marc V. K.
$11 (17th donation), Michael P. aka “www.perron.de
$11 (15th donation), Christian B.
$11 (13th donation), Aimless Games
$11 (13th donation), Dominique M.
$11 (13th donation), JCSenar – linuxirun.com
$11 (13th donation), Ronald S.
$11 (12th donation), Rupert B.
$11 (11th donation), Axel R.
$11 (11th donation), Darius O.
$11 (11th donation), Juergen M. B.
$11 (10th donation), Laurent M
$11 (10th donation), Roland Smit
$11 (7th donation), Joerg B.
$11 (6th donation), Hamid N.
$11 (6th donation), Mario I.
$11 (6th donation), Thomas L. aka “hensys”
$11 (5th donation), Günther H.
$11 (5th donation), HM Magnusson
$11 (5th donation), Steven J. L.
$11 (4th donation), Aleksi L.
$11 (4th donation), Andre T.
$11 (4th donation), Balazs S.
$11 (4th donation), Carlo B.
$11 (4th donation), Christophe L.
$11 (4th donation), Davide M.
$11 (4th donation), Erich G.
$11 (4th donation), Fabio
$11 (4th donation), Gerhard H.
$11 (4th donation), Nabil aka “Billy”
$11 (4th donation), Thomas B.
$11 (4th donation), Yanko N.
$11 (3rd donation), Arnis D.
$11 (3rd donation), Daniele V.
$11 (3rd donation), Giovanni P.
$11 (3rd donation), Martin G.
$11 (3rd donation), Pasquale D.
$11 (3rd donation), X F C.
$11 (2nd donation), Alan L.
$11 (2nd donation), Alejandro G.
$11 (2nd donation), Aleksei V.
$11 (2nd donation), Alessio R.
$11 (2nd donation), Arvidas S.
$11 (2nd donation), Christian F.
$11 (2nd donation), Dinos E.
$11 (2nd donation), Francisco Rafael H.
$11 (2nd donation), Frederik H.
$11 (2nd donation), Jasper V.
$11 (2nd donation), Jörg H.
$11 (2nd donation), Kenzo Manuel
$11 (2nd donation), Paul dB
$11 (2nd donation), Ronny K.
$11 (2nd donation), Walter W.
$11, Aitor S.
$11, Alberto Z.
$11, Andrii Y.
$11, Anna E.
$11, Anonymous
$11, Antonio M.
$11, Artem Ignatyev aka “ZaZooBred”
$11, Bastian H.
$11, Bernard H.
$11, Chris P.
$11, Chris W.
$11, Christian M.
$11, Christopher K.
$11, Dieter T.
$11, Dirk R.
$11, Fardis M.
$11, Florian S.
$11, Frank W.
$11, Frédéric L.
$11, Gaetano C.
$11, Georgios T.
$11, Ger P.
$11, Gerd S.
$11, Giampaolo V.
$11, Gianluigi D.
$11, Giovanni S.
$11, Giusseppe Domínguez aka “gsp
$11, Gojko M.
$11, Harald M.
$11, Jacques P.
$11, James K.
$11, John D.
$11, Jonathan E D.
$11, Jose V M.
$11, Julian K.
$11, Klaus B.
$11, Klaus-dieter K.
$11, Lars W.
$11, linux-helt-enkelt v/Ketil Ervik
$11, Lydia S.
$11, Malcolm J.
$11, Marc L.
$11, Markus K.
$11, Mathias S.
$11, Mattia T.
$11, Michal G.
$11, Michelle B.
$11, Mik Prims
$11, Mirko S.
$11, Moreno M.
$11, Rolf S.
$11, Seweryn M.
$11, Simo P.
$11, Soutarson P.
$11, Stefan L.
$11, Stefan W.
$11, Stephane S.
$11, Taylan G.
$11, Thomas M.
$11, Tzvetan Hristov H.
$11, Vlad I.
$11, Walter R.
$11, Yvonne H.
$10 (106th donation), Thomas C.
$10 (51st donation), Philip Woodward
$10 (16th donation), Thevirtua
$10 (15th donation), Benjamin S. aka “fantasybenji”
$10 (10th donation), Neil B.
$10 (10th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (8th donation), redman
$10 (6th donation), Jody M.
$10 (5th donation), Daniel Greg aka “006.5”
$10 (5th donation), Rimon K.
$10 (5th donation), Szymon R.
$10 (5th donation), William C.
$10 (4th donation), Harry W.
$10 (4th donation), Henrique D.
$10 (4th donation), John H.
$10 (4th donation), Stan aka “Dataful.Tech
$10 (4th donation), Steven L.
$10 (3rd donation), Evan M.
$10 (3rd donation), Gregory M.
$10 (3rd donation), Ian E.
$10 (3rd donation), N K.
$10 (2nd donation), Edward M K.
$10 (2nd donation), Gene E.
$10 (2nd donation), Kai P.
$10 (2nd donation), Michael E.
$10 (2nd donation), Mike P.
$10 (2nd donation), Mj J.
$10 (2nd donation), Paulo De Tarso A.
$10,
$10, Alex B.
$10, Allen T.
$10, Ari G.
$10, Blair’s Computer Service
$10, Brendan C.
$10, Cody G.
$10, Craig D.
$10, Dale H.
$10, David W.
$10, Davis J.
$10, Dzmitry B.
$10, Edward H.
$10, Ground Glass Productions
$10, Jim M.
$10, Jonathan T.
$10, Juan G.
$10, Justin F.
$10, Luther F.
$10, Melvin R.
$10, MyIndex
$10, Nicholas P.
$10, Optimizare SEO
$10, Oriel C.
$10, Richard L.
$10, Trevor D.
$10, Tyler S.
$10, Wallace A.
$9, Daniel P.
$9, Michael Philipp M.
$8 (30th donation), Blazej P. aka “bleyzer”
$8 (2nd donation), Dirk B. aka “sur4k”
$7, Thomas C.
$6 (94th donation), Eugene T.
$6 (41st donation), Oleksandr P.
$6 (5th donation), Józef S.
$6, Anastasios I.
$6, Arnau H.
$281 from 66 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,489 patrons, for a sum of $4,090 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

Monthly News – January 2025

Par :Clem

Hi everyone,

We received donations from 852 people in December, for an all-time monthly record of $31,720!

Every time this number goes up I think of it the same way. I imagine that many people in one big room, all there just for us. Imagine it for a moment. It’s huge, not only in terms of support but in terms of validation and motivation for the entire team.

December celebrates the holidays, the end of the year and a new Linux Mint release. We get more donations in December than in any other month. It’s never been that high before though.

We see a compliment here and a sign that you really enjoyed our work. I’d like to thank you for this gift and for this message. Many many thanks for doing this for us!

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
DeepTide, LLC
HamoniKR
Tinken Inc
VANT

Donations in December:

A total of $31,720 were raised thanks to the generous contributions of 852 donors:

$1294 (2nd donation), Jan S.
$1000 (7th donation), Gerald L.
$1000 (5th donation), B
$539 (2nd donation), Joshua G. aka “Heptaveegesimal
$431 (7th donation), Tanev, T.
$377 (5th donation), Soldev sàrl
$377, Markus B.
$335 (2nd donation), Andrey P.
$323, Matthew M.
$265 (17th donation), John Mc aka “Land Research Project”
$250 (3rd donation), Lauren A.
$216 (7th donation), Marcus H.
$216 (5th donation), Franky W.
$200 (12th donation), Plamen Penev Atanasov
$200 (3rd donation), David R.
$200 (2nd donation), James W.
$200, John R.
$200, Joseph F.
$200, Nicolas M.
$162 (5th donation), Gianni O.
$162 (5th donation), Wolfgang S.
$162, Thomas P.
$150 (4th donation), Michel R.
$129 (2nd donation), Karljosef K.
$125, David B.
$108 (9th donation), aka “Phantasus
$108 (8th donation), Walter K.
$108 (5th donation), Nicolas S.
$108 (4th donation), Johan V. D. K.
$108 (4th donation), Marco van den Berg
$108 (3rd donation), Torsten M.
$108 (2nd donation), Gabriele R.
$108 (2nd donation), Marcel R.
$108 (2nd donation), Uwe K.
$108, Dirk H.
$108, Malte F.
$108, Manuel C.
$108, Marco H.
$108, Martin S.
$108, Steven G.
$108, Tom N.
$101 (2nd donation), Josh L.
$100 (25th donation), Hans J.
$100 (13th donation), Mountain Computers, Inc aka “MTNCOMP aka GGPCTU
$100 (10th donation), Michael S.
$100 (6th donation), William C.
$100 (5th donation), Urban R.
$100 (4th donation), James F.
$100 (4th donation), James J. Q.
$100 (4th donation), Matt S.
$100 (3rd donation), Michael H.
$100 (2nd donation), John A.
$100 (2nd donation), Rodney B.
$100 (2nd donation), William D.
$100, Aaron S.
$100, Donald A.
$100, Janice H.
$100, Kenneth W.
$100, Terrence A J.
$86 (2nd donation), Jean-françois G.
$81 (6th donation), Jean-baptiste P.
$75 (10th donation), Jeff S.
$75 (6th donation), Frank R.
$75, James S.
$75, Peter W.
$68, Vivian D.
$65 (4th donation), Ulrich W.
$60, Stanley P.
$55 (8th donation), Chris M.
$54 (21st donation), Per J.
$54 (17th donation), Paul S. E. aka “Paul”
$54 (14th donation), Torsten P.
$54 (13th donation), Hans-Georg Thien
$54 (11th donation), More Linux
$54 (10th donation), Martin R.
$54 (9th donation), Karl H.
$54 (8th donation), Jose L. D.
$54 (8th donation), Jyrki A.
$54 (7th donation), Armin F.
$54 (7th donation), Brian S.
$54 (7th donation), Johanan M.
$54 (7th donation), Ronald Severin
$54 (7th donation), Uwe O.
$54 (6th donation), Bernhard M.
$54 (6th donation), Christian T.
$54 (6th donation), Dominique P.
$54 (6th donation), Luis R.
$54 (6th donation), Rosanna & Alex
$54 (5th donation), Anton M.
$54 (5th donation), Florian L.
$54 (5th donation), Gilles S.
$54 (5th donation), Malte K.
$54 (5th donation), Sébastien B.
$54 (4th donation), Isabell C.
$54 (4th donation), Stefan B.
$54 (3rd donation), Cecilio P.
$54 (3rd donation), Leo P.
$54 (3rd donation), Lothar S.
$54 (3rd donation), Matthias R.
$54 (3rd donation), Reinhold S.
$54 (3rd donation), Wolfgang W.
$54 (2nd donation), Alexander B.
$54 (2nd donation), Arie N.
$54 (2nd donation), Benoît H.
$54 (2nd donation), Bernt Stefan Angelo A.
$54 (2nd donation), Ciaran S.
$54 (2nd donation), Daniel Kassner
$54 (2nd donation), Heinz Martin D.
$54 (2nd donation), Hubert S.
$54 (2nd donation), Joachim S.
$54 (2nd donation), Kai K.
$54 (2nd donation), Ludovic M.
$54 (2nd donation), Matthias G.
$54 (2nd donation), Pauli K.
$54 (2nd donation), Ralf G. A.
$54 (2nd donation), Reinhard B.
$54 (2nd donation), Ronald K.
$54 (2nd donation), Udo L.
$54, aka “deroppi”
$54, Aer H.
$54, Andreas F.
$54, Christian S.
$54, Clemens L.
$54, Daniel L.
$54, Denis C.
$54, Dominik S.
$54, Dominique D.
$54, Eimar K.
$54, Enrico M.
$54, Eugenio B.
$54, Germain C.
$54, Håkan F.
$54, Henry R.
$54, Joerg S.
$54, Johannes B.
$54, Martin F.
$54, Mauro G.
$54, Miikka K.
$54, Olaf W.
$54, Pierric W.
$54, Raoul P.
$54, Robert G.
$54, Ronny J.
$54, Silvan S.
$54, Silvano P.
$54, Stefan W.
$54, Volker W.
$50 (90th donation), Anthony C. aka “ciak”
$50 (13th donation), Robert D. aka “MacDhai
$50 (10th donation), Christophe Caillé aka “KKY”
$50 (10th donation), Stuart B.
$50 (9th donation), David S.
$50 (9th donation), Michael T.
$50 (9th donation), William G.
$50 (8th donation), Bob Tregilus
$50 (8th donation), Ralph P.
$50 (8th donation), Stacey F.
$50 (7th donation), Al B.
$50 (7th donation), GELvdH
$50 (6th donation), David K.
$50 (5th donation), Chris C.
$50 (5th donation), Jim W.
$50 (5th donation), Kurt T.
$50 (5th donation), Stuart C. D.
$50 (5th donation), William T. aka “Beel
$50 (4th donation), Doug S.
$50 (4th donation), Douglas J.
$50 (4th donation), Gilles B.
$50 (4th donation), Peter C.
$50 (3rd donation), Brian B.
$50 (3rd donation), Corey P.
$50 (3rd donation), David Diaz
$50 (3rd donation), Evan S.
$50 (3rd donation), Julie A G.
$50 (3rd donation), Leland M.
$50 (3rd donation), Melvin M.
$50 (3rd donation), Mothy
$50 (3rd donation), Todd P.
$50 (2nd donation), Dan B.
$50 (2nd donation), David B.
$50 (2nd donation), Frank J.
$50 (2nd donation), Gary E.
$50 (2nd donation), John B.
$50 (2nd donation), Kody B.
$50 (2nd donation), Lee J.
$50 (2nd donation), Mark M.
$50 (2nd donation), Martin-pierre L.
$50 (2nd donation), Matthew C.
$50 (2nd donation), Papa’s Voice Audio LLC
$50 (2nd donation), Schneider Wood Working
$50 (2nd donation), Steven O.
$50 (2nd donation), Vincent P.
$50 (2nd donation), William M.
$50, Alfred W.
$50, Andrew S.
$50, Christopher S.
$50, Dave N.
$50, Edgar R.
$50, Frank O.
$50, Hamza 21
$50, Humberto C.
$50, John M.
$50, John S.
$50, Joshua G.
$50, Michael H.
$50, Michael L.
$50, Michael W.
$50, Ralph K.
$50, RAMPSHQ.COM
$50, Robert M.
$50, Scott S.
$50, Shawn H.
$50, Stephen R.
$50, Teddy W.
$50, Terry K.
$50, William M.
$49 (5th donation), Ingo S.
$45 (3rd donation), Flint W. O.
$44 (2nd donation), Juri N.
$43 (11th donation), Pavel B.
$43 (6th donation), Mathias P.
$43 (3rd donation), Bogdan O.
$43 (3rd donation), Floris V.
$40 (6th donation), Daniel T.
$40 (5th donation), Richard M.
$40 (4th donation), Paul S.
$40 (4th donation), Stefan E.
$40 (4th donation), Steve K.
$40 (3rd donation), Timothy R.
$40, Paul P.
$40, Sam S.
$38, Alessio Bolognini
$38, Walter G.
$37, Eric F.
$35 (11th donation), John Eady
$35 (4th donation), Steven H.
$35 (3rd donation), P W E.
$34 (3rd donation), Daniel H.
$32 (14th donation), Luca D.
$32 (14th donation), Marc S.
$32 (11th donation), Wolfgang N.
$32 (9th donation), Jürgen F.
$32 (8th donation), Daniel K.
$32 (7th donation), Frank B.
$32 (6th donation), Anthony G M.
$32 (5th donation), Grzegorz I.
$32 (4th donation), Marie-josee B.
$32 (4th donation), Raimund L.
$32 (3rd donation), Marcus R.
$32 (3rd donation), Rene G.
$32 (2nd donation), Bastian K.
$32 (2nd donation), Boris B.
$32 (2nd donation), Karl Felix K.
$32 (2nd donation), Manfred S.
$32, Annegret O.
$32, Graham P.
$32, Matthias G.
$32, Matthias W.
$32, Peter T.
$32, Thomas K.
$32, Walter G.
$31 (19th donation), Adam K.
$31 (8th donation), Graeme M. J.
$30 (6th donation), Larry B.
$30 (3rd donation), Bart L.
$30 (3rd donation), Greg P.
$30 (2nd donation), Owen L.
$30 (2nd donation), Veronique K.
$30, Dr. Dale
$30, Judy S.
$30, Tal O.
$27 (14th donation), Bill Metzenthen
$27 (10th donation), Peter Schallmoser-Schlogl
$27 (7th donation), Alessio B.
$27 (7th donation), Herberth M.
$27 (5th donation), Chris F.
$27 (5th donation), David Fletcher
$27 (5th donation), Miss anon aka “Anonymous ”
$27 (4th donation), Christoph F.
$27 (4th donation), Gerhard K.
$27 (4th donation), Guenther M.
$27 (4th donation), Marius A.
$27 (4th donation), Sape S.
$27 (3rd donation), Alexander W.
$27 (3rd donation), Mark
$27 (3rd donation), Rainer G.
$27 (2nd donation), Joseph B.
$27, Andrew G.
$27, Florian W.
$27, Jens K.
$27, Tony J.
$26 (69th donation), Michael R.
$26 (2nd donation), Dennis H.
$25 (102th donation), Johann J.
$25 (46th donation), Linux Mint Sverige
$25 (20th donation), George R. aka “Az4x4”
$25 (12th donation), Timothy C.
$25 (12th donation), Todd W.
$25 (11th donation), John W.
$25 (9th donation), Edmond I.
$25 (9th donation), Robert S.
$25 (9th donation), Roy Q.
$25 (7th donation), Thomas H.
$25 (5th donation), Craig B.
$25 (5th donation), Edward C.
$25 (5th donation), Mihnea Rădulescu
$25 (4th donation), John P.
$25 (4th donation), Kevin R.
$25 (3rd donation), Arun M.
$25 (3rd donation), Chris L.
$25 (3rd donation), Kelechi A.
$25 (2nd donation), Andrew R.
$25 (2nd donation), Carol B.
$25 (2nd donation), John N.
$25 (2nd donation), Laura S.
$25, Chris H.
$25, David M.
$25, Larry H.
$25, Maxime L.
$25, Richard T.
$25, Simon B.
$22 (55th donation), Peter E.
$22 (27th donation), Kevin O. aka “Kev”
$22 (22nd donation), Nigel B.
$22 (20th donation), Arvis Lācis aka “arvislacis
$22 (20th donation), Stefan W.
$22 (17th donation), Benjamin W. aka “UncleBens”
$22 (17th donation), Marek S.
$22 (14th donation), Frank J.
$22 (13th donation), Henrik H.
$22 (11th donation), Bernhard L.
$22 (11th donation), Dimitar S.
$22 (11th donation), Frank V.
$22 (11th donation), Gabriele Bandini aka “GiBi Gab
$22 (9th donation), Gabriele B.
$22 (8th donation), Gerhard A.
$22 (8th donation), Giovanni D. S. aka “ChibiOS
$22 (8th donation), Manfred W.
$22 (8th donation), Marco P.
$22 (8th donation), Richard L. F.
$22 (8th donation), Sebastian J.
$22 (8th donation), Vidal Santos
$22 (7th donation), Kai H.
$22 (7th donation), Stefan S.
$22 (6th donation), aka “Max”
$22 (6th donation), RobH
$22 (5th donation), Andreas F.
$22 (5th donation), Andreas F.
$22 (5th donation), Florian S.
$22 (5th donation), Frank R.
$22 (5th donation), Ingo P.
$22 (5th donation), Jens F.
$22 (5th donation), Mario N.
$22 (4th donation), Anthony S.
$22 (4th donation), Carsten M.
$22 (4th donation), Christian S.
$22 (4th donation), Harald U.
$22 (4th donation), Jean-francois L.
$22 (4th donation), Konstantinos K. aka “SV1XV
$22 (4th donation), Ludwig K.
$22 (4th donation), Nils D. aka “Akron
$22 (4th donation), Olaf K.
$22 (4th donation), Raul A.
$22 (4th donation), Sybren H.
$22 (3rd donation), Andrea T. aka “atasc”
$22 (3rd donation), Antun K.
$22 (3rd donation), Charles K.
$22 (3rd donation), Christoph M.
$22 (3rd donation), Grega K.
$22 (3rd donation), Hugo L.
$22 (3rd donation), Jan B.
$22 (3rd donation), Joshua W.
$22 (3rd donation), Marc LASTHAUS
$22 (3rd donation), Rudolf M.
$22 (3rd donation), Sebastian G.
$22 (3rd donation), Sinan B.
$22 (3rd donation), Stefan Korn – Webentwicklung
$22 (2nd donation), Albert P.
$22 (2nd donation), Antonio S.
$22 (2nd donation), Carsten S.
$22 (2nd donation), Christian J.
$22 (2nd donation), Dimitrios S.
$22 (2nd donation), F. E.
$22 (2nd donation), Florian B.
$22 (2nd donation), Heinz-juergen B.
$22 (2nd donation), Hristo B.
$22 (2nd donation), Ingo P.
$22 (2nd donation), Janos V.
$22 (2nd donation), Joachim W.
$22 (2nd donation), John B.
$22 (2nd donation), José Luis D.
$22 (2nd donation), Josef C.
$22 (2nd donation), Marc R.
$22 (2nd donation), Nils L.
$22 (2nd donation), Peter S.
$22 (2nd donation), Reimund M.
$22 (2nd donation), Samuel C.
$22 (2nd donation), Zsolnay I.
$22, Ajay R.
$22, Albrecht S.
$22, Aleksander A.
$22, Alexander B.
$22, Andrea B.
$22, Andrea T.
$22, Andreas F.
$22, Andreas K.
$22, Andreas S.
$22, Angelo S.
$22, Anne-Pierre aka “A-PP”
$22, Anton S.
$22, Benjamin E.
$22, Benjamin L.
$22, Bernd M.
$22, Bradley F.
$22, Christoph H.
$22, Christopher H.
$22, Dirk S.
$22, Dusan K.
$22, Emilie H.
$22, Fabio A.
$22, Florian A.
$22, Franck M.
$22, Fred H.
$22, Friedhelm M.
$22, Georg T.
$22, Gerhard K.
$22, Guillaume V.
$22, Hans S.
$22, Hartmut G.
$22, Hermann C.
$22, Jacques C.
$22, Joachim K.
$22, Jochen R.
$22, Jochen S.
$22, Johan F.
$22, John B.
$22, Kai N.
$22, Kai S.
$22, Karl A.
$22, Klaus K.
$22, Klaus V.
$22, Lars O.
$22, Leif J.
$22, Lutz B.
$22, Magnus I.
$22, Mandon P.
$22, Michael D.
$22, Michael G.
$22, Mike S.
$22, Nicolas B.
$22, Oliver A.
$22, Oliver K.
$22, Paul G.
$22, Philipp H.
$22, Philippe C.
$22, Reiner L.
$22, Remy D.
$22, Renaud A.
$22, RMC
$22, Sascha B.
$22, Sebastian A.
$22, Sebastian B.
$22, Simeon E.
$22, Simon J.
$22, Soterios VOF
$22, Thaha J.
$22, Thomas H.
$22, Thomas I.
$22, Thomas M.
$22, Thomas V.
$22, Tillmann W.
$22, Tristan M.
$22, Tudor P.
$22, vcsfrl
$22, Volkmar G.
$22, Weinand S.
$22, Wilfried Z.
$20 (64th donation), Bryan F.
$20 (44th donation), John D.
$20 (31st donation), vagrantcow
$20 (13th donation), Terry B.
$20 (9th donation), Mark R.
$20 (8th donation), John T.
$20 (6th donation), Cuauhtemoc M.
$20 (6th donation), Frank F.
$20 (6th donation), youme
$20 (5th donation), Andrew D.
$20 (5th donation), Dimitrios G.
$20 (5th donation), Frederick S.
$20 (5th donation), Timothy S.
$20 (4th donation), Blake P.
$20 (4th donation), David Morris aka “DPMorris”
$20 (4th donation), Eric W.
$20 (4th donation), Jason T.
$20 (4th donation), Vincent A.
$20 (3rd donation), Bede W.
$20 (3rd donation), David P.
$20 (3rd donation), Ken B.
$20 (3rd donation), Rune J.
$20 (3rd donation), Stephen B.
$20 (3rd donation), William S.
$20 (2nd donation), Alejandro R.
$20 (2nd donation), Craig C.
$20 (2nd donation), Dion D.
$20 (2nd donation), Edgar Osvaldo R.
$20 (2nd donation), Ian M.
$20 (2nd donation), Leela A.
$20 (2nd donation), Michael M.
$20 (2nd donation), Patrick N.
$20 (2nd donation), Pavel P.
$20 (2nd donation), Peter S.
$20 (2nd donation), Pierre-luc Daoust aka “Monsieur P-L
$20 (2nd donation), Raymond J.
$20 (2nd donation), Raymond T.
$20 (2nd donation), Richard S.
$20 (2nd donation), Robert H.
$20 (2nd donation), Roger S.
$20 (2nd donation), Sara P.
$20, Alexander F.
$20, Alexander L.
$20, Andrew B.
$20, Arthur M.
$20, Brad S.
$20, Brandon M.
$20, Christopher N.
$20, Claudio Z.
$20, Dane P.
$20, Daniel B.
$20, David G.
$20, Dinilson P.
$20, Don M.
$20, Elvis A.
$20, Fredric F.
$20, Gary M.
$20, Gary S.
$20, Jason P.
$20, Jesus J H.
$20, Jill M.
$20, Johnnie Q.
$20, Jorge G.
$20, Keith C.
$20, Liran Nuna aka “LiraNuna”
$20, Martin P.
$20, Matt W.
$20, Mike,beth B.
$20, Neil K.
$20, Oliver P.
$20, Paul D.
$20, Paul S.
$20, Phillip B.
$20, Robert B.
$20, Robert S.
$20, Rose B. aka “lumina_
$20, Russell N.
$20, Sanborn M.
$20, Sean S.
$20, Stephen O.
$20, Tapio S.
$20, Timothy M.
$20, Urs W.
$20, Werner Streich
$20, William M.
$17, Terry R.
$16 (82th donation), Andreas S.
$16 (5th donation), Andreas Agoumis aka “IntCon”
$16 (5th donation), Gorazd B.
$16 (4th donation), E. V. S. .
$16 (4th donation), Philippe F.
$16 (3rd donation), Edoardo R.
$16 (2nd donation), Fabio R.
$16 (2nd donation), Ralph-michael M.
$16, Jonathan C.
$16, Tobias B.
$16, Yoann P.
$15 (7th donation), Marcin A.
$15 (3rd donation), Steven L.
$14 (2nd donation), Tony L.
$13 (3rd donation), Andreas R.
$13 (2nd donation), Roger R.
$13, Daniël P.
$13, Gj F.
$13, Ronald B.
$12 (4th donation), Henk-jan J.
$12 (2nd donation), Shane B.
$12, Alessandro S.
$12, Riccardo B.
$11 (56th donation), Daniel S.
$11 (32nd donation), Tugaleres.com
$11 (30th donation), Denys G.
$11 (21st donation), Jürgen K.
$11 (17th donation), Gerard C.
$11 (17th donation), Yves R. aka “Long_Time_User”
$11 (14th donation), Christian B.
$11 (12th donation), Emanuele Proietti aka “Manuermejo”
$11 (12th donation), Karlheinz R.
$11 (11th donation), Pierre G.
$11 (8th donation), Florian J.
$11 (8th donation), Guillaume O. aka “Gandalf81”
$11 (7th donation), Jacques V.
$11 (7th donation), Paolo C.
$11 (6th donation), Elias B.
$11 (6th donation), J M. H. C.
$11 (6th donation), Jan Z.
$11 (6th donation), Ulrich P.
$11 (5th donation), Aghiles C.
$11 (5th donation), Bernd R.
$11 (5th donation), Daniel A.
$11 (5th donation), Jaroslaw W.
$11 (5th donation), Jose J.
$11 (5th donation), Maurizio Giacobbe aka “maurizioweb
$11 (5th donation), Michael K.
$11 (4th donation), Benjamin L. aka “indivisual
$11 (4th donation), Elmar V.
$11 (4th donation), Fais T.
$11 (4th donation), Fergus T.
$11 (4th donation), Gerald H.
$11 (4th donation), Haris A.
$11 (4th donation), Iker L.
$11 (4th donation), Marco B. aka “Erouc
$11 (3rd donation), Andreas Z.
$11 (3rd donation), David P.
$11 (3rd donation), Florian A.
$11 (3rd donation), Linus K.
$11 (3rd donation), Marijn V.
$11 (3rd donation), Marko U.
$11 (3rd donation), Maysi2k aka “Maysi2k
$11 (3rd donation), Michele D.
$11 (3rd donation), RedFox
$11 (3rd donation), Stefan E.
$11 (3rd donation), Thomas K.
$11 (3rd donation), Ulrich B.
$11 (3rd donation), Volker S.
$11 (2nd donation), Ds
$11 (2nd donation), Hans A.
$11 (2nd donation), Iztok M.
$11 (2nd donation), Jorge G.
$11 (2nd donation), Mauro P.
$11 (2nd donation), Michael V.
$11 (2nd donation), Piermarcello P.
$11 (2nd donation), Sasa B.
$11 (2nd donation), Sebastian H.
$11 (2nd donation), Thomas F.
$11 (2nd donation), X F C.
$11, Alejandro D.
$11, Alexis C.
$11, Andreas M.
$11, Andrejas H.
$11, Antonios C.
$11, Ardawan R.
$11, Arne R.
$11, Artur H.
$11, Arvidas S.
$11, Beat L.
$11, Bernd S.
$11, Branislav M.
$11, Brendan K.
$11, Carlos V.
$11, Catherine B.
$11, Christian S.
$11, Claus E.
$11, Daniel B.
$11, Daniele B.
$11, Dietmar G.
$11, Dragan Erik L.
$11, Eugen K.
$11, Fabio S.
$11, Fast Copy
$11, Florian Q.
$11, Frank R.
$11, Fredy R.
$11, Gb K.
$11, Geir
$11, Giuseppe Francesco Aldo R.
$11, Iain R.
$11, Jacob S.
$11, Jan Frederik H.
$11, Jivko R.
$11, Jordi C.
$11, José F.
$11, Jose Manuel L.
$11, Josep C.
$11, Karel S.
$11, Klaas T.
$11, Klub patel historie
$11, Laszlo B.
$11, Laszlo B.
$11, Lubomir C.
$11, Marcio R.
$11, Marko K.
$11, Markus H.
$11, Maron V.
$11, Martin R.
$11, Martin S.
$11, Mathias Z.
$11, Mauro D.
$11, Maximilian M.
$11, Michael C.
$11, Michaël D.
$11, Michael K.
$11, Michael L.
$11, Nicolas S.
$11, Peter B.
$11, Peter F.
$11, Peter N.
$11, Reiner K.
$11, Rodney D.
$11, Rodrigo S.
$11, Romain V.
$11, Samar A.
$11, Santiago M.
$11, Sebastian T.
$11, Siegfried K.
$11, Stanislaw S.
$11, Stella S.
$11, Sune B.
$11, Sven F.
$11, Ulrich E.
$11, Wojciech W.
$10 (105th donation), Thomas C.
$10 (50th donation), Philip Woodward
$10 (37th donation), Carpet Cleaning Winnipeg
$10 (27th donation), Wilson G.
$10 (25th donation), Bruce M.
$10 (15th donation), Michael V.
$10 (14th donation), platypus products
$10 (12th donation), Gustavo A. B.
$10 (11th donation), Michael K.
$10 (9th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (8th donation), Eric L.
$10 (7th donation), Mario M.
$10 (6th donation), David W.
$10 (5th donation), Joseph J.
$10 (5th donation), Lloyd H.
$10 (4th donation), Attila C.
$10 (4th donation), Marco Z.
$10 (3rd donation), Blanford B.
$10 (3rd donation), Byron D.
$10 (3rd donation), Elvio Lampugnani aka “elviolmp”
$10 (3rd donation), Hugh R.
$10 (3rd donation), Jeffery S.
$10 (3rd donation), Michael H.
$10 (3rd donation), Michael W.
$10 (3rd donation), Stan aka “Dataful.Tech
$10 (2nd donation), Brian O.
$10 (2nd donation), Carlos V M.
$10 (2nd donation), Gehova L.
$10 (2nd donation), Gregory B.
$10 (2nd donation), H. Balázs aka “JegesMAC”
$10 (2nd donation), Jeff S.
$10 (2nd donation), Petr V.
$10 (2nd donation), Richard H B.
$10 (2nd donation), Robert P.
$10 (2nd donation), Stanton P.
$10 (2nd donation), The Original Nutshell SmokeCage Corporation
$10 (2nd donation), Vesa A.
$10 (2nd donation), Zebh
$10, Adhyan P.
$10, Alessandro B.
$10, Axel Z.
$10, Ben K.
$10, Brandon W.
$10, Chet Bourg
$10, Cory T.
$10, D L.
$10, Edward I.
$10, Ernest A.
$10, Evgenii K.
$10, Gene E.
$10, James P.
$10, Javier T.
$10, Jens U.
$10, Jim J.
$10, Jose H.
$10, Karl Kristen S.
$10, Lucien L.
$10, Mark M.
$10, Matt D.
$10, Michael W.
$10, Nicholas A.
$10, Pablo L.
$10, Pierre F.
$10, Ralph B.
$10, Ricardo B.
$10, Rusty Rooster Antiques
$10, Rylee W.
$10, Sergei V.
$10, Thomas M.
$10, Todd I.
$10, Wade H.
$10, Will Perez Ronderos aka “munecito”
$10, William G.
$9, Szymon S.
$226 from 52 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,467 patrons, for a sum of $3,909 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

How to upgrade to Linux Mint 22.1

Par :Clem

It is now possible to upgrade Linux Mint 22 to version 22.1.

If you’ve been waiting for this we’d like to thank you for your patience.

1. Create a system snapshot

You can use Timeshift to make a system snapshot before the upgrade.

If anything goes wrong, you can easily restore your operating system to its previous state.

Launch Timeshift from the application menu, follow the instructions on the screen to configure it and create a system snapshot.

2. Prepare for the upgrade

If you installed Cinnamon spices (applets, desklets, extensions, themes), upgrade them from the System Settings.

3. Upgrade the operating system

Upgrading to Linux Mint 22.1 is fast and easy.

In the Update Manager, click on the Refresh button to check for any new version of mintupdate or mint-upgrade-info. If there are updates for these packages, apply them.

Launch the System Upgrade by clicking on “Edit->Upgrade to Linux Mint 22.1 Xia”.

Follow the instructions on the screen.

If asked whether to keep or replace configuration files, choose to replace them.

4. Reboot the computer

Once the upgrade is finished, reboot your computer.

Commonly asked questions

  • If the upgrade is not available to you, check that you have the latest version of mint-upgrade-info (1.2.7 or higher) and restart the Update Manager by launching it again from the applications menu.
  • If the latest version of mint-upgrade-info is not yet available in your mirror, switch to the default repositories.
  • This happens rarely, but if you ever got locked and were unable to log back in, switch to console with CTRL+ALT+F2, log in, and type “killall cinnamon-screensaver” (or “killall mate-screensaver” in MATE). Use CTRL+ALT+F7 to get back to your session.

Linux Mint 22.1 “Xia” released!

Par :Clem

The team is proud to announce the release of Linux Mint 22.1 “Xia”.

Linux Mint 22.1 is a long term support release which will be supported until 2029. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use.

New features:

This new version of Linux Mint contains many improvements.

For an overview of the new features please visit:

What’s new in Linux Mint 22.1“.

Important info:

The release notes provide important information about known issues, as well as explanations, workarounds and solutions.

To read the release notes, please visit:

Release Notes for Linux Mint 22.1

System requirements:

  • 2GB RAM (4GB recommended for a comfortable usage).
  • 20GB of disk space (100GB recommended).
  • 1024×768 resolution (on lower resolutions, press ALT to drag windows with the mouse if they don’t fit in the screen).

Upgrade instructions:

  • If you are running the BETA you don’t need to upgrade, use the Update Manager to apply available updates.
  • Upgrade instructions for Linux Mint 22 will be provided in a few days.

Download links:

Cinnamon Edition:

Xfce Edition:

MATE Edition:

Integrity and authenticity checks:

Once you have downloaded an image, please verify its integrity and authenticity.

Anyone can produce fake ISO images, it is your responsibility to check you are downloading the official ones.

Enjoy!

We look forward to receiving your feedback. Thank you for using Linux Mint and have a lot of fun with this new release!

Monthly News – December 2024

Par :Clem

Hi everyone,

The BETA phase for Linux Mint 22.1 is now over. 115 reports were received and many bugs were fixed. Many thanks for your help during this beta-test!

After a few days of QA testing we’ll be ready to publish the stable release. The new features will then make their way towards LMDE and we’ll open up the upgrade path for Linux Mint 22.

As always, I’d also like to thank our sponsors and donors. Thank you for your support.

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
DeepTide, LLC
HamoniKR
Tinken Inc
VANT

Donations in November:

A total of $11,423 were raised thanks to the generous contributions of 406 donors:

$250 (6th donation), Neil V.
$222 (5th donation), Michael M.
$216 (3rd donation), aka “omg_me”
$216 (3rd donation), Thomas K.
$200 (3rd donation), James F.
$162 (2nd donation), Christian B.
$162, Michael K.
$110 (5th donation), Jacek O.
$110 (2nd donation), James L.
$108 (4th donation), Gianni O.
$108 (4th donation), Peter G.
$108 (2nd donation), Gerhard Schaufelberger aka “Schaufelzwerg
$108, Alexandra S.
$108, Andreas H.
$108, Bernhard L.
$108, Rolf B.
$108, Wolfgang B.
$103 (15th donation), John Mc aka “Land Research Project”
$100 (14th donation), Mihail S.
$100 (4th donation), Lee R.
$100 (3rd donation), John L.
$100 (2nd donation), Andreas K.
$100, Bruce K.
$100, Nicholas B.
$71, Ronald K.
$70 (4th donation), Jan A.
$70 (2nd donation), P W E.
$65 (2nd donation), Katharina G.
$64 (3rd donation), Harry F.
$60 (12th donation), James L.
$55 (3rd donation), Tom K.
$54 (12th donation), Volker P.
$54 (7th donation), Matthias Rainer
$54 (6th donation), Daniel K.
$54 (4th donation), Danilo Cesari aka “Dany”
$54 (3rd donation), Andreas M.
$54 (3rd donation), David W.
$54 (3rd donation), Udo J.
$54 (2nd donation), Bernard S.
$54 (2nd donation), Christopher B.
$54 (2nd donation), Frank J.
$54 (2nd donation), Steffen J.
$54, Christophe A.
$54, Dominik H.
$54, Emile B.
$54, Eoin O.
$54, Gérard R.
$54, Heinz Martin D.
$54, Jürgen F.
$54, Karsten B.
$54, Mikael W.
$54, Peter W.
$54, Polo M.
$54, Richard B.
$54, Thomas K.
$54, Torsten J.
$54, Wolfgang M.
$50 (89th donation), Anthony C. aka “ciak”
$50 (9th donation), Paul R.
$50 (8th donation), Adam W.
$50 (7th donation), Richard H.
$50 (5th donation), Keith H.
$50 (3rd donation), Erwin D.
$50 (3rd donation), Larry D.
$50 (3rd donation), Larry T.
$50 (2nd donation), Christopher G.
$50 (2nd donation), Dominic M.
$50 (2nd donation), Scott P.
$50 (2nd donation), Timothy B.
$50, Alex S.
$50, Dezchek J.
$50, Eduardo F.
$50, Edward M.
$50, Jon L.
$50, Klaus J.
$50, Mavvy B.
$50, Nikolai P.
$50, Reinhold F.
$50, RicK Yost aka “Rick”
$50, Robert L W.
$50, Ryan E.
$50, Sabrina C.
$50, Sam A.
$50, YVSSYSTEM
$43, Peter H.
$43, René P.
$40 (2nd donation), Cecil H.
$38 (6th donation), Rüdiger A.
$36 (2nd donation), Leslie J.
$35 (2nd donation), Ken B.
$32 (7th donation), Mark E.
$32 (4th donation), Richard K.
$32 (3rd donation), Söhnke H.
$32 (2nd donation), Thomas O.
$32, Clemens S.
$32, Clement J.
$32, Maximilian A.
$32, Simon R.
$30 (4th donation), Horacio M.
$30 (3rd donation), Thomas S.
$27 (68th donation), Michael R.
$27 (11th donation), Alexander M.
$27 (11th donation), Rob B.
$27 (9th donation), Juergen S.
$27 (6th donation), Johanan M.
$27 (5th donation), Jürgen S.
$27, Dirk D.
$27, Florian G.
$27, Linus P.
$27, Matthias W.
$25 (45th donation), Linux Mint Sverige
$25 (18th donation), Richard N.
$25 (4th donation), Mihnea Rădulescu
$25 (2nd donation), David C.
$25, Curtis A.
$25, John N.
$22 (54th donation), Peter E.
$22 (16th donation), Benjamin W.
$22 (16th donation), Marek S. [LMDE SUPPORTER]
$22 (11th donation), Anne-christine U.
$22 (8th donation), Dean P @ DT
$22 (6th donation), Johannes B.
$22 (6th donation), Mircea V.
$22 (5th donation), Jaume T.
$22 (5th donation), Jean, Jacques G.
$22 (5th donation), Jeff Daniels
$22 (5th donation), Lutz B.
$22 (5th donation), Michael L.
$22 (5th donation), Norman E.
$22 (5th donation), Sebastian B.
$22 (5th donation), Thomas L. aka “hensys”
$22 (4th donation), Bernd K.
$22 (4th donation), Christian H.
$22 (4th donation), Günther H.
$22 (4th donation), Paulo P.
$22 (3rd donation), Bjørn A. F.
$22 (3rd donation), Jens B.
$22 (3rd donation), Jutta S.
$22 (3rd donation), Martin L.
$22 (3rd donation), Roland F. aka “rofibelm”
$22 (3rd donation), Sönke M.
$22 (2nd donation), Adrian I.
$22 (2nd donation), Chris D.
$22 (2nd donation), Dieter H.
$22 (2nd donation), Jörn L.
$22 (2nd donation), Matthias R.
$22, Alexander K. aka “SaschaLP”
$22, Andreas L.
$22, Arda Ö.
$22, Ariane R.
$22, Arturs B.
$22, Attila L.
$22, Bedrettin K.
$22, Ben K.
$22, Daniel F.
$22, Daniele A. aka “Lele”
$22, Diethard B.
$22, Florian B.
$22, Francesco R.
$22, Hans-werner J.
$22, Helen R.
$22, Javier G.
$22, Jens G.
$22, John J.
$22, Joram N.
$22, Jörg M.
$22, Jürgen N.
$22, Kerem H.
$22, Lenze V.
$22, Louis F.
$22, Marc R.
$22, Martino S.
$22, Matthias P.
$22, Michael R.
$22, Michael S.
$22, Michael V.
$22, Oleg S.
$22, Oleksandr P.
$22, Otto B.
$22, Pascal B.
$22, Peter L.
$22, Ragnar L.
$22, Rainer N.
$22, Siegmar H.
$22, Stefan B.
$22, Stefan E.
$22, Stephan K.
$22, Tobias D.
$22, Ulf H.
$22, Wolfgang W.
$20 (50th donation), Stefan M. H.
$20 (17th donation), Dana S.
$20 (11th donation), Matthew L. A. aka “Matt”
$20 (10th donation), Peter L. aka “Myfathersson”
$20 (7th donation), Chris B.
$20 (6th donation), Chamnong N.
$20 (6th donation), Derek B.
$20 (5th donation), G C
$20 (5th donation), Greg K.
$20 (5th donation), Michael P.
$20 (5th donation), Samuel S.
$20 (4th donation), Paul S.
$20 (3rd donation), Eric W.
$20 (3rd donation), Lee A.
$20 (3rd donation), René S.
$20 (3rd donation), Robin W.
$20 (3rd donation), Steven M.
$20 (2nd donation), Hung Clapham
$20 (2nd donation), John W.
$20 (2nd donation), Mark O.
$20 (2nd donation), Peter B.
$20 (2nd donation), Steven L.
$20, Anthony M.
$20, Bjørn Thorvald B.
$20, Brian L.
$20, David B.
$20, Derek N.
$20, Gokhan K.
$20, James H.
$20, Larry P.
$20, Lukas S.
$20, Lynn H.
$20, Matthew L.
$20, Paul W.
$20, Randall J.
$20, Reiner L.
$20, Ricky H.
$20, Thomas S.
$20, Wilbur V.
$20, William H.
$20, William M.
$16 (3rd donation), André F.
$16 (2nd donation), Dominik W.
$16, Arthur B.
$15 (16th donation), Felipe P.
$15 (3rd donation), Blake P.
$15, Héctor Manuel H.
$15, Siegfried S.
$14 (101th donation), Johann J.
$13 (5th donation), Pavlo Pyshkin aka “Gurzhi effect
$13 (2nd donation), Thomas G.
$11 (55th donation), Daniel S.
$11 (44th donation), Thomas R.
$11 (29th donation), Denys G.
$11 (19th donation), Stefan W.
$11 (16th donation), Francois B. aka “Makoto
$11 (14th donation), Robert W.
$11 (12th donation), Ronald S.
$11 (9th donation), Caspar F.
$11 (9th donation), Martin H.
$11 (8th donation), Raphael G.
$11 (7th donation), Jörg.K
$11 (7th donation), Michael H. S.
$11 (5th donation), BGEN
$11 (4th donation), Allan S.
$11 (4th donation), Frank H.
$11 (4th donation), Thomas S.
$11 (3rd donation), Andreas K.
$11 (3rd donation), Andrew V.
$11 (3rd donation), Axel P.
$11 (3rd donation), Derek S.
$11 (3rd donation), Erich G.
$11 (3rd donation), Georg N.
$11 (3rd donation), Neodream
$11 (2nd donation), Alfredo E.
$11 (2nd donation), Daniel L.
$11 (2nd donation), Dennis W.
$11 (2nd donation), Joachim M.
$11 (2nd donation), Kai S.
$11 (2nd donation), Matthias K.
$11 (2nd donation), Tim L.
$11, Alejandro G.
$11, Alexandre Neves aka “ASeven”
$11, Alexandros D.
$11, Amidou C.
$11, Andrea F.
$11, Andrew S.
$11, Bruno S.
$11, Calogero F.
$11, Cha C.
$11, Christoph F.
$11, Christoph V.
$11, Dieter W.
$11, Elhora R.
$11, Felix B.
$11, Ferenc P.
$11, Florent M.
$11, Francesco Antonio T.
$11, Francisco S.
$11, Georg A.
$11, Gernot K.
$11, Gregor M.
$11, Gregor M.
$11, Hans A.
$11, Hans-joachim L.
$11, Ian B.
$11, José G.
$11, Josef K.
$11, Julio Cesar S.
$11, Ken M.
$11, Kristof P.
$11, Mahmoud C.
$11, Mario R.
$11, Markus K.
$11, Massimo D.
$11, Oliver A.
$11, Piya C.
$11, Rene H.
$11, Rikard M.
$11, Roberto R. aka “impiastro”
$11, Rudolf E.
$11, Sebastian E.
$11, Sebastian Wi.
$11, Stefano D.
$11, Stephane B.
$11, Thierry C.
$11, Timothy H.
$11, Victor Sasha Christ D.
$11, Wolfgang V.
$10 (104th donation), Thomas C.
$10 (49th donation), Philip Woodward
$10 (26th donation), aka “AsciiWolf”
$10 (19th donation), Dave S.
$10 (15th donation), Thevirtua
$10 (10th donation), Daniel Tan
$10 (8th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (7th donation), Peter Vangsgaard aka “pvangsgaard
$10 (6th donation), Geoffrey P.
$10 (6th donation), Lynn Z.
$10 (6th donation), Robert H.
$10 (4th donation), Simon B.
$10 (3rd donation), Kiss J. aka “lowstar
$10 (2nd donation), Baltazar D.
$10 (2nd donation), Martin H.
$10 (2nd donation), Ronald M.
$10 (2nd donation), Stan aka “Dataful.Tech
$10, aka “Jon Donym”
$10, Aquiles F.
$10, Ayden J.
$10, Bradford B.
$10, Centsible Systems
$10, Chayton W.
$10, Dominic K.
$10, Donald H.
$10, Donald W.
$10, Francisco L.
$10, Ilker E.
$10, István D.
$10, Jehú G.
$10, Juan T.
$10, Long Island Escape Room
$10, Omar Manuel M.
$10, Owen L.
$10, Peter V.
$10, Pieter W.
$10, Randolph H.
$10, Ron S.
$10, Ryan S.
$10, The Original Nutshell SmokeCage Corporation
$10, Thomas O.
$8 (9th donation), Krste C.
$8 (2nd donation), Wendy L.
$8, Anette I.
$6 (92th donation), Eugene T.
$159 from 38 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,438 patrons, for a sum of $3,954 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

Monthly News – November 2024

Par :Clem

Hi everyone,

I hope you are enjoying the BETA so far!

This release introduces new features, tools, and artwork, so we anticipate a good number of bug reports. Every single fix helps us refine and improve the final release. Your feedback during the BETA phase is extremely important to us.

Linux Mint 22.1 is our second release based on the 24.04 package base. Some of the updates address long-standing usability issues we had  in some of the components we replaced. We’re confident these changes will lead to a very stable release.

So far, we’ve received 43 reports. Thank you very much to all the BETA testers for helping out and providing feedback. And many thanks to all of you for your support and your donations.

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
DeepTide, LLC
HamoniKR
Tinken Inc
VANT

Donations in October:

A total of $11,849 were raised thanks to the generous contributions of 401 donors:

$350,
$323, Andre V.
$265, Alain B.
$250 (5th donation), Neil K.
$250, Netas AG
$200, A
$200, Philip C.
$162, Ingo K.
$119, Thomas S.
$108 (2nd donation), Elmar V.
$108 (2nd donation), Ulrich S.
$108, Daniel O.
$108, Helge V.
$103, Niklas T.
$100 (12th donation), Mountain Computers, Inc aka “MTNCOMP aka GGPCTU
$100 (11th donation), Plamen Atanasov
$100 (6th donation), Prashanth V.
$100 (4th donation), Peter B.
$100 (2nd donation), Michaz W.
$100, Alexander S.
$100, Krzysztof W.
$100, Rogelio G.
$100, William P.
$75, K S.
$65 (5th donation), Olivia C.
$65, Hazel S.
$61 (14th donation), schema markup generator aka “schemawriter
$54 (20th donation), Bernard H.
$54 (9th donation), Uwe P.
$54 (7th donation), Jyrki A.
$54 (5th donation), Csongor
$54 (5th donation), Günter J.
$54 (4th donation), Winfried B.
$54 (3rd donation), Alexandre H.
$54 (3rd donation), Bernard P.
$54 (3rd donation), Dragan M.
$54 (3rd donation), Launay D.
$54 (2nd donation), Eric U.
$54 (2nd donation), Thorsten W.
$54, Ciaran S.
$54, Corouge C.
$54, Daan V.
$54, Eckehard H.
$54, Felix Antonio C.
$54, Ingo F.
$54, Ivaylo A.
$54, Jacek K.
$54, Kris H.
$54, Michael H.
$54, Paolo Z.
$54, Philippe E.
$54, Richard D.
$54, Sabin M.
$54, Saul A.
$54, Torsten S.
$53 (14th donation), John Mc
$50 (88th donation), Anthony C. aka “ciak”
$50 (9th donation), Marty L.
$50 (7th donation), Derek S. aka “Corky357”
$50 (4th donation), Daniel S.
$50 (4th donation), Eugene Z.
$50 (3rd donation), Brandon M.
$50 (3rd donation), Larry M.
$50 (3rd donation), Mark L.
$50 (3rd donation), William B.
$50 (2nd donation), Mack
$50 (2nd donation), Adam D.
$50 (2nd donation), Arunas A.
$50 (2nd donation), Jennifer S.
$50 (2nd donation), Jonathan D.
$50 (2nd donation), Kelly A.
$50 (2nd donation), Robert L.
$50 (2nd donation), Shane B.
$50 (2nd donation), William D.
$50, Anthony E.
$50, BlackBagData.io
$50, Caleb M.
$50, Charles M.
$50, Donald Mier T.
$50, Eugenijus U.
$50, John S.
$50, Joseph H.
$50, Lance B.
$50, Marcin M.
$50, Michael M.
$50, Michael S.
$50, Peter B.
$50, Reust A.
$50, Rickey S.
$50, Robert C.
$49, Patrick F.
$44 (2nd donation), Manuel O.
$43 (5th donation), Wielant B.
$43 (4th donation), Les W.
$43, Henri D.
$40, James M.
$38 (2nd donation), Andreas K.
$35 (7th donation), Ricardo M.
$32 (4th donation), Stephan D.
$32 (3rd donation), Michel J.
$32, Etienne C.
$32, Grégory C.
$32, Marta A.
$30 (7th donation), Kevin H.
$30, Carl D.
$30, William T.
$27 (67th donation), Michael R.
$27 (5th donation), Johanan M.
$27, Joachim F.
$27, Kent T.
$27, Ralph G.
$27, Stephan L.
$25 (44th donation), Linux Mint Sverige
$25 (10th donation), John W.
$25 (9th donation), Brian H. Y.
$25 (6th donation), Chuck G.
$25 (3rd donation), Mihnea Rădulescu
$25 (2nd donation), Anthony P.
$25 (2nd donation), Donald S.
$25 (2nd donation), Frank F.
$25 (2nd donation), Marc P.
$25, anonymous
$24 (100th donation), Johann J.
$22 (53th donation), Peter E.
$22 (15th donation), Benjamin W.
$22 (9th donation), Geoffrey Allgood
$22 (8th donation), R. I. . aka “Birman”
$22 (7th donation), Giovanni D. S. aka “ChibiOS
$22 (7th donation), Thomas K.
$22 (6th donation), Ezequiel O.
$22 (6th donation), Jacques V.
$22 (5th donation), akaIDIOT
$22 (5th donation), Alan W.
$22 (5th donation), E F
$22 (5th donation), Ulf-Andreas S.
$22 (4th donation), John F. aka “JoHubb”
$22 (4th donation), Kai D.
$22 (4th donation), Norbert D.
$22 (4th donation), Ovidio A. H.
$22 (3rd donation), Lennart J.
$22 (3rd donation), Stefan N.
$22 (3rd donation), Volker S.
$22 (2nd donation), Carsten B.
$22 (2nd donation), Emmanuil K.
$22 (2nd donation), GB
$22 (2nd donation), Gino P.
$22 (2nd donation), Loïc C.
$22 (2nd donation), Oskaras U.
$22 (2nd donation), Rainer G.
$22 (2nd donation), Regina S.
$22 (2nd donation), Roy V.
$22 (2nd donation), Stefan H.
$22, Alexander-arthur N.
$22, Arif L
$22, Arnold C.
$22, Bastian K.
$22, Bernd H.
$22, Christopher N.
$22, Dieter B.
$22, Frank H.
$22, Georg R.
$22, Heiko Lange
$22, Jahn Baers
$22, Jan K.
$22, Joel M.
$22, Jörn L.
$22, Josep Lluis T.
$22, Laurent M.
$22, Luigi A.
$22, Marc F.
$22, Mario G.
$22, Markus K.
$22, Michael V.
$22, Miguel C.
$22, Mircea-augustin L.
$22, Monsieur F.
$22, Nadia Z.
$22, Niklas A.
$22, NRL
$22, Olivier T.
$22, Paulius L.
$22, Peter S.
$22, Rafael G.
$22, Reinhard R.
$22, Roel K.
$22, Ruben A.
$22, Sebastian S.
$22, Teo Ioniță
$22, Tobias M.
$22, Tony P.
$22, Wilfried Eull Web Design
$22, Yannik B.
$20 (27th donation), Aimee W.
$20 (12th donation), Robert D. aka “MacDhai
$20 (7th donation), Harrison U.
$20 (6th donation), Lal C.
$20 (5th donation), Bjorn P. M.
$20 (4th donation), Ian M.
$20 (4th donation), Steve T.
$20 (4th donation), Timothy A.
$20 (3rd donation), Edward L.
$20 (3rd donation), Matthew H.
$20 (2nd donation), A M W.
$20 (2nd donation), Arend D.
$20 (2nd donation), Blake P.
$20 (2nd donation), Christopher O.
$20 (2nd donation), Colin E.
$20 (2nd donation), Javier Canales
$20 (2nd donation), Raymond R.
$20 (2nd donation), Robert W.
$20 (2nd donation), Thomas W.
$20, aka “Tom2”
$20, Alex D.
$20, Ali G. aka “Bitcoin Baden
$20, Cameron E.
$20, Don H.
$20, Earle F.
$20, Emilio A. R.
$20, Fausto D.
$20, Ian T.
$20, Rc
$20, Robert C.
$20, Yves T.
$16 (81th donation), Andreas S.
$16 (5th donation), Harold H.
$16 (2nd donation),
$15 (23rd donation), Pawel M.
$15 (4th donation), Nicholas B.
$15, Elliot V.
$15, Michael E.
$15, Roland S.
$11 (54th donation), Daniel S.
$11 (31st donation), Tugaleres.com
$11 (28th donation), Denys G.
$11 (18th donation), Stefan W.
$11 (15th donation), Francois B. aka “Makoto
$11 (14th donation), Jeff aka “Jambalak
$11 (11th donation), Ronald S.
$11 (9th donation), Tony H. aka “TonyH1212”
$11 (8th donation), Francisco F.
$11 (8th donation), Iker P. M.
$11 (7th donation), Antonio C.
$11 (5th donation), Franz Z.
$11 (4th donation), BGEN
$11 (4th donation), Denis P.
$11 (4th donation), Vladimir S.
$11 (3rd donation), Claudio S.
$11 (3rd donation), Robert H.
$11 (3rd donation), Senad K.
$11 (2nd donation), Bruno L.
$11 (2nd donation), Lucie T. aka “shaolinlucie
$11 (2nd donation), Neodream
$11 (2nd donation), Pasquale C.
$11 (2nd donation), Ralf H.
$11 (2nd donation), Stefan J.
$11 (2nd donation), Wiebke G.
$11 (2nd donation), Zlatko
$11, Alberto B.
$11, Andreas M.
$11, Benjamin B.
$11, Bernd S.
$11, Carlo E.
$11, Domenico M.
$11, Edouard T.
$11, Esa K.
$11, Eva D.
$11, Fabian B.
$11, Freddy K.
$11, frogmanjack
$11, Gian Carlo M.
$11, Gianfranco C.
$11, Gonçalo P.
$11, Gunnar A.
$11, John
$11, Jop D.
$11, Jörg S.
$11, Luca C.
$11, Magnus P.
$11, Marco C.
$11, Mauro S.
$11, Maxim E.
$11, Mehmed K.
$11, Michael E.
$11, Mirko M.
$11, Nils-ove L.
$11, Olaf John
$11, Oliver O.
$11, Patrick Thau
$11, Pawez K.
$11, Peter K.
$11, Piermarcello P.
$11, Rico S.
$11, Rolf B.
$11, Rudolf R.
$11, Samuel G.
$11, Sergio B.
$11, Siegfried M.
$11, Simon G.
$11, Stephan P.
$11, Tauno K.
$11, Valentyn V.
$11, Vasileios D.
$11, Wolfgang Z.
$10 (103th donation), Thomas C.
$10 (48th donation), Philip Woodward
$10 (21st donation), Harold R.
$10 (18th donation), Dave S.
$10 (16th donation), Troy T.
$10 (14th donation), Thevirtua
$10 (9th donation), William S. aka “Supergoo”
$10 (8th donation), blueredgreen
$10 (8th donation), Filippo F.
$10 (8th donation), Wojciech S.
$10 (7th donation), TONY aka “STRUZZIN ELECTRONICS
$10 (6th donation), David W.
$10 (5th donation), Charles P.
$10 (4th donation), Juan Q.
$10 (4th donation), Vang P.
$10 (4th donation), Wayne C.
$10 (3rd donation), J. B. .
$10 (3rd donation), Howard S.
$10 (2nd donation), M. K. .
$10 (2nd donation), Aryeh G.
$10 (2nd donation), Kayla W.
$10 (2nd donation), Paulo S.
$10, 6AM Films
$10, Abel J.
$10, Anatolii S.
$10, Charles L W.
$10, Christopher L.
$10, Denys Sedchenko aka “x1unix
$10, Douglas H.
$10, IT Consulting NYC
$10, Ivo Kremer
$10, Joe V.
$10, John A.
$10, John F.
$10, Jorge C.
$10, Joshua C.
$10, Kevin T.
$10, Mark B.
$10, Michael B.
$10, Mike S.
$10, Phil T.
$10, Piotr P.
$10, Richard H B.
$10, Ross P.
$10, Rudolf G.
$10, Stan aka “Dataful.Tech
$10, TB
$10, Zebh
$10, zzzzzzzzz .
$9 (4th donation), Eric H. aka “Eric”
$8 (3rd donation), Łukasz B (Neudamm)
$8, @AR__PU
$6 (91th donation), Eugene T.
$6 (38th donation), Sami Mannila
$6, Arthur M.
$166 from 41 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,425 patrons, for a sum of $3,831 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

Linux Mint 22.1 “Xia” – BETA Release

Par :Clem

This is the BETA release for Linux Mint 22.1 “Xia”.

Linux Mint 22.1 is a long term support release which will be supported until 2029. It comes with updated software and brings refinements and many new features to make your desktop even more comfortable to use.

New features:

This new version of Linux Mint contains many improvements.

For an overview of the new features please visit:

What’s new in Linux Mint 22.1“.

Important info:

The release notes provide important information about known issues, as well as explanations, workarounds and solutions.

To read the release notes, please visit:

Release Notes for Linux Mint 22.1

System requirements:

  • 2GB RAM (4GB recommended for a comfortable usage).
  • 20GB of disk space (100GB recommended).
  • 1024×768 resolution (on lower resolutions, press ALT to drag windows with the mouse if they don’t fit in the screen).

Upgrade instructions:

  • This BETA release might contain critical bugs, please only use it for testing purposes and to help the Linux Mint team fix issues prior to the stable release.
  • Upgrade instructions will be published after the stable release of Linux Mint 22.1.
  • It will be possible to upgrade from this BETA to the stable release.
  • It will also be possible to upgrade from Linux Mint 22.

Bug reports:

  • Bugs in this release should be reported on Github at https://github.com/linuxmint/mint22.1-beta.
  • Create one issue per bug.
  • As described in the Linux Mint Troubleshooting Guide, do not report or create issues for observations.
  • Be as accurate as possible and include any information that might help developers reproduce the issue or understand the cause of the issue:
    • Bugs we can reproduce, or which cause we understand are usually fixed very easily.
    • It is important to mention whether a bug happens “always”, or “sometimes”, and what triggers it.
    • If a bug happens but didn’t happen before, or doesn’t happen in another distribution, or doesn’t happen in a different environment, please mention it and try to pinpoint the differences at play.
    • If we can’t reproduce a particular bug and we don’t understand its cause, it’s unlikely we’ll be able to fix it.
  • The BETA phase is literally a bug squashing rush, where the team is extremely busy and developers try to fix as many bugs as fast as possible.
  • There usually are a huge number of reports and very little time to answer everyone or explain why a particular report is not considered a bug, or won’t get fixed. Don’t let this frustrate you, whether it’s acknowledged or not, we appreciate everyone’s help.

Download links:

Cinnamon Edition:

Xfce Edition:

MATE Edition:

Integrity and authenticity checks:

Once you have downloaded an image, please verify its integrity and authenticity.

Anyone can produce fake ISO images, it is your responsibility to check you are downloading the official ones.

Enjoy!

We look forward to receiving your feedback. Many thanks in advance for testing the BETA!

Monthly News – October 2024

Par :Clem

Many thanks for your donations and for your support.

Night Light in Cinnamon

The team is working on adding Night Light support in Cinnamon.

Night Light consists in reducing the amount of blue light emitted by the screen. It makes the color of your monitor warmer as you get closer to bed time to help reduce eyestrain and improve sleep quality.

In the past Linux Mint shipped with Redshift to provide this functionality. Redshift wasn’t integrated in the settings though, it only worked in Xorg and it was auto-configured by something called geoclue which is no longer functional.

The team is hoping to have this feature fully integrated into the Cinnamon desktop and working out of the box, both in Wayland and Xorg.

Clutter Dialogs

Work continues on migrating key Cinnamon dialogs to Clutter.

Here is the dialog which pops up when a keyring needs to be unlocked:

And here is the one to confirm display changes:

Donations via Stripe

Stripe was added as an alternative to PayPal on the donors page.

This was done to make it easier for people who couldn’t or didn’t want to donate via PayPal. More countries and more bank cards are supported by Stripe and no account registration is necessary.

Framework Laptops

We started working with Framework. We’re hoping this will lead towards a great partnership.

Framework promotes a concept which is quite admirable. They make high-performance laptops which are easy to upgrade, repair and customize.

They want to achieve full compatibility with Linux Mint and the Cinnamon desktop. That’s also very important to us because it means we can recommend this brand within our community without having to worry about compatibility issues.

Their laptops are packed with components we don’t have or technologies which we hadn’t really focused on yet. This will boost new areas of development for us.

The Laptop 13 they sent me just arrived today so I won’t be able to review it until the next blog post. Spoiler alert: I like it 🙂

When it comes to hardware I love it when a product feels special and/or of high quality. I’ve had many different computers in the past. The ones I enjoyed the most weren’t the most modern or the most powerful, they were the ones I grew attached to, either because they were very well built or because I loved something unique about them. I still work mostly on a Mintbox 3 and an old Macbook Pro Retina. I’ll be comparing this Laptop 13 to these two next month.

Hellotux Garments

Some of our branded clothes will soon be discontinued.

Hellotux can’t source the green Mint shirts anymore.

Some sizes are missing, some are reduced. We’ll also probably remove the old Mint logos eventually.

If you like the green shirts or the old logos don’t wait until they’re gone.

Sponsorships:

Linux Mint is proudly sponsored by:

Gold Sponsors:
Linux VPS Hosting
IPv6.rs
Silver Sponsors:
Datadog
Sucuri
ThinkPenguin: For Everything Freedom
Bronze Sponsors:
Vault Networks *
AYKsolutions Server & Cloud Hosting
hSo
Agile.Coach
BGASoft Inc
C0MPLÉX1 SEO
DeepTide, LLC
HamoniKR
Tinken Inc
VANT

Donations in September:

A total of $11,006 were raised thanks to the generous contributions of 396 donors:

$250 (30th donation), Ralph Siegler aka “ziggy
$216 (3rd donation), Ralph J.
$216, Association pour l’Informatique Participative
$200, Steven S.
$162 (2nd donation), Dirk S.
$120, Aaron P.
$108 (8th donation), Karl H.
$108 (4th donation), Enric Pastor
$108 (4th donation), Franky W.
$108, Ivaylo I.
$100 (13th donation), Mihail S.
$100 (10th donation), Plamen Atanasov
$100 (9th donation), Carl J.
$100 (2nd donation), Emily L.
$100, Bryan N.
$100, James F.
$100, Mark M.
$100, Richard B.
$100, Timothy B.
$95, Simon L.
$86 (6th donation), Rhydwen V.
$80 (2nd donation), Peter F.
$70 (7th donation), Joel M.
$65 (36th donation), Wolfgang P.
$55, Jay Norris
$54 (66th donation), Michael R.
$54 (12th donation), Hermann W.
$54 (9th donation), Devendra Rai.
$54 (6th donation), Ike
$54 (6th donation), Jesse C.
$54 (5th donation), Gildas M.
$54 (5th donation), Manuel F.
$54 (4th donation), Philipp K.
$54 (3rd donation), Marion
$54 (3rd donation), Siegfried S.
$54 (2nd donation), Bernard P.
$54 (2nd donation), Lucas D.
$54 (2nd donation), Michel B.
$54, Adrian W.
$54, Christian G.
$54, Christoph T.
$54, Erich M.
$54, Francois A.
$54, Franz K.
$54, Henri W.
$54, Laobhan
$54, Martin P.
$54, Michael D.
$54, Nagy I.
$54, Olav H.
$54, Paul G.
$54, Phillip H.
$54, Siegbert P.
$54, Thomas S.
$54, Udo W.
$54, Uwe S.
$54, Wolfgang A.
$52 (13th donation), John Mc
$51, Neil P.
$50 (87th donation), Anthony C. aka “ciak”
$50 (10th donation), Nate P. aka “cog_nate”
$50 (8th donation), Michael C.
$50 (6th donation), David W.
$50 (5th donation), Harrison W.
$50 (4th donation), Chris C.
$50 (3rd donation), Vance West
$50 (2nd donation), Benjamin L.
$50 (2nd donation), Daniel A.
$50 (2nd donation), Graeme D.
$50 (2nd donation), Jeffrey J.
$50 (2nd donation), Nick Gausling | Fractional COO | Retail and Consumer Sector Consultant
$50, Adib H.
$50, Alejandro S.
$50, Alfred C.
$50, Andri A.
$50, Anthony D.
$50, Christopher C.
$50, James L.
$50, Jesse T L.
$50, John L.
$50, Joseph M.
$50, Julian D.
$50, Leela A.
$50, Michael B.
$50, Michael M.
$50, Michael T.
$50, Mike P.
$50, Thomas C.
$50, Warren S.
$40 (8th donation), John S.
$40 (2nd donation), John W.
$38, Martin Skouboe P.
$35 (16th donation), B. H. .
$35 (5th donation), David H.
$35 (4th donation), Katherine K.
$32 (7th donation), Gabriel S.
$32 (4th donation), Reijo H.
$32 (4th donation), Sebastian G.
$32 (4th donation), Stephen C.
$32 (2nd donation), Álvaro R.
$32 (2nd donation), Finn I.
$32 (2nd donation), Flavio S.
$32 (2nd donation), Harry F.
$32, Enrico G.
$32, Evariste S.
$30 (3rd donation), Daniel S.
$30 (3rd donation), Nicholas B.
$30, Henry B.
$30, Raymond S.
$30, Robert K.
$30, Roland V.
$27, Jeffrey E.
$27, Jens K.
$25 (43th donation), Linux Mint Sverige
$25 (17th donation), Richard N.
$25 (11th donation), Corey J.
$25 (9th donation), John W.
$25 (3rd donation), John P.
$25 (3rd donation), Richard T.
$25 (2nd donation), Mihnea Rădulescu
$25, Thomas G.
$24 (7th donation), Olaf Bousche aka “Bushman”
$22 (99th donation), Johann J.
$22 (52th donation), Peter E.
$22 (15th donation), Marek S. [LMDE SUPPORTER]
$22 (14th donation), Benjamin W.
$22 (9th donation), Martin L.
$22 (8th donation), Alexander H.
$22 (8th donation), Divoto
$22 (8th donation), Raymond L.
$22 (8th donation), Stoyan
$22 (7th donation), Peter C.
$22 (6th donation), Thomas G. aka “thg14”
$22 (5th donation), Didier P.
$22 (5th donation), Ivo S.
$22 (4th donation), Mario N.
$22 (3rd donation), Gines S.
$22 (2nd donation), A V.
$22 (2nd donation), Albin L.
$22 (2nd donation), Andrew B.
$22 (2nd donation), Antoine M.
$22 (2nd donation), Benjami L.
$22 (2nd donation), Jean-paul D.
$22 (2nd donation), Matthias V.
$22 (2nd donation), Miguel S.
$22, Alexander S.
$22, Antti K.
$22, Arndt B.
$22, Arni A R.
$22, Aspins
$22, Calogero P.
$22, Christian S.
$22, Dieter Schemmelmann aka “Die0691”
$22, Dr O Freeman
$22, Hamish M.
$22, Jans K.
$22, Jerome G.
$22, Joachim B.
$22, José Luis D.
$22, Klaus D.
$22, Klaus R.
$22, Krystian K.
$22, Kurt G.
$22, Liam H.
$22, Markus B.
$22, Matthias D.
$22, Mikkel A.
$22, Mohamed E.
$22, Pedro F.
$22, Peter Hans S.
$22, Peter M.
$22, Peter R.
$22, Petur K.
$22, Pierre B.
$22, Renato P.
$22, Thomas F.
$22, Thomas U.
$22, Tommaso D.
$22, Uwe S.
$20 (49th donation), Stefan M. H.
$20 (30th donation), vagrantcow
$20 (27th donation), Denis D.
$20 (10th donation), Matthew L. A. aka “Matt”
$20 (9th donation), Kleiner Funk-Electronic
$20 (8th donation), George M.
$20 (8th donation), Oblong Software Products
$20 (6th donation), Terry Phillips aka “Terryphi”
$20 (5th donation), Robert S.
$20 (4th donation), Victor C.
$20 (3rd donation), Alex Z.
$20 (3rd donation), Luke B
$20 (2nd donation), Christopher F.
$20 (2nd donation), Eric H.
$20 (2nd donation), Stiliyan P.
$20, Aiden M.
$20, Andrey L.
$20, Armin M.
$20, Bobby B.
$20, Brien C.
$20, Bryan C.
$20, Christopher D.
$20, Christopher S.
$20, David H.
$20, Dean G.
$20, Frank K.
$20, Ian H D.
$20, Ian T.
$20, Jacob C.
$20, James D.
$20, James H.
$20, James M.
$20, Jonathan G.
$20, Joseph L.
$20, Marshall B.
$20, Matej M.
$20, Michael J.
$20, Michael K.
$20, Michael P.
$20, Norman B.
$20, Olisterno
$20, Oren K.
$20, Peter S.
$20, Ross W.
$20, Santos S.
$20, William B.
$20, William B.
$19 (5th donation), Nicholas J.
$16 (80th donation), Andreas S.
$16 (5th donation), Ravi S.
$16, Günter S.
$16, Phillip M.
$15 (2nd donation), Thomas L.
$15, Rudolph T.
$14, Eduard K.
$13, Bálint S.
$12 (3rd donation), Anthony Macgregor aka “Arcam123”
$11 (53th donation), Daniel S.
$11 (43th donation), Thomas R.
$11 (37th donation), Sami Mannila
$11 (30th donation), Tugaleres.com
$11 (27th donation), Denys G.
$11 (17th donation), Marc V. K.
$11 (17th donation), Stefan W.
$11 (12th donation), Bengt Falke aka “Falke”
$11 (12th donation), Michael P.
$11 (11th donation), Thomas R.
$11 (10th donation), Andreas M.
$11 (10th donation), Juergen M. B.
$11 (6th donation), Joerg B.
$11 (6th donation), Marcos P. G.
$11 (6th donation), Matteo A. aka “Angelinux”
$11 (6th donation), Michael W.
$11 (5th donation), Jan V.
$11 (5th donation), Michael T.
$11 (5th donation), Sami K.
$11 (4th donation), Bernd R.
$11 (4th donation), Jacques V.
$11 (4th donation), Jose J.
$11 (3rd donation), Andreas T.
$11 (3rd donation), Christophe L.
$11 (3rd donation), Fernandes J.
$11 (3rd donation), Francisco Jose A.
$11 (3rd donation), Henrique D.
$11 (3rd donation), Jose C. aka “Revenarius”
$11 (3rd donation), Olivier R.
$11 (2nd donation), Antonio Hilazo Santos
$11 (2nd donation), Dario B.
$11 (2nd donation), Eduardo H.
$11 (2nd donation), Erich G.
$11 (2nd donation), Fabien L.
$11 (2nd donation), Kiss J.
$11 (2nd donation), Ludwig H.
$11 (2nd donation), Marc R.
$11 (2nd donation), Mark Maslov
$11 (2nd donation), Michael O.
$11 (2nd donation), Michele D.
$11 (2nd donation), Panon D.O.O.
$11 (2nd donation), Rok
$11 (2nd donation), Stefan S.
$11 (2nd donation), Wil A.
$11, Adam F.
$11, Anthony P.
$11, Arnd M.
$11, Bjoern H.
$11, Bram D.
$11, Bruno L.
$11, Dainis L.
$11, Dario D.
$11, Dennis V.
$11, Dennis W.
$11, Donald W.
$11, Georg C.
$11, Hans S.
$11, Ilia I.
$11, Karsten M.
$11, Luca Z.
$11, Luigi L.
$11, Marlon D.
$11, Matthias K.
$11, Michael B.
$11, Nico S.
$11, Nicola S.
$11, Olli Pekka P.
$11, Pierre M.
$11, René B.
$11, Silvère D. aka “Lodestar”
$11, Steve H.
$11, Thierry R.
$11, Tim R.
$11, Vasilis R.
$11, Volker S.
$10 (102th donation), Thomas C.
$10 (47th donation), Philip Woodward
$10 (24th donation), Bruce M.
$10 (20th donation), Harold R.
$10 (17th donation), Dave S.
$10 (13th donation), platypus products
$10 (13th donation), Thevirtua
$10 (11th donation), Joseph G.
$10 (5th donation), Gary R.
$10 (5th donation), Geoffrey P.
$10 (5th donation), Tomasz K.
$10 (4th donation), Joseph G.
$10 (4th donation), S Russo
$10 (4th donation), Дмитрий С.
$10 (3rd donation), Robert N.
$10 (2nd donation), Bryan Y.
$10, Anthony A.
$10, Brent F.
$10, Edward M K.
$10, George L.
$10, Glyn S.
$10, Gordon William M.
$10, Harry Diepold
$10, Ioan B.
$10, John L.
$10, Jonathan F.
$10, Joseph G.
$10, Joshua G.
$10, Kirk F.
$10, Luis C.
$10, Rob T.
$10, Robert G.
$10, Ryan M.
$10, Scott B.
$10, Sean M.
$10, SERGIOVAZQUEZ.COM
$10, Skylar S.
$10, Slawek T.
$8 (29th donation), Blazej P. aka “bleyzer”
$8 (6th donation), Lorne F.
$8, ARY aka “alexDW9IFJ”
$6 (7th donation), Keith W.
$6 (4th donation), Darin K.
$143 from 38 smaller donations

If you want to help Linux Mint with a donation, please visit https://www.linuxmint.com/donors.php

Patrons:

Linux Mint is proudly supported by 1,393 patrons, for a sum of $4,060 per month.

To become a Linux Mint patron, please visit https://www.patreon.com/linux_mint

2-in-1 release – Inkscape 1.4.2 is out!

Draw your world by Kess Marks, CC-By-SA 4.0

The first minor release since Inkscape 1.4 is here!

No worries, you didn't miss 1.4.1! Due to a signficant bug that was only discovered shortly before its planned release, 1.4.1 has been merged with 1.4.2. 

With lots of fixes, some smaller improvements and even a few new features around file format support, we believe it was well worth the wait.

Here's a summary of what to expect from the new release:

  • A new splash screen, providing a visual cue while Inkscape loads in the background
  • Initial support for importing Vectornator / Linearity Curve files
  • A new extension to Clean up Paths
  • Substantially improved Affinity Designer files (.afdesign) import
  • 20 crash/freeze fixes, many of which affected PDF import
  • more than 50 other bug fixes and small improvements, including improvements to Boolean operations, layer selection, minimal window width and restoration of Spray tool buttons' functionality
  • and 15 updated translations!

For more detailed information on the changes in version 1.4.2 available in the release notes.

Again, thanks to all Inkscape users and contributors for their support in identifying and flagging these critical issues for us through sending bug reports for our volunteer developers to examine and solve.

Should you experience an issue while using Inkscape, please let us know! We've put together a step-by-step video to help you post your first bug reports on Gitlab.

Built with the power of a team of mostly volunteers, this open source vector graphics editor represents the combined efforts, passion and work of many hearts and hands from around the world, ensuring that Inkscape remains available free for everyone to download and enjoy.

If you'd like to contribute to the project, you are more than welcome in our project's global community! You'll find the list of ways to connect with us here.

You can also help Inkscape to stay alive and evolve by making a donation.

Get Inkscape 1.4.2 for Linux, Windows or macOS!

Draw Freely.

❌