Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Change support email address in the design-time components. Pursuant to [17405b6e06]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
9c43b0b95cad1b65e3998c2b5fed3892 |
User & Date: | mistachkin 2014-11-07 22:00:43 |
References
2014-11-07
| ||
22:01 | • Closed ticket [17405b6e06]: VisualStudio designer shows robert@blackcastlesoft.com each time plus 5 other changes artifact: 686c2a09ff user: mistachkin | |
Context
2014-11-07
| ||
23:48 | Defer disposing of the connection created by the static SQLiteCommand.Execute method when a data reader is returned. Fix for [daeaf3150a]. check-in: ad79758d0c user: mistachkin tags: trunk | |
22:00 | Change support email address in the design-time components. Pursuant to [17405b6e06]. check-in: 9c43b0b95c user: mistachkin tags: trunk | |
2014-10-30
| ||
01:12 | Update SQLite core library to the 3.8.7.1 release. check-in: 5074b140f0 user: mistachkin tags: trunk | |
Changes
Changes to SQLite.Designer/Editors/TableDesignerDoc.cs.
795 795 { 796 796 case __FRAMESHOW.FRAMESHOW_WinShown: 797 797 case __FRAMESHOW.FRAMESHOW_WinRestored: 798 798 SetPropertyWindow(); 799 799 if (_warned == false) 800 800 { 801 801 _warned = true; 802 - MessageBox.Show(this, "The table designer is still in development. Please report bugs to robert@blackcastlesoft.com", "Feature Under Review", MessageBoxButtons.OK); 802 + MessageBox.Show(this, "The table designer is still in development. Please report bugs to the sqlite-users mailing list at sqlite-users@sqlite.org", "Feature Under Review", MessageBoxButtons.OK); 803 803 } 804 804 break; 805 805 } 806 806 return VSConstants.S_OK; 807 807 } 808 808 809 809 int IVsWindowFrameNotify.OnSize()
Changes to SQLite.Designer/Editors/ViewDesignerDoc.cs.
564 564 case __FRAMESHOW.FRAMESHOW_WinShown: 565 565 case __FRAMESHOW.FRAMESHOW_WinRestored: 566 566 _timer.Enabled = true; 567 567 SetPropertyWindow(); 568 568 if (_warned == false) 569 569 { 570 570 _warned = true; 571 - MessageBox.Show(this, "The view designer is still in development. Please report bugs to robert@blackcastlesoft.com", "Feature Under Review", MessageBoxButtons.OK); 571 + MessageBox.Show(this, "The view designer is still in development. Please report bugs to the sqlite-users mailing list at sqlite-users@sqlite.org", "Feature Under Review", MessageBoxButtons.OK); 572 572 } 573 573 break; 574 574 } 575 575 return VSConstants.S_OK; 576 576 } 577 577 578 578 int IVsWindowFrameNotify.OnSize()