Skip to content

Commit 4e182a6

Browse files
stonebigclaude
andcommitted
Release v1.0.0 of 2026-07-13 : Clip me down !
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 2dc688f commit 4e182a6

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

HISTORY.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
Changelog
22
=========
33

4+
2026-07-13b : v1.0.0 'Clip me down !'
5+
-------------------------------------
6+
7+
* copy/paste via the Clipboard, with 3 new toolbar icons : export selected table to clipboard, export script selection to clipboard, import clipboard into a table 'from_clipboard'
8+
9+
* copy reuses the csv export machinery : optional header line, choice of separator (TAB first, Excel-friendly), robust to utf-8 ; paste reuses the csv import dialog with all its guessing (separator, header, decimal)
10+
11+
* copy dialog offers 'Copy and close' / 'Copy' / 'Cancel'
12+
13+
* dialogs now pop up near the main window (multi-screen fix)
14+
15+
* welcome demos show current local time and timestamp (DuckDB : current_localtimestamp() avoids the pytz requirement of get_current_timestamp())
16+
17+
* housekeeping : Python 2.7 / pre-3.3 compatibility code removed
18+
19+
* fix : the csv-sniffed quotechar was silently ignored (NameError), and export_writer now honors its quotechar parameter
20+
21+
* docs : icon gifs tracked in docs/output_gifs, incl. the 3 new clipboard icons
22+
23+
424
2026-07-13a : v0.14.0 'Quack me up !'
525
-------------------------------------
626

sqlite_bro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.14.0'
1+
__version__ = '1.0.0'

sqlite_bro/sqlite_bro.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ class App:
9797

9898
def __init__(self, use_gui=True):
9999
"""create a tkk graphic interface with a main window tk_win"""
100-
self.__version__ = "0.14.0"
101-
self._title = "of 2026-07-12 : 'Quack me up !'"
100+
self.__version__ = "1.0.0"
101+
self._title = "of 2026-07-13 : 'Clip me down !'"
102102
self.conn = None # Baresql database object
103103
self.database_file = ""
104104
self.initialdir = "."

0 commit comments

Comments
 (0)