Merge pull request #196 from MightyCreak/release-0.8.0
Prepare for release 0.8.0
This commit is contained in:
commit
1dd1afe10b
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## Unreleased
|
||||
|
||||
## 0.8.0 - 2023-04-03
|
||||
|
||||
### Added
|
||||
|
||||
- Language: initial support for Rust language (@alopatindev)
|
||||
|
|
|
@ -37,6 +37,43 @@
|
|||
<update_contact>romain@foolstep.com</update_contact>
|
||||
|
||||
<releases>
|
||||
<release version="0.8.0" date="2023-04-03">
|
||||
<description>
|
||||
<p>
|
||||
Update to GNOME 44, improved GTK 3 support, initial support for Rust, added Turkish and
|
||||
Georgian translations, and a couple of fixes.
|
||||
</p>
|
||||
<p>Added:</p>
|
||||
<ul>
|
||||
<li>Language: initial support for Rust language (@alopatindev)</li>
|
||||
<li>Translation: added Turkish translation (@libreajans)</li>
|
||||
<li>Translation: added Georgian translation (@NorwayFun)</li>
|
||||
</ul>
|
||||
<p>Changed:</p>
|
||||
<ul>
|
||||
<li>Update from GNOME 42 to GNOME 44 (@MightyCreak)</li>
|
||||
<li>Translation: updated Swedish translation (@eson57)</li>
|
||||
<li>Dialog: prompt only once if several files needs to be reloaded (@yuriiz)</li>
|
||||
<li>Use GTK3's Gtk.Application/Gtk.ApplicationWindow (@yuriiz)</li>
|
||||
<li>Split `DiffuseApplication` and `DiffuseWindow` classes in their own files (@MightyCreak)</li>
|
||||
<li>Use new Meson (from 0.50 to 0.55) and fixed deprecation warnings (@MightyCreak)</li>
|
||||
<li>
|
||||
Mac: fix the shortcut for first/previous/next/last differences, now uses ⌘ instead of
|
||||
Ctrl (@krlmlr)
|
||||
</li>
|
||||
</ul>
|
||||
<p>Fixed:</p>
|
||||
<ul>
|
||||
<li>"Go to line..." dialog didn't show up (@MightyCreak)</li>
|
||||
<li>
|
||||
Tech debt: use `transient_for` instead of the deprecated `parent` when creating a
|
||||
`Gtk.Widget` (@MightyCreak)
|
||||
</li>
|
||||
<li>Documentation: prefer `pip3` over `pip` to ensure it works everywhere (@krlmlr)</li>
|
||||
<li>Flatpak: add missing `--filesystem=xdg-run/gvfsd` privilege (@MightyCreak)</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="0.7.7" date="2022-10-23">
|
||||
<description>
|
||||
<p>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||
<!ENTITY app "Diffuse">
|
||||
<!ENTITY app-version "0.7.7">
|
||||
<!ENTITY app-year "2006-2022">
|
||||
<!ENTITY manual-year "2009-2022">
|
||||
<!ENTITY app-version "0.8.0">
|
||||
<!ENTITY app-year "2006-2023">
|
||||
<!ENTITY manual-year "2009-2023">
|
||||
]>
|
||||
<book id="index" lang="en">
|
||||
<title><application>&app;</application> User's Manual</title>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
|
||||
[
|
||||
<!ENTITY app "Diffuse">
|
||||
<!ENTITY app-version "0.7.7">
|
||||
<!ENTITY app-year "2006-2022">
|
||||
<!ENTITY manual-year "2009-2022">
|
||||
<!ENTITY app-version "0.8.0">
|
||||
<!ENTITY app-year "2006-2023">
|
||||
<!ENTITY manual-year "2009-2023">
|
||||
]>
|
||||
<book id="index" lang="cs">
|
||||
<title>Uživatelská příručka programu <application>&app;</application></title>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||
<!ENTITY app "Diffuse">
|
||||
<!ENTITY app-version "0.7.7">
|
||||
<!ENTITY app-year "2006-2022">
|
||||
<!ENTITY manual-year "2009-2022">
|
||||
<!ENTITY app-version "0.8.0">
|
||||
<!ENTITY app-year "2006-2023">
|
||||
<!ENTITY manual-year "2009-2023">
|
||||
]>
|
||||
<book id="index" lang="it">
|
||||
<title>Manuale utente di <application>&app;</application></title>
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
|
||||
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
|
||||
<!ENTITY app "Diffuse">
|
||||
<!ENTITY app-version "0.7.7">
|
||||
<!ENTITY app-year "2006-2022">
|
||||
<!ENTITY manual-year "2009-2022">
|
||||
<!ENTITY app-version "0.8.0">
|
||||
<!ENTITY app-year "2006-2023">
|
||||
<!ENTITY manual-year "2009-2023">
|
||||
]>
|
||||
<book id="index" lang="ru">
|
||||
<title>Руководство Пользователя <application>&app;</application></title>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<creator>Derrick Moser</creator>
|
||||
<maintainer>Derrick Moser</maintainer>
|
||||
<title>Diffuse User's Manual</title>
|
||||
<date>2022-10-23</date>
|
||||
<version identifier="0.7.7" date="2022-10-23"/>
|
||||
<date>2023-04-03</date>
|
||||
<version identifier="0.8.0" date="2023-04-03"/>
|
||||
<subject category="GNOME|Development|Applications"/>
|
||||
<description>Diffuse is a graphical tool for merging and comparing text files.</description>
|
||||
<type>manual</type>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<creator>Derrick Moser</creator>
|
||||
<maintainer>Derrick Moser</maintainer>
|
||||
<title>Uživatelská příručka programu Diffuse</title>
|
||||
<date>2022-10-23</date>
|
||||
<version identifier="0.7.7" date="2022-10-23"/>
|
||||
<date>2023-04-03</date>
|
||||
<version identifier="0.8.0" date="2023-04-03"/>
|
||||
<subject category="GNOME|Development|Applications"/>
|
||||
<description>Diffuse je grafický nástroj pro slučování a porovnávání textových souborů.</description>
|
||||
<type>manual</type>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<creator>Derrick Moser</creator>
|
||||
<maintainer>Derrick Moser</maintainer>
|
||||
<title>Manuale utente di Diffuse</title>
|
||||
<date>2022-10-23</date>
|
||||
<version identifier="0.7.7" date="2022-10-23"/>
|
||||
<date>2023-04-03</date>
|
||||
<version identifier="0.8.0" date="2023-04-03"/>
|
||||
<subject category="GNOME|Development|Applications"/>
|
||||
<description>Diffuse è uno strumento grafico per l'unione e il confronto di file di testo.</description>
|
||||
<type>manual</type>
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
<creator>Derrick Moser</creator>
|
||||
<maintainer>Derrick Moser</maintainer>
|
||||
<title>Руководство Пользователя Diffuse</title>
|
||||
<date>2022-10-23</date>
|
||||
<version identifier="0.7.7" date="2022-10-23"/>
|
||||
<date>2023-04-03</date>
|
||||
<version identifier="0.8.0" date="2023-04-03"/>
|
||||
<subject category="GNOME|Development|Applications"/>
|
||||
<description>Программа Diffuse является графическим инструментом для слияния и сравнения текстовых файлов.</description>
|
||||
<type>manual</type>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('diffuse',
|
||||
version: '0.7.7',
|
||||
version: '0.8.0',
|
||||
meson_version: '>= 0.55',
|
||||
license: 'GPL-2.0-or-later',
|
||||
default_options: [ 'warning_level=2' ])
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE xsl:stylesheet [
|
||||
<!ENTITY app "Diffuse">
|
||||
<!ENTITY app-version "0.7.7">
|
||||
<!ENTITY app-version "0.8.0">
|
||||
<!ENTITY app-cmd "diffuse">
|
||||
<!ENTITY date "2022-10-23">
|
||||
<!ENTITY date "2023-04-03">
|
||||
]>
|
||||
<!--
|
||||
template for translating Diffuse's help documentation to a manual page
|
||||
|
|
|
@ -25,7 +25,7 @@ import platform
|
|||
import subprocess
|
||||
import sys
|
||||
|
||||
VERSION = '0.7.7'
|
||||
VERSION = '0.8.0'
|
||||
PACKAGE = '1'
|
||||
PLATFORM = 'win' + ''.join([c for c in platform.architecture()[0] if c.isdigit()])
|
||||
INSTALLER = 'diffuse-%s-%s.%s' % (VERSION, PACKAGE, PLATFORM)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
[Setup]
|
||||
AppId=Diffuse
|
||||
AppName={cm:ToolName}
|
||||
AppVerName=Diffuse 0.7.7
|
||||
AppVerName=Diffuse 0.8.0
|
||||
DefaultDirName={pf}\Diffuse
|
||||
DefaultGroupName=Diffuse
|
||||
UninstallDisplayIcon={app}\diffusew.exe
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#define MyAppName "Diffuse"
|
||||
#define MyAppGroupName "Diffuse"
|
||||
#define MyAppVersion "0.7.7"
|
||||
#define MyAppVersion "0.8.0"
|
||||
#define MyAppPublisher "Diffuse Team"
|
||||
#define MyAppURL "https://github.com/MightyCreak/diffuse/"
|
||||
#define MyAppExeName "diffuse.exe"
|
||||
|
|
Loading…
Reference in New Issue