Skip to content

Commit

Permalink
Fiction update import fix
Browse files Browse the repository at this point in the history
  • Loading branch information
libgenapps committed Apr 7, 2018
1 parent 69c7361 commit 961a101
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LibgenDesktop.Setup/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
{
internal static class Constants
{
public const string CURRENT_VERSION = "1.0.2";
public const string TITLE_VERSION = "1.0.2";
public const string CURRENT_VERSION = "1.0.3";
public const string TITLE_VERSION = "1.0.3";
public const string PRODUCT_TITLE_FORMAT = "Libgen Desktop " + TITLE_VERSION + " ({0}-bit)";
public const string SHORTCUT_TITLE_FORMAT = "Libgen Desktop ({0}-bit)";
public const string PRODUCT_COMPANY = "Libgen Apps";
Expand Down
6 changes: 3 additions & 3 deletions LibgenDesktop/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ namespace LibgenDesktop.Common
{
internal static class Constants
{
public const string CURRENT_VERSION = "1.0.2";
public const string CURRENT_GITHUB_RELEASE_NAME = "1.0.2";
public static readonly DateTime CURRENT_GITHUB_RELEASE_DATE = new DateTime(2018, 3, 30);
public const string CURRENT_VERSION = "1.0.3";
public const string CURRENT_GITHUB_RELEASE_NAME = "1.0.3";
public static readonly DateTime CURRENT_GITHUB_RELEASE_DATE = new DateTime(2018, 4, 7);
public const string CURRENT_DATABASE_VERSION = "1.0";

public const string APP_SETTINGS_FILE_NAME = "libgen.config";
Expand Down
2 changes: 1 addition & 1 deletion LibgenDesktop/Models/Database/SqlScripts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ internal static class SqlScripts
"Asin=@Asin," +
"AuthorHash=@AuthorHash," +
"TitleHash=@TitleHash," +
"Visible=@Visible," +
"Visible=@Visible " +
"WHERE Id=@Id";

public const string INSERT_FICTION_FTS_WITHOUT_ID =
Expand Down

0 comments on commit 961a101

Please sign in to comment.