mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
commit
16e8a83e5e
3 changed files with 22 additions and 12 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,4 +1,8 @@
|
||||||
build**
|
build**
|
||||||
.vscode
|
.vscode
|
||||||
obj-**
|
obj-**
|
||||||
debian**
|
debian/rpi-imager/**
|
||||||
|
debian/.debhelper**
|
||||||
|
debian/files
|
||||||
|
debian/*.substvars
|
||||||
|
debian/debhelper**
|
22
debian/changelog
vendored
22
debian/changelog
vendored
|
@ -1,17 +1,23 @@
|
||||||
rpi-imager (1.7.6) unstable; urgency=medium
|
rpi-imager (1.8.0) unstable; urgency=medium
|
||||||
|
|
||||||
* Advanced options: change to tabbed UI
|
* Advanced options: Rename to OS customization
|
||||||
* Advanced options: make SSH public key field a textarea
|
* OS customization: change to tabbed UI
|
||||||
* Advanced options: add convenience button to run ssh-keygen
|
* OS customization: make SSH public key field a textarea
|
||||||
* Choose OS screen: Add Pi model selection box
|
* OS customization: add convenience button to run ssh-keygen
|
||||||
* Adds Spanish/Ukrainian translations
|
* OS customization: Enforce choice as part of write flow
|
||||||
* Updates French translation
|
* OS customization: Fixes for state consistency across UI
|
||||||
|
* Home: Add mechanism for selecting Raspberry Pi device
|
||||||
|
* Shared: Multiple keyboard focus fixes
|
||||||
|
* i18n: Adds Spanish/Ukrainian translations
|
||||||
|
* i18n: Updates French, Catalan, Italian, German, Spanish, Russian,
|
||||||
|
Japanese translations
|
||||||
|
* i18n: Use en_US as refernce string, and make en_GB a translation
|
||||||
* Workaround for ArchLinux's lsblk labeling internal SD card readers
|
* Workaround for ArchLinux's lsblk labeling internal SD card readers
|
||||||
(mmcblk0) as non-removable storage.
|
(mmcblk0) as non-removable storage.
|
||||||
* Allow drag-dropping image files to Imager.
|
* Allow drag-dropping image files to Imager.
|
||||||
* Local .xz files: parse uncompressed size for better progress reports.
|
* Local .xz files: parse uncompressed size for better progress reports.
|
||||||
|
|
||||||
-- Floris Bos <bos@je-eigen-domein.nl> Sat, 23 Sep 2023 19:47:40 +0200
|
-- Floris Bos <bos@je-eigen-domein.nl> Wed, 18 Oct 2023 18:00:00 +0200
|
||||||
|
|
||||||
rpi-imager (1.7.5) unstable; urgency=medium
|
rpi-imager (1.7.5) unstable; urgency=medium
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ OPTION (ENABLE_TELEMETRY "Enable sending telemetry" ON)
|
||||||
|
|
||||||
project(rpi-imager LANGUAGES CXX C)
|
project(rpi-imager LANGUAGES CXX C)
|
||||||
set(IMAGER_VERSION_MAJOR 1)
|
set(IMAGER_VERSION_MAJOR 1)
|
||||||
set(IMAGER_VERSION_MINOR 7)
|
set(IMAGER_VERSION_MINOR 8)
|
||||||
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.6")
|
set(IMAGER_VERSION_STR "${IMAGER_VERSION_MAJOR}.${IMAGER_VERSION_MINOR}.0")
|
||||||
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},6,0")
|
set(IMAGER_VERSION_CSV "${IMAGER_VERSION_MAJOR},${IMAGER_VERSION_MINOR},0,0")
|
||||||
add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}")
|
add_definitions(-DIMAGER_VERSION_STR="${IMAGER_VERSION_STR}")
|
||||||
add_definitions(-DIMAGER_VERSION_CSV=${IMAGER_VERSION_CSV})
|
add_definitions(-DIMAGER_VERSION_CSV=${IMAGER_VERSION_CSV})
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue