# HG changeset patch # User Tom Hayward tom@tomh.us # Date 1464305985 25200 # Thu May 26 16:39:45 2016 -0700 # Node ID e16d2a8d216d10cdf678ff4ff6a1f7af940d6e78 # Parent 8ba3e3590a2a26f67a85f0c26ea4ca89d5b86081 [ui] Deprecate .chirp file format by disabling export. #3689
The .chirp file format provides no additional features compared to .CSV and is therefore redundant. .chirp is the more complex and less frequently used format of the two, so to eliminate the redundancy it should be deprecated.
This patch removes the ability to export as .chirp, leaving no way to generate new .chirp files. It preserves the ability to open and import .chirp files, so any existing .chirp files can still be opened, edited, and exported to other formats.
diff -r 8ba3e3590a2a -r e16d2a8d216d chirp/ui/mainapp.py --- a/chirp/ui/mainapp.py Thu May 26 12:14:44 2016 -0700 +++ b/chirp/ui/mainapp.py Thu May 26 16:39:45 2016 -0700 @@ -1164,7 +1164,6 @@
def do_export(self): types = [(_("CSV Files") + " (*.csv)", "csv"), - (_("CHIRP Files") + " (*.chirp)", "chirp"), ]
eset = self.get_current_editorset()