diff --git a/CHANGELOG b/CHANGELOG index 55f0e56..c00d301 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +alexandra (1.4.0) unstable; urgency=low + + * Quick search improvements. + * Fetching metadata from online sources. + * Creating playlists. + * New settings (shortcuts, double click and other). + * Ability to build without MediaInfo support. + * Updates checker. + * Few changes in structure of the project. + * Bugfixes, ui improvements and something like this. + + -- Eugene Melnik Thu, 14 Oct 2015 11:51:52 +0300 + alexandra (1.3.0) unstable; urgency=high * Statistics function added (first version). diff --git a/README.md b/README.md index ff791d6..a9d6563 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,6 @@ Also here you can find quick search, advanced search, random play function, tech **Build:** - cd ./src/ qmake make diff --git a/debian/changelog b/debian/changelog index 55f0e56..c00d301 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +alexandra (1.4.0) unstable; urgency=low + + * Quick search improvements. + * Fetching metadata from online sources. + * Creating playlists. + * New settings (shortcuts, double click and other). + * Ability to build without MediaInfo support. + * Updates checker. + * Few changes in structure of the project. + * Bugfixes, ui improvements and something like this. + + -- Eugene Melnik Thu, 14 Oct 2015 11:51:52 +0300 + alexandra (1.3.0) unstable; urgency=high * Statistics function added (first version). diff --git a/debian/control b/debian/control index 3feb251..127f683 100644 --- a/debian/control +++ b/debian/control @@ -14,17 +14,18 @@ Priority: optional Section: misc Depends: ${shlibs:Depends} Description: small opensource video library with great potential - Alexandra Video Library — a simple and comfortable program for organization and management - of the home video library. You can completely customize your movies in a list or a grid, add - a description, detailed information, user tags and posters. You can also use the films scanner - that will find and add all video files on your disk. + Alexandra Video Library — a simple and comfortable program for organization + and management of the home video library. You can completely customize your + movies in a list or a grid, add a description, detailed information, user tags + and posters. You can also use the films scanner that will find and add all + video files on your disk. . - Directly from the program you can start playing the film or playlist of films with any video - player installed on your computer. + Directly from the program you can start playing the film or playlist of films + with any video player installed on your computer. . - If you move your films to another folder, the wizard of moved files will find them for your - convenience. + If you move your films to another folder, the wizard of moved files will find + them for your convenience. . - Also here you can find quick search, advanced search, random play function, technical information - about files, lot of settings and much more. Enjoy! + Also here you can find quick search, advanced search, random play function, + technical information about files, lot of settings and much more. Enjoy! diff --git a/src/settingswindow.cpp b/src/settingswindow.cpp index 93d96e9..cdda433 100644 --- a/src/settingswindow.cpp +++ b/src/settingswindow.cpp @@ -589,6 +589,7 @@ void SettingsWindow::ConfigureApplicationTab() labelDatabaseFile->setEnabled( false ); eDatabaseFile->setEnabled( false ); bOpenDatabaseFile->setEnabled( false ); + bCreateDatabase->setEnabled( false ); // Posters labelPostersFolder->setEnabled( false ); ePostersFolder->setEnabled( false ); diff --git a/src/version.h b/src/version.h index af02dcd..27df93f 100644 --- a/src/version.h +++ b/src/version.h @@ -43,7 +43,7 @@ namespace Alexandra const quint8 verMajor = 1; const quint8 verMinor = 4; const quint8 verFix = 0; - const QString appVersionFull = QString( "%1.%2.%3-alpha" ).arg( verMajor ).arg( verMinor ).arg( verFix ); + const QString appVersionFull = QString( "%1.%2.%3" ).arg( verMajor ).arg( verMinor ).arg( verFix ); const QString appBuildDate = QString( __DATE__ ); const quint8 databaseVersion = 0x10;