3.1 m37 Snapshot - Release Notes
These notes contain changes between DEV300_m29 and DEV300_m37. Please have a look for previous changes in older Release Notes (example: http://development.openoffice.org/releases/3.0.m28_snapshot.html).
This release will install as OOo-Dev3.0 but this will be changed soon.
Sources can be received from SVN by tag DEV300_m37.
What's new ?
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
bi-directional writing for chart elements | i14365 | Bi-directional Writing in Charts | For an Arabic version of OpenOffice.org it is necessary to allow control over the text direction for chart elements that do contain text. | ingrid.halama@sun.com | speclink | chart |
image controls: support for document-embedded images | i38215 |
feature-info: Image controls can now be bound to images which are embedded in the document where the control lives in. More precise, when you select an image to be displayed at an image control, the "Link" option in the file picker is not disabled anymore. When you uncheck the option (the default is "checked", to mimic the legacy behavior), then the image is displayed in the control, and upon saving the document, it's embedded in the document itself. This way, you can create documents with image controls which are exchangeable with other people/installations/platforms, which formerly was much more difficult due to the need to also copy the images, and place them in exactly the same location as on the originating machine (which often is simply impossible). Thanks for Noel Power for providing the patch for this. |
frank.schoenheit@sun.com | dba | ||
Relative path for file based databases | i41897 |
feature-info: At the moment, when you create a file-based database (such as dBase or Spreadsheet), the URL to the files (let's call it the "data URL") is stored in an absolute manner - that is, something like "file:///c:/foo/bar". As a result, when you move the database document (the .odb file), together with the underlying data, to another machine, you need to either duplicate the file structure on this target machine, or to adjust the settings for the database. Now it is possible that the path is stored relatively when the option "Save URLs relative to file system" setting in the "Tools->Options->Load/Save" dialog is checked. |
ocke.janssen@sun.com | dba | ||
SQL syntax highlighting | i67961 | mod@openoffice.org | speclink | dba | ||
New short cuts for Sun Report Builder | i80200 |
feature-info: The Edit menu now contains a "Select All" entry which contains Select All -> Select All Select all Labels Select all Formatted Fields Select Report |
ocke.janssen@sun.com | dba | ||
views opened for editing are automatically put into "Run SQL Directly" mode | i87192 |
feature-info: When you open an table view for editing its constituting SQL command (which is a feature currently supported for embedded HSQLDB only), then the query editor is automatically put into the "Run SQL command directly" mode. |
frank.schoenheit@sun.com | dba | ||
"Empty string is NULL" behavior refined | i90403 |
feature-info: In the course of fixing issue 90403 and issue 92471, the behavior of form controls whose "Empty string is NULL" property is set to "Yes" has been refined. This change might make existing forms behave slightly different than before, but certainly more expectation-conformant now. First, the property is now also respected when you never touched the respective control before saving the record. That is, imagine a control which has this property set to "Yes", this way declaring that if the control contains an empty string, then this should be propagated to the database as (the dedicated) NULL value. Formerly, when you moved to the insertion row of the form, so the control was initially empty, entered some data into other controls of the current record, and saved the record without actually touching the first control, then it actually updated an empty string. Now, with the change, it updates NULL, as this is what "Empty String is NULL" = "Yes" requests. Second, when a control was bound to a database column which was declared as NOT NULL, then the control *always* updated an empty string instead of NULL, no matter what its "Empty string is NULL" property requested. Effectively, this killed server-side defaults of database fields, as such defaults are only applied when the field is NULL. Now, with the change, controls always update NULL in such a setup, this way enabling server-side defaults. |
frank.schoenheit@sun.com | dba | ||
image controls: can be bound to text database columns, interpreting their content as relative link to the image | i91310 |
feature-info: Image controls in database forms can now be bound to text columns. Formerly, you could only bind them to columns whose content could reasonably be interpreted as binary (BLOB etc.). Now, when you select a text database column as source for the image control, then it will interpret the content of the respective column's content as URL, and load and display the image pointed to by this URL. Also, the URL might be relative to the document which the image control is embedded into. |
frank.schoenheit@sun.com | dba | ||
form controls: new property "Input Required" | i92322 |
feature-info: All form controls which can be bound to a database column (i.e. have the "Data field" property) now have a new property called "Input required". Description ========= This property controls whether or not the input of this field is checked against being empty (NULL). It is evaluated for controls which are bound to a database field which is defined as required (i.e. which is not allowed to contain the special NULL value), immediately before the current record of the form is to be written into the database. If the property is set to "Yes", and the field contains no input when the current record is to be written to the database, then an error message will be shown to the user, and the respective control will be focused afterwards. Note that this is the known behaviour so far - the property defaults to "Yes" so that newly created controls behave as they would do in previous OOo versions. If the property is set to "No", and the field contains no input when the current record is to be written to the database, then this is ignored. It's up to the underlying database to either reject the update, or fill the respective column with a server-side default value. Functional Constraints ================= If the "Form data input checks for required fields" option in the advanced settings of the database document (Edit / Database / Advanced Settings ...) is *not* checked, then the "Input required" property for all controls in all forms in this database document does not have any effect, since the document-wide setting overrules the per-control settings. UI == In the property browser, the "Input required" is located immediately below the "Empty string is NULL" property, if it is present, otherwise immediately below the "Data field" property. If the "Data field" is not set (i.e. empty), then "Input required" is disabled, since it would be evaluated for bound controls only, anyway. If the "Empty string is NULL" is set to "No", then "Input required" is also disabled, since "Empty string is NULL" being "no" implies that when the user does not enter any value in the control, then an empty string, instead of the dedicated value NULL, is written, so there's always a non-NULL value no matter the user's action. |
frank.schoenheit@sun.com | dba | ||
image controls: scaling the image by keeping the ratio | i93264 |
feature-info: Image form controls in documents got an additional mode for scaling the image they display. Previously, you could control the scaling by setting the "Scale" property to "Yes" or "No" only, where "Yes" implied an anisotropic scaling, i.e. one which distorted the image's dimensions. Now, the "Scale" property allows the values "No" (same as before), "Keep Ratio" and "Fit to Size" (equivalent to the old "Yes"). When "Keep Ratio" is selected, the image is still scaled up or down to match the control dimensions, but it's ratio is aspect kept constant. This is especially useful for controls where the designer of the document does not know, at time of designing the document/control, the dimensions of the to-be-displayed images. In particular, this is useful for image controls in database forms, displaying images obtained from the database. |
frank.schoenheit@sun.com | dba | ||
check box grid columns have the "Tristate" property | i93457 |
feature-info: Check box columns in grid controls now have the "Tristate" property, which controls whether or not the "indetermined" state is allowed for the check box, as known from ordinary check box form controls. |
frank.schoenheit@sun.com | dba |
Feature title | TaskId | Spec. title | Spec. abstract | Dev. owner | Spec. link | Component |
---|---|---|---|---|---|---|
Let OOo use own file locking mechanics to lock alien formats as well. | i95528 | As practice has shown, it is a quite common case that OOo is used to edit documents of alien formats on network. Unfortunately it looks to be impossible to let the file be locked using file system locking, since it does not work in heterogeneous file systems as expected, and the mentioned scenario has been recognized as very important one. Thus the locking mechanics of OOo is not recognizable for third-party applications, except they implement support for OOo locking mechanics. The implementation in childworkspace fwk94 let the alien files be locked using the OOo file locking mechanics as well. That solves at least the cases when a file of alien format is edited only by OOo3.x in network. | Mikhail.Voitenko@sun.com | |
framew |
Integrated Child Workspaces
List of integrated child workspaces:
mav42_DEV300 |
3.0.1 showstopper issue. |
DEV300m37 |
ooo301gsl1_DEV300 |
GSL issues for OOo 3.0.1 |
DEV300m37 |
so9nevada_DEV300 |
Integrate SO9 in Nevada |
DEV300m37 |
sw301bf03_DEV300 |
Writer (regression) fixes for SO9.0.1/OOo3.0.1 |
DEV300m37 |
httpperf_DEV300 |
Fix unneeded HTTP requests during product online update notification process. |
DEV300m37 |
dev300m37masterfix | DEV300m37 | |
qascripts03 |
[Automation] |
DEV300m37 |
cairosource01 |
Support for building Cairo sources in OpenOffice.org |
DEV300m37 |
jl105 |
3.1 fixes |
DEV300m37 |
koheidatapilot02 |
General bug fixes for Calc's DataPilot. |
DEV300m37 |
sqlsyntaxhighlighting |
SQL syntax highlighting for base |
DEV300m37 |
vcl96 |
Fix gsl tasks for 3.1 |
DEV300m37 |
dba31e |
Further dba issue fixing |
DEV300m37 |
socs21 | DEV300m37 | |
accelerators01svn |
move accelerators configuration from "internal XML" to public XCS/XCU based |
DEV300m37 |
qadev34 |
enhancements and bugfixes for qadevOOo |
DEV300m37 |
tbo03 |
trivial testscript fixes in framework/global/math |
DEV300m37 |
hcshared19 |
Help CWS for 3.1 |
DEV300m37 |
rtlchart01 |
bi-directional writing for charts |
DEV300m37 |
ab64_DEV300 |
3.0.1 fixes |
DEV300m36 |
aw058 |
BugFixing CWS for DEV300 |
DEV300m36 |
buildid301_DEV300 |
CWS for issue i94693. |
DEV300m36 |
calc46_DEV300 |
OOo 3.0.1 Calc bug fixes |
DEV300m36 |
cli004 |
OOo build fixes. |
DEV300m36 |
cmcfixes50 |
Misc fixes for warnings seen with new gcc. |
DEV300m36 |
consolar01 |
Removes obsolet switches and parameter from the solenv/config/dev300.ini file. |
DEV300m36 |
dba301a_DEV300 |
Bugfixes for 3.0.1 |
DEV300m36 |
dev300m36masterfix | DEV300m36 | |
dv06_DEV300 |
Extension manager should use version info from basis layer |
DEV300m36 |
extmgrui06 |
Bugfixes for extension manager |
DEV300m36 |
fix30autorecovery_DEV300 |
fix issue 92968 (autorecovery does not recover the previously |
DEV300m36 |
fwk94_DEV300 |
Framework fixes for OOo3.0.1 |
DEV300m36 |
hb11 | DEV300m36 | |
hr56 |
CWS-Tooling: add 'common' and 'common.pro' as platforms to be fetched; implement 'cws cdiff'; bug fixes |
DEV300m36 |
i18n48_DEV300 | DEV300m36 | |
iconupdate301 |
Bugfixes for the Galaxy Icon Set. |
DEV300m36 |
impress163_DEV300 |
impress fixes for OOo 3.0.1 |
DEV300m36 |
jl114_DEV300 |
CLI UNO Fixes |
DEV300m36 |
native206_DEV300 | DEV300m36 | |
native207_DEV300 |
OOo 3.0.1 installation tasks |
DEV300m36 |
obo37_DEV300 |
Fix for i95313 |
DEV300m36 |
onlineupdate7_DEV300 |
Allow OpenOffice.org 3.0.1 to recognize itself as 3.0.1 instead of 3.0.0 |
DEV300m36 |
oooimprovementcorefixes_DEV300 |
The OpenOffice.org Usage Feedback Extension is an extension that collects anonymously data |
DEV300m36 |
os122_DEV300 |
bugfixing OOo 3.0.1 |
DEV300m36 |
qascripts02 |
All automated tests currently load the UI filters which creates some overhead. |
DEV300m36 |
rt34 |
Misc. build related fixes. No influence on Office application. |
DEV300m36 |
sw301bf02_DEV300 |
fixes in Writer for OOo 3.0.1 |
DEV300m36 |
swffixes_DEV300 |
Make SWF plugin work again on various platforms |
DEV300m36 |
sysui27_DEV300 |
Fix a trivial sysui solaris issue |
DEV300m36 |
tbo301_DEV300 |
Important changes for update notification behaviour and recognition of patched version number. |
DEV300m36 |
wae4extensions02 |
make extensions warning-free on Windows, again |
DEV300m36 |
appleremote01 |
First part of Apple Remote implementation |
DEV300m35 |
basebmpunittestfix |
Fixes/Adds compiler flags that prevent the basebmp unit tests from failing on |
DEV300m35 |
bmpsum1 | DEV300m35 | |
cli002 |
Various patches to remove -Werror warnings with gcc 4.2.3 compilers. |
DEV300m35 |
cli003 |
Removes obsolete .cvsignore files. |
DEV300m35 |
dev300m35masterfix | DEV300m35 | |
hr55 |
CWS-Tools: fixes to 'cws rebase'. |
DEV300m35 |
i18n42 |
upgrade icu to 4.0. |
DEV300m35 |
impresszoom |
adding the zoom slide control to impress/draw status bar |
DEV300m35 |
native201_DEV300 |
OOo 3.0.1 installation tasks. |
DEV300m35 |
os120 |
Bugfixing OOo 3.1 |
DEV300m35 |
pflin10 |
Fix some issues about basic runtime function. |
DEV300m35 |
qadocinfo |
Exclude Document Properties TabPage "Custom Properties" from automated testing |
DEV300m35 |
sb97 |
missing .dll.manifest files for some external modules (wntmsci12 only) |
DEV300m35 |
sb99 |
configmgr |
DEV300m35 |
svnignoreoutpaths |
add the common output paths (unxlngi6/.pro, wntmsci12/.pro, |
DEV300m35 |
vcl95 |
more gsl stuff for 3.1 |
DEV300m35 |
ause098 |
build fixes |
DEV300m34 |
aw057 |
BugFixing after aw033 |
DEV300m34 |
cli001 |
Removes corrupt xcf.bz2 files. These files have been checked-in without |
DEV300m34 |
cmcfixes49 |
minor build fixes, primarily to remove gcc 3.4.1 warnings |
DEV300m34 |
dev300m34masterfix | DEV300m34 | |
greenstate30_DEV300 |
Autotestfixes to get green state for OOo3.0 |
DEV300m34 |
hr54 |
Implement "cws fetch" command. |
DEV300m34 |
jsktestimprovements1 |
Continue rework of the global file-I/O and filter functions within the testautomation module |
DEV300m34 |
mba30fixes02 |
Done automation, the test results are as expected - a lot of errors and warnlogs which are present on the MWS as well. |
DEV300m34 |
native197_DEV300 |
Patch Preparations |
DEV300m34 |
odbmacros3 |
ongoing implementations to allow macros in database documents |
DEV300m34 |
rt32 |
Hamburg RE tasks around finishing a milestone build |
DEV300m34 |
rt33 |
Fix for #139524# (build prerequisites fo HH environment) |
DEV300m34 |
svnl10nmerge | DEV300m34 | |
unowinregfix_DEV300 |
used to fix unowinreg.dll problem with an implicitly but not necessary depdendency to |
DEV300m34 |
ab63_DEV300 |
Fix shopstopper issue i92940 |
DEV300m33 |
addentitlement_DEV300 | DEV300m33 | |
chart30 |
Chart issues for OOo 3.1 |
DEV300m33 |
cloph11 |
remove antiquated macosx build-defines |
DEV300m33 |
dba31b | DEV300m33 | |
dev300m33masterfix | DEV300m33 | |
docmacroassignments_DEV300 |
fix the problem that in various places, browsing for a macro/script |
DEV300m33 |
dr63 |
Calc 3.1 fixes |
DEV300m33 |
fpicker8 |
Fixes for the gtk file picker for transient windows |
DEV300m33 |
hr53 |
Fixes to CWS tooling regarding the switch to SVN. |
DEV300m33 |
hro38_DEV300 |
Preset filename in Vista File Dialog |
DEV300m33 |
i18n45 |
i18n bug fixes. |
DEV300m33 |
i93386_DEV300 |
Improve the behaviour on systems with older libfontconfig (older means <2.4) |
DEV300m33 |
i93512_DEV300 |
Prevent a deadlock on the OSX Aqua port |
DEV300m33 |
i93555_DEV300 |
Fix issue 93555 to display some "Arabic" instead of "Unknown" for an 'ar' Arabic language pack. |
DEV300m33 |
impress149 |
OOo 3.1 Bugfix workspace |
DEV300m33 |
impress157_DEV300 |
fix in the pdfimport extension to enable it to load hybrid pdf in OOO300m4 and newer. This cws only changes the pdf extension and not the office. The fixed extension will also work in prior versions. |
DEV300m33 |
impress158_DEV300 |
OOo 3.0 bugfix workspace |
DEV300m33 |
impress159_DEV300 |
possible showstopper for impress |
DEV300m33 |
impress160_DEV300 |
showstopper fix for impress |
DEV300m33 |
indentfix_DEV300 |
cws for i93873 |
DEV300m33 |
jl112_DEV300 |
showstopper |
DEV300m33 |
jsc311 | DEV300m33 | |
koheicoderemoval |
removal of unused methods from sc module. |
DEV300m33 |
localization32_DEV300 |
L10N showstoppers |
DEV300m33 |
localization33_DEV300 |
Missing Spanish hc2 index files |
DEV300m33 |
localization34_DEV300 |
fix one greek string in officecfg |
DEV300m33 |
mav39_DEV300 |
3.0 show stopper fix for activated embedded objects in writer. |
DEV300m33 |
mav40_DEV300 |
Showstopper fix for autosave problem. |
DEV300m33 |
mingwport15 |
MinGW port catchup fix |
DEV300m33 |
native194 |
Preparing OOo 3.1 / SO 9.1 |
DEV300m33 |
native195_DEV300 |
userland rpm into subdir in Linux installation sets with Java GUI Installer. |
DEV300m33 |
native196_DEV300 |
OOo 3.0 installation tasks |
DEV300m33 |
native199_DEV300 |
Mac fix for English system language. |
DEV300m33 |
native200_DEV300 |
OOo 3.0 installation tasks, only mac changes |
DEV300m33 |
os117 |
Bugfixing OOo 3.1 |
DEV300m33 |
qadev33 |
bugfixes and enhancements in qadevOOo |
DEV300m33 |
qaerrorlogfixes1_DEV300 |
[Automation] |
DEV300m33 |
rt31_DEV300 |
Hamburg RE process related only: |
DEV300m33 |
sb93 |
misc fixes |
DEV300m33 |
sb96_DEV300 |
msvcr71.dll missing under Windows MSVC 2003 |
DEV300m33 |
sb98_DEV300 |
libxml2.dll from Windows system dir vs. OOo URE layer (Windows only) |
DEV300m33 |
sfxnotifyremoval |
Removal of SFX_NOTIFY preprocessor macro and all of its references. |
DEV300m33 |
sjfixes06_DEV300 | DEV300m33 | |
sjfixes09_DEV300 | DEV300m33 | |
sw30bf15_DEV300 |
fix for issue i93725 in Writer and for issue i90961 in desktop |
DEV300m33 |
swlists02 |
import text:numbered-paragraph |
DEV300m33 |
sysui31_DEV300 |
sysui cleanup |
DEV300m33 |
sysui32_DEV300 |
sysui OOo build fix for solaris |
DEV300m33 |
tkr15 | DEV300m33 | |
tl62_DEV300 |
Fix for a grammar checker related crash. |
DEV300m33 |
vcl92 |
3.1 issues |
DEV300m33 |
vcl94 |
GSL stuff for OOo3.1 |
DEV300m33 |
hr43 | DEV300m32 | |
ab58_DEV300 |
cws to fix showstopper i92555 |
DEV300m31 |
ab60_DEV300 |
cws to fix showstopper i92867 |
DEV300m31 |
ab62_DEV300 |
cws to fix showstopper i93163 |
DEV300m31 |
c17v004_DEV300 | DEV300m31 | |
chart31_DEV300 |
chart&calc 3.0 showstopper |
DEV300m31 |
cwsqueryenhance3 |
change cwsquery to always |
DEV300m31 |
dba30i_DEV300 |
Fix in report designer |
DEV300m31 |
dba30j_DEV300 |
3.0 show stoppers in DBA an elsewhere ... |
DEV300m31 |
dbadoccloselock |
fix a deadlock in Base which (currently) is triggered by the new |
DEV300m31 |
dev300m31masterfix | DEV300m31 | |
fwk96_DEV300 |
Framework fixes for OOo3.0 showstoppers. |
DEV300m31 |
fwk97_DEV300 |
framework ooo 3.0 bugfix cws |
DEV300m31 |
greenstate30ver2_DEV300 |
[Automation] - showstopperfixes for the Greenstate of 3.0 |
DEV300m31 |
greenstate30ver3_DEV300 | DEV300m31 | |
hb10 |
Fixes/Patches for 3.1 |
DEV300m31 |
hotmac_DEV300 |
rtl_memory_fini gets called to early, before the d'tors of C++ objects .. |
DEV300m31 |
impress153_DEV300 |
Show stopper bug fixes for OOo 3.0 |
DEV300m31 |
impress154_DEV300 |
Show stopper bug fixes for OOo 3.0 |
DEV300m31 |
impress155_DEV300 |
Bug fixes for OOo 3.0 |
DEV300m31 |
jl110_DEV300 |
3.0 issues |
DEV300m31 |
kendy21 |
Support for MSVC 2005 Standard and MSVC 2008 Express in oowintool. Improved handling of Cygwin's PATH (in a pathological, but working, case). |
DEV300m31 |
localisation31_DEV300 |
Fixed broken hungarian translation , fixed several hc2 issue in various languages |
DEV300m31 |
macrestart_DEV300 |
Force soffice process to automatically restart after a crash occured. |
DEV300m31 |
mav37_DEV300 |
Showstopper cws for OOo3.0 |
DEV300m31 |
mav38_DEV300 |
Showstopper fix for the database documents opening problem. |
DEV300m31 |
mh30f_DEV300 |
last minutes todos |
DEV300m31 |
native184_DEV300 |
OO0 3.0 installation tasks |
DEV300m31 |
native185_DEV300 |
Enable installation with Java GUI Installer and user privileges again. |
DEV300m31 |
native186_DEV300 |
OOo 3.0 installation tasks |
DEV300m31 |
native188_DEV300 |
OOo 3.0 update tasks. |
DEV300m31 |
native189_DEV300 |
OOo
3.0 installation tasks. This issue is about the parallel installation
of StarOffice and StarSuite. |
DEV300m31 |
native190_DEV300 |
Additional Windows Patch preparations |
DEV300m31 |
native191_DEV300 |
OOo 3.0 installation tasks |
DEV300m31 |
native193_DEV300 |
OOo 3.0 installation tasks. |
DEV300m31 |
obo33 |
Keep build for 64 bit Vista shell extension alive |
DEV300m31 |
obo34 |
Fix for i93167 |
DEV300m31 |
oobeanfix_DEV300 | DEV300m31 | |
sb91 |
Solaris SPARC 64 bit port |
DEV300m31 |
sb95_DEV300 |
fix CWS macrestart |
DEV300m31 |
sw30bf13_DEV300 |
late fixes in Writer for OOo 3.0 |
DEV300m31 |
swenhancedfields2 |
Enhanced fields for better interoperability |
DEV300m31 |
sysui30_DEV300 |
Linux / Solaris system integration issues |
DEV300m31 |
tl61 |
OOo 3.0 fixes. |
DEV300m31 |
vcl30stop5_DEV300 |
fix issue 92674 |
DEV300m31 |
vcl93 |
GSL related stuff important enough for OOo3.0 |
DEV300m31 |
aw033 |
CWS for GraphicPrimitives |
DEV300m30 |
gh15 |
testtool bugs and features 2008 |
DEV300m30 |
xsltfilter10 |
Exchanging the binary JARS of Xerces/Xalan couple (xalan.jar/xercesImpl.jar/xml-apis.jar/serializer.jar) |
DEV300m30 |
maccrashrep |
Enable crash reporting for MacOSX builds |
DEV300m30 |
hrovista2 |
Critical OOo 3.0 fixes for Windows Vista and Windows XP |
DEV300m30 |
rmfreetype |
Remove the private copy of libfreetype.so.6 |
DEV300m30 |
dba31a |
Ongong bug fixing for OOo 3.1 |
DEV300m30 |
mh30b |
various issue towards 3.0 |
DEV300m30 |
doccomments01 |
Extend import and export notes (ala postits/comments) to .doc format to support formatting newly available in 3.0 |
DEV300m30 |
register30 |
Update the way of registering OOo |
DEV300m30 |
userdatamigration |
Migrate userdata |
DEV300m30 |
autotestfixfha1 | DEV300m30 | |
i18n44 |
i18n bug fixes |
DEV300m30 |
helpsearch |
hotfix for Japanese help index search i91750 |
DEV300m30 |
ocautotestfixes01 |
Autotestfixes for the spreadsheet module |
DEV300m30 |
dictionaryupdate |
update of some dictionaries to latest versions |
DEV300m30 |
os119 |
Fix of issue i91896 |
DEV300m30 |
vcl30stop1 |
gsl showstopper |
DEV300m30 |
sw30bf10 |
late fixes in Writer for OOo 3.0 |
DEV300m30 |
native177 |
Removing ICE check errors in msi database. |
DEV300m30 |
extrasooo30 |
unification CWS for SO/OOo extras |
DEV300m30 |
dr65 |
Latest OOo 3.0 fixes |
DEV300m30 |
pdf25 | DEV300m30 | |
vcl30stop2 |
last minute fixes for 3.0 |
DEV300m30 |
cmcfixes48 |
Uncontroversial fixes and improvements, generally in the vicinity of xmlsignature code |
DEV300m30 |
mhu19 |
sal/rtl/source/alloc_global.c is not 64bit clean. |
DEV300m30 |
tbo02 |
Fix typos in include files of testautomation/framework |
DEV300m30 |
native178 |
OOo 3.0 installation tasks |
DEV300m30 |
sw30bf11 |
fixes for OOo 3.0 in Writer |
DEV300m30 |
ab56 |
Split library container config files script.xlc, dialog.xlc |
DEV300m30 |
mav35 |
OOo3.0 showstopper cws. |
DEV300m30 |
aquaupdateicon |
Implement update icon in native menubar on Mac |
DEV300m30 |
impress151 |
impress showstopper fixes for OOo 3.0 |
DEV300m30 |
native179 |
OOo 3.0 installation tasks |
DEV300m30 |
dev300m30masterfix | DEV300m30 | |
languageswitchfix |
Prevent superfluous language changes caused by the system keyboard |
DEV300m30 |
vcl30stop3 |
Some more 3.0 showstoppers |
DEV300m30 |
native180 |
Preparing OOo 3 for Windows patches using msp technique. |
DEV300m30 |
pflin11 |
basic fix |
DEV300m30 |
tl58 | DEV300m30 | |
hsqldb1810 |
Integrate hsqldb version 1.8.0.10 |
DEV300m30 |
dba30h_DEV300 |
fix issue 92668 |
DEV300m30 |
cwscheckapi3_DEV300 |
bugfix for cwscheckapi: since on Linux tgz are default for cws cwscheckapi could not install the office nymore |
DEV300m30 |
sw30bf12_DEV300 |
Galician spell checker added and Ichitaro filters removed |
DEV300m30 |
localisation30_DEV300 |
L10N showstopers |
DEV300m30 |
vcl30stop4_DEV300 |
GSL related showstoppers for OOo 3.0 |
DEV300m30 |
native182_DEV300 |
OOo 3.0 / SO 9 installation tasks |
DEV300m30 |
impress152_DEV300 |
showstopper fixes for impress in OOo 3.0 |
DEV300m30 |
dev300m29masterfix | DEV300m29 | |
ause091 |
build cleaner - cleaner build |
DEV300m29 |
chart22 |
Plotting of missing values |
DEV300m29 |
doccustomproperties2 |
New document properties page: custom properties page replaces user defined page |
DEV300m29 |
impress150 |
Impress showstopper fixes for OOo 3.0 release |
DEV300m29 |
layoutdialogs |
* Enable compiling of layout engine by default. |
DEV300m29 |
pb20 |
Truncated strings issues |
DEV300m29 |
pba11y02 |
Fixes for A11y issues. |
DEV300m29 |
sb92 |
HelpLinker crash on Solaris |
DEV300m29 |
vcl91 |
3.0 showstoppers in gsl |
DEV300m29 |