• R/O
  • SSH

execsql: Commit

Default repository for execsql.py


Commit MetaInfo

Révision2e6cc3702a25a565d44aa428b7334dde90364cbb (tree)
l'heure2019-12-24 05:50:28
AuteurDreas Nielsen <dnielsen@inte...>
CommiterDreas Nielsen

Message de Log

Added a default wrap width for the label in the DisplayUI, to force wrapping with the HALT metacommand.

Change Summary

Modification

diff -r 26288c4cb3b8 -r 2e6cc3702a25 execsql/execsql.py
--- a/execsql/execsql.py Mon Dec 23 12:41:35 2019 -0800
+++ b/execsql/execsql.py Mon Dec 23 12:50:28 2019 -0800
@@ -27,12 +27,12 @@
2727 #
2828 # ===============================================================================
2929
30-__version__ = "1.54.1"
30+__version__ = "1.54.2"
3131 __vdate = "2019-12-22"
3232
3333 primary_vno = 1
3434 secondary_vno = 54
35-tertiary_vno = 1
35+tertiary_vno = 2
3636
3737 import os
3838 import os.path
@@ -6041,7 +6041,7 @@
60416041 self.msg_label.configure(wraplength=event.width - 5)
60426042 # Message frame and control.
60436043 msgframe = ttk.Frame(master=self.win, padding="3 3 3 3")
6044- self.msg_label = ttk.Label(msgframe, text=message)
6044+ self.msg_label = ttk.Label(msgframe, text=message, wraplength=400)
60456045 self.msg_label.bind("<Configure>", wrap_msg)
60466046 self.msg_label.grid(column=0, row=0, sticky=tk.EW)
60476047 msgframe.columnconfigure(0, weight=1)
diff -r 26288c4cb3b8 -r 2e6cc3702a25 setup.py
--- a/setup.py Mon Dec 23 12:41:35 2019 -0800
+++ b/setup.py Mon Dec 23 12:50:28 2019 -0800
@@ -4,7 +4,7 @@
44 long_description = f.read()
55
66 setuptools.setup(name='execsql',
7- version='1.54.1',
7+ version='1.54.2',
88 description="Runs a SQL script against a PostgreSQL, MS-Access, SQLite, MS-SQL-Server, MySQL, MariaDB, Firebird, or Oracle database, or an ODBC DSN. Provides metacommands to import and export data, copy data between databases, conditionally execute SQL and metacommands, and dynamically alter SQL and metacommands with substitution variables. Data can be exported in 13 different formats, including CSV, TSV, ODS, HTML, JSON, LaTeX, and Markdown tables, and using custom templates.",
99 author='Dreas Nielsen',
1010 author_email='dreas.nielsen@gmail.com',
Afficher sur ancien navigateur de dépôt.