Skip to content

ihtfw/LiteDbExplorer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LiteDb Explorer

Graphical editor for LiteDB databases. Written in .NET and WPF.

Features in current pre-release:

  • View and edit existing documents
  • Add new items to database including files
  • Preview files (images and text files)
  • Export database documents (as JSON) and files
  • Change password in protected databases
  • Shrink database
  • Open multiple databases at the same time
  • Document tree
  • Portable exe (require .NET 4.6.2)
  • Material dark and white theme

Download

Grab latest build from releases page.

Portable single exe version available from version 7.0, just unzip and run.

Requirements: Windows 7, 8 or 10 and .Net 4.6.2

Issue Reporting Guidelines

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

This is a: (required)

  • Bug Report or Feature Request

Version: (required)

  • Which version?

Steps to reproduce: (required)

  • Steps to reproduce...

What is expected: (required)

  • What is expected?

What is actually happening: (required)

  • What is actually happening?

Any additional comments: (optional)

  • Any additional comments

Contributions

All contributions are welcome!

Regarding code styling, there are only a few major rules:

  • private fields and properties should use camelCase (with underscore)
  • all methods (private and public) should use PascalCase
  • use spaces instead of tabs with 4 spaces width
  • always encapsulate with brackets:
if (true)
{
    DoSomething()
}

instead of

if (true)
    DoSomething()

Building

To build from cmdline run build.ps1 in PowerShell. Script builds Release configuration by default into the same directory. Script accepts Configuration, OutputPath, Portable (creates zip package) and SkipBuild parameters.

Packages

No packages published

Languages

  • C# 97.0%
  • NSIS 2.1%
  • PowerShell 0.9%