- update to 2.5:
+ improvements to the subwindow arrangement algorithms ++ many bugfixes ++ new window arrangement modes "Tile" and "Auto Tile" + new module selection header in the text windows + tons of bugfixes + many improvements to the windows port + improved debug mode of the application + improvements to build system + translation updates + Christmas splash screen and display template OBS-URL: https://build.opensuse.org/package/show/Education/bibletime?expand=0&rev=18
This commit is contained in:
committed by
Git OBS Bridge
parent
aa8d059094
commit
19ebe88a56
3
bibletime-2.5.tar.bz2
Normal file
3
bibletime-2.5.tar.bz2
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:17338a57442eca0f8fe42d6f86b11373a1a18562d54763ee7e845955b3c2a824
|
||||
size 2856968
|
13
bibletime-configure.patch
Normal file
13
bibletime-configure.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
26
bibletime-stringcompare.patch
Normal file
26
bibletime-stringcompare.patch
Normal file
@@ -0,0 +1,26 @@
|
||||
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,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 20 19:08:44 UTC 2009 - lars@linux-schulserver.de
|
||||
|
||||
- update to 2.5:
|
||||
+ improvements to the subwindow arrangement algorithms
|
||||
++ many bugfixes
|
||||
++ new window arrangement modes "Tile" and "Auto Tile"
|
||||
+ new module selection header in the text windows
|
||||
+ tons of bugfixes
|
||||
+ many improvements to the windows port
|
||||
+ improved debug mode of the application
|
||||
+ improvements to build system
|
||||
+ translation updates
|
||||
+ Christmas splash screen and display template
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Dec 13 15:47:03 UTC 2009 - lars@linux-schulserver.de
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
Name: bibletime
|
||||
Summary: An easy to use Bible study tool
|
||||
Version: 2.4
|
||||
Version: 2.5
|
||||
Release: 1
|
||||
License: GNU General Public License version 2 (GPL v2)
|
||||
Url: http://www.bibletime.info/
|
||||
|
Reference in New Issue
Block a user