- update to 2.6:
+ Fixed an issue causing data loss when closing the main window, because open sub-windows were not properly queried for unsaved changes. + Refactored the module unlocking GUI to provide more info on failures and made opening a locked module also initiate the unlocking procedure. + Fixed a bug that some display/filter settings were not applied on startup + Add tabbed window arrangement mode + Fix problems with manual arrangement mode + Implemented a menu item and tool button for opening installed works + Refactored a couple of other dialogs to use the new bookshelf model. This means they now also have search and grouping fields. + Refactored search dialog module chooser dialog - removed all patches OBS-URL: https://build.opensuse.org/package/show/Education/bibletime?expand=0&rev=21
This commit is contained in:
parent
ea007497a4
commit
a501fe07e2
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17338a57442eca0f8fe42d6f86b11373a1a18562d54763ee7e845955b3c2a824
|
||||
size 2856968
|
3
bibletime-2.6.tar.bz2
Normal file
3
bibletime-2.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:acf1e627f0079e63caba7438954d4977a0fc6c30b5f0c7c636e3d62ff67c54d3
|
||||
size 2918796
|
@ -1,13 +0,0 @@
|
||||
Index: configure
|
||||
===================================================================
|
||||
--- configure.orig
|
||||
+++ configure
|
||||
@@ -32790,7 +32790,7 @@
|
||||
using namespace sword;
|
||||
#endif
|
||||
|
||||
-int main(int argc, char** argv) {
|
||||
+int main(int argc, char** argv[]) {
|
||||
std::cout << SWVersion::currentVersion << std::endl;
|
||||
return 0;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
Index: bibletime/backend/cswordbackend.cpp
|
||||
===================================================================
|
||||
--- bibletime/backend/cswordbackend.cpp.orig
|
||||
+++ bibletime/backend/cswordbackend.cpp
|
||||
@@ -251,7 +251,7 @@
|
||||
|
||||
/** Returns true if the given option is enabled. */
|
||||
const bool CSwordBackend::isOptionEnabled( const CSwordModuleInfo::FilterTypes type) {
|
||||
- return (getGlobalOption( optionName(type).latin1() ) == "On");
|
||||
+ return (getGlobalOption( strcmp("optionName(type).latin1()", "On")));
|
||||
}
|
||||
|
||||
/** Sets the given options enabled or disabled depending on the second parameter. */
|
||||
Index: bibletime/frontend/cdragdropmgr.cpp
|
||||
===================================================================
|
||||
--- bibletime/frontend/cdragdropmgr.cpp.orig
|
||||
+++ bibletime/frontend/cdragdropmgr.cpp
|
||||
@@ -36,7 +36,7 @@
|
||||
};
|
||||
|
||||
bool CDragDropMgr::BTDrag::provides( const char* type ) const {
|
||||
- return (type == "BibleTime/DND"); //return only true if the type is BibleTime/DND
|
||||
+ return (strcmp(type, "BibleTime/DND")); //return only true if the type is BibleTime/DND
|
||||
};
|
||||
|
||||
const char* CDragDropMgr::BTDrag::format( int i ) const {
|
@ -1,3 +1,23 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Mar 28 21:25:12 UTC 2010 - lars@linux-schulserver.de
|
||||
|
||||
- update to 2.6:
|
||||
+ Fixed an issue causing data loss when closing the main window,
|
||||
because open sub-windows were not properly queried for unsaved
|
||||
changes.
|
||||
+ Refactored the module unlocking GUI to provide more info on
|
||||
failures and made opening a locked module also initiate the
|
||||
unlocking procedure.
|
||||
+ Fixed a bug that some display/filter settings were not applied
|
||||
on startup
|
||||
+ Add tabbed window arrangement mode
|
||||
+ Fix problems with manual arrangement mode
|
||||
+ Implemented a menu item and tool button for opening installed works
|
||||
+ Refactored a couple of other dialogs to use the new bookshelf model.
|
||||
This means they now also have search and grouping fields.
|
||||
+ Refactored search dialog module chooser dialog
|
||||
- removed all patches
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 20 19:08:44 UTC 2009 - lars@linux-schulserver.de
|
||||
|
||||
|
@ -7,9 +7,9 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: bibletime
|
||||
Name: bibletime
|
||||
Summary: An easy to use Bible study tool
|
||||
Version: 2.5
|
||||
Version: 2.6
|
||||
Release: 1
|
||||
License: GNU General Public License version 2 (GPL v2)
|
||||
Url: http://www.bibletime.info/
|
||||
|
Loading…
x
Reference in New Issue
Block a user