From 713611aeaa8acc55d48844c19f4c9ad4a11a2e20 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Wed, 16 Dec 2020 19:38:44 +0100 Subject: [PATCH] release v2.2.5, update CHANGELOG --- CHANGELOG.md | 21 ++++++++++++++++++++- Makefile | 4 ++-- README.md | 2 +- auto/config | 2 +- config/bootloaders/isolinux/live.cfg.in | 2 +- config/bootloaders/isolinux/menu.cfg | 2 +- doc/md/download-and-installation.md | 10 +++++----- 7 files changed, 31 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd35ef9..cb5bbc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [v2.2.5](https://gitlab.com/nodiscc/dlc/releases/tag/2.2.5) - 2020-12-16 + +### Removed + +- remove [Liferea](https://packages.debian.org/buster/liferea) feed reader from default install +- remove [gnome-maps](https://packages.debian.org/buster/gnome-maps) from default install + +### Fixed + +- nano: fix loading of syntax highlighting configuratio from ~/.nano/*.nanorc + + +### Changed + +- update third-party Lutris package to 0.5.8.1 +- update documentation/.gitconfig examples +- tools: improve build/cleanup mechanisms + +------------------------------- ## [v2.2.4](https://gitlab.com/nodiscc/dlc/releases/tag/2.2.4) - 2020-10-22 @@ -112,4 +131,4 @@ Initial release, git repository reset and rebuilt from scratch. See commit messa ### Fixed ### Security ### Deprecated ---> \ No newline at end of file +--> diff --git a/Makefile b/Makefile index ac8bfbf..ed3c5d7 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ test_imagesize: test_kvm_bios: # Run the resulting image in KVM/virt-manager (legacy BIOS mode) - sudo virt-install --name dlc-test --boot cdrom --video virtio --disk path=$$PWD/dlc-test-disk0.qcow2,format=qcow2,size=20,device=disk,bus=virtio,cache=none --cdrom 'iso/dlc-2.2.4-debian-buster-amd64.hybrid.iso' --memory 2048 --vcpu 2 + sudo virt-install --name dlc-test --boot cdrom --video virtio --disk path=$$PWD/dlc-test-disk0.qcow2,format=qcow2,size=20,device=disk,bus=virtio,cache=none --cdrom 'iso/dlc-2.2.5-debian-buster-amd64.hybrid.iso' --memory 2048 --vcpu 2 sudo virsh destroy dlc-test sudo virsh undefine dlc-test sudo rm $$PWD/dlc-test-disk0.qcow2 @@ -75,7 +75,7 @@ test_kvm_bios: test_kvm_uefi: # Run the resulting image in KVM/virt-manager (UEFI mode) # UEFI support must be enabled in QEMU config for EFI install tests https://wiki.archlinux.org/index.php/Libvirt#UEFI_Support (/usr/share/OVMF/*.fd) - sudo virt-install --name dlc-test --boot loader=/usr/share/OVMF/OVMF_CODE.fd --video virtio --disk path=$$PWD/dlc-test-disk0.qcow2,format=qcow2,size=20,device=disk,bus=virtio,cache=none --cdrom 'iso/dlc-2.2.4-debian-buster-amd64.hybrid.iso' --memory 2048 --vcpu 2 + sudo virt-install --name dlc-test --boot loader=/usr/share/OVMF/OVMF_CODE.fd --video virtio --disk path=$$PWD/dlc-test-disk0.qcow2,format=qcow2,size=20,device=disk,bus=virtio,cache=none --cdrom 'iso/dlc-2.2.5-debian-buster-amd64.hybrid.iso' --memory 2048 --vcpu 2 sudo virsh destroy dlc-test sudo virsh undefine dlc-test sudo rm $$PWD/dlc-test-disk0.qcow2 diff --git a/README.md b/README.md index 697c44d..748e125 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ This repository contains the `live-build` configuration and scripts used to buil ## Download -**[![](doc/md/download.png) Download .ISO image](https://github.com/nodiscc/debian-live-config/releases/download/2.2.4/dlc-2.2.3-debian-buster-amd64.hybrid.iso)** (64-bit) +**[![](doc/md/download.png) Download .ISO image](https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/dlc-2.2.5-debian-buster-amd64.hybrid.iso)** (64-bit) ## Documentation diff --git a/auto/config b/auto/config index c671cad..9d67eee 100755 --- a/auto/config +++ b/auto/config @@ -24,7 +24,7 @@ lb config noauto \ --firmware-chroot true \ --initramfs live-boot \ --iso-publisher dlc \ ---iso-volume dlc-2.2.4 \ +--iso-volume dlc-2.2.5 \ --linux-packages "linux-image linux-headers" \ --bootappend-live "boot=live config splash" \ --memtest memtest86+ \ diff --git a/config/bootloaders/isolinux/live.cfg.in b/config/bootloaders/isolinux/live.cfg.in index 3c30193..600a963 100644 --- a/config/bootloaders/isolinux/live.cfg.in +++ b/config/bootloaders/isolinux/live.cfg.in @@ -1,7 +1,7 @@ menu hshift 0 menu width 82 -menu title dlc 2.2.4 - Boot menu +menu title dlc 2.2.5 - Boot menu include stdmenu.cfg label live-@FLAVOUR@-english diff --git a/config/bootloaders/isolinux/menu.cfg b/config/bootloaders/isolinux/menu.cfg index 3131622..74f4f12 100644 --- a/config/bootloaders/isolinux/menu.cfg +++ b/config/bootloaders/isolinux/menu.cfg @@ -1,7 +1,7 @@ menu hshift 0 menu width 82 -menu title dlc 2.2.4 - Boot menu +menu title dlc 2.2.5 - Boot menu include stdmenu.cfg include live.cfg diff --git a/doc/md/download-and-installation.md b/doc/md/download-and-installation.md index 4bc1c25..1b391bd 100644 --- a/doc/md/download-and-installation.md +++ b/doc/md/download-and-installation.md @@ -10,16 +10,16 @@ ## Download -**[![](download.png) Download](https://github.com/nodiscc/debian-live-config/releases/download/2.2.4/dlc-2.2.4-debian-buster-amd64.hybrid.iso)** the latest ISO image +**[![](download.png) Download](https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/dlc-2.2.5-debian-buster-amd64.hybrid.iso)** the latest ISO image (Recommended) verify file integrity and authenticity with GPG: ```bash # download the iso, signing key, checksums and signature -wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.4/dlc-2.2.4-debian-buster-amd64.hybrid.iso -wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.4/dlc-release.key -wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.4/SHA512SUMS -wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.2/SHA512SUMS.sign +wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/dlc-2.2.5-debian-buster-amd64.hybrid.iso +wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/dlc-release.key +wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/SHA512SUMS +wget https://github.com/nodiscc/debian-live-config/releases/download/2.2.5/SHA512SUMS.sign # import the release signing key # the key used to sign releases has key ID 16C50725859EBE2DD1B22100BCC63E85387671B9 gpg --import dlc-release.key