Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rp-/sqlitebrowser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: sqlb-3.0.1
Choose a base ref
...
head repository: rp-/sqlitebrowser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: sqlb-3.x
Choose a head ref
  • 17 commits
  • 21 files changed
  • 2 contributors

Commits on Feb 12, 2014

  1. fix memory leak

    rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    e3c916d View commit details
    Browse the repository at this point in the history
  2. Allow space characters in table and index names, disallow ` chars

    Spaces in table, index and field names are actually allowed by SQLite,
    so no need to check for them.
    However, "`" characters cause problems when appearing in SQL statements
    so disallow them instead.
    MKleusberg authored and rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    914d38a View commit details
    Browse the repository at this point in the history
  3. MainWindow: Update execute query table view when no results returned

    Also update the table view widget and the status message in the Execute
    Query tab of the main window when the query was valid but returned no
    results.
    
    Fixes #38.
    MKleusberg authored and rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    9f8dd44 View commit details
    Browse the repository at this point in the history
  4. SqlExecutionArea: Replace UTF8 paragraph separator by newline char

    When the user selects multiple lines of SQL code and hits F5 to execute
    them the execution stops after the first line because we use the
    selectedText() method of the QTextCursor class to get the selected text
    and this method returns Unicode U+2029 paragraph separator characters
    instead of newline \n characters.
    (see http://qt-project.org/doc/qt-4.8/qtextcursor.html#selectedText)
    Fix this by replacing these by regular newline characters to.
    MKleusberg authored and rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    ed5aa8c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0b43234 View commit details
    Browse the repository at this point in the history
  6. remove merge artifact

    rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    0a41e20 View commit details
    Browse the repository at this point in the history
  7. push version

    rp- committed Feb 12, 2014
    Configuration menu
    Copy the full SHA
    09b4343 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2014

  1. fix bug, if there is no NL in the last line comment #40

    if there was no NL in the line comment we ran into an
    endless recursion, now we check for that corner case.
    rp- committed Feb 14, 2014
    Configuration menu
    Copy the full SHA
    cde9a70 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2014

  1. Sort db objects in Database Structure tab by their name

    Conflicts:
    	src/DbStructureModel.cpp
    MKleusberg authored and rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    c077d4c View commit details
    Browse the repository at this point in the history
  2. ExportCsvDialog: Set table selection to current table in Browse Data tab

    When called while the Browse Data tab of the main window is selected
    also select the current table or view in the ExportCsvDialog.
    
    Sort the table names in the combobox of the ExportCsvDialog.
    
    Conflicts:
    	src/ExportCsvDialog.cpp
    MKleusberg authored and rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    614504d View commit details
    Browse the repository at this point in the history
  3. Clear the tree widget in the Structure tab when after closing a DB

    Clear the tree widget in the 'Database Structure' tab of the main window
    after closing a database.
    See issue #44.
    MKleusberg authored and rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    244d811 View commit details
    Browse the repository at this point in the history
  4. Update the recordset label in the Browse tab after closing a DB

    Reset the recordset label in the Browse Data tab of the main window
    after closing a DB file.
    See issue #44.
    MKleusberg authored and rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    2577981 View commit details
    Browse the repository at this point in the history
  5. Fix a startup crash

    dunno really know whats different here to master branch
    rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    813ba2d View commit details
    Browse the repository at this point in the history
  6. grammar: fix column constrain

    DEFAULT also takes quoted literals
    rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    2ccf006 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    db8b2d0 View commit details
    Browse the repository at this point in the history
  8. release: push version to 3.0.3

    rp- committed Apr 28, 2014
    Configuration menu
    Copy the full SHA
    5b305b0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fbb6fe5 View commit details
    Browse the repository at this point in the history
Loading