language: go go_import_path: github.com/ethereum/go-ethereum sudo: false matrix: include: - os: linux dist: trusty sudo: required go: 1.9.x script: - sudo modprobe fuse - sudo chmod 666 /dev/fuse - sudo chown root:$USER /etc/fuse.conf - go run build/ci.go install - go run build/ci.go test -coverage $TEST_PACKAGES # These are the latest Go versions. - os: linux dist: trusty sudo: required go: 1.10.x script: - sudo modprobe fuse - sudo chmod 666 /dev/fuse - sudo chown root:$USER /etc/fuse.conf - go run build/ci.go install - go run build/ci.go test -coverage $TEST_PACKAGES - os: osx go: 1.10.x script: - unset -f cd # workaround for https://github.com/travis-ci/travis-ci/issues/8703 - brew update - brew cask install osxfuse - go run build/ci.go install - go run build/ci.go test -coverage $TEST_PACKAGES # This builder only tests code linters on latest version of Go - os: linux dist: trusty go: 1.10.x env: - lint git: submodules: false # avoid cloning ethereum/tests script: - go run build/ci.go lint # This builder does the Ubuntu PPA upload - os: linux dist: trusty go: 1.10.x env: - ubuntu-ppa git: submodules: false # avoid cloning ethereum/tests addons: apt: packages: - devscripts - debhelper - dput - fakeroot script: - go run build/ci.go debsrc -signer "Go Ethereum Linux Builder " -upload ppa:ethereum/ethereum # This builder does the Linux Azure uploads - os: linux dist: trusty sudo: required go: 1.10.x env: - azure-linux git: submodules: false # avoid cloning ethereum/tests addons: apt: packages: - gcc-multilib script: # Build for the primary platforms that Trusty can manage - go run build/ci.go install - go run build/ci.go archive -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - go run build/ci.go install -arch 386 - go run build/ci.go archive -arch 386 -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds # Switch over GCC to cross compilation (breaks 386, hence why do it here only) - sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install gcc-arm-linux-gnueabi libc6-dev-armel-cross gcc-arm-linux-gnueabihf libc6-dev-armhf-cross gcc-aarch64-linux-gnu libc6-dev-arm64-cross - sudo ln -s /usr/include/asm-generic /usr/include/asm - GOARM=5 go run build/ci.go install -arch arm -cc arm-linux-gnueabi-gcc - GOARM=5 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - GOARM=6 go run build/ci.go install -arch arm -cc arm-linux-gnueabi-gcc - GOARM=6 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - GOARM=7 go run build/ci.go install -arch arm -cc arm-linux-gnueabihf-gcc - GOARM=7 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - go run build/ci.go install -arch arm64 -cc aarch64-linux-gnu-gcc - go run build/ci.go archive -arch arm64 -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds # This builder does the Linux Azure MIPS xgo uploads - os: linux dist: trusty services: - docker go: 1.10.x env: - azure-linux-mips git: submodules: false # avoid cloning ethereum/tests script: - go run build/ci.go xgo --alltools -- --targets=linux/mips --ldflags '-extldflags "-static"' -v - for bin in build/bin/*-linux-mips; do mv -f "${bin}" "${bin/-linux-mips/}"; done - go run build/ci.go archive -arch mips -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - go run build/ci.go xgo --alltools -- --targets=linux/mipsle --ldflags '-extldflags "-static"' -v - for bin in build/bin/*-linux-mipsle; do mv -f "${bin}" "${bin/-linux-mipsle/}"; done - go run build/ci.go archive -arch mipsle -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - go run build/ci.go xgo --alltools -- --targets=linux/mips64 --ldflags '-extldflags "-static"' -v - for bin in build/bin/*-linux-mips64; do mv -f "${bin}" "${bin/-linux-mips64/}"; done - go run build/ci.go archive -arch mips64 -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds - go run build/ci.go xgo --alltools -- --targets=linux/mips64le --ldflags '-extldflags "-static"' -v - for bin in build/bin/*-linux-mips64le; do mv -f "${bin}" "${bin/-linux-mips64le/}"; done - go run build/ci.go archive -arch mips64le -type tar -signer LINUX_SIGNING_KEY -upload gethstore/builds # This builder does the Android Maven and Azure uploads - os: linux dist: trusty addons: apt: packages: - oracle-java8-installer - oracle-java8-set-default language: android android: components: - platform-tools - tools - android-15 - android-19 - android-24 env: - azure-android - maven-android git: submodules: false # avoid cloning ethereum/tests before_install: - curl https://storage.googleapis.com/golang/go1.10.2.linux-amd64.tar.gz | tar -xz - export PATH=`pwd`/go/bin:$PATH - export GOROOT=`pwd`/go - export GOPATH=$HOME/go script: # Build the Android archive and upload it to Maven Central and Azure - curl https://dl.google.com/android/repository/android-ndk-r16b-linux-x86_64.zip -o android-ndk-r16b.zip - unzip -q android-ndk-r16b.zip && rm android-ndk-r16b.zip - mv android-ndk-r16b $HOME - export ANDROID_NDK=$HOME/android-ndk-r16b - mkdir -p $GOPATH/src/github.com/ethereum - ln -s `pwd` $GOPATH/src/github.com/ethereum - go run build/ci.go aar -signer ANDROID_SIGNING_KEY -deploy https://oss.sonatype.org -upload gethstore/builds # This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads - os: osx go: 1.10.x env: - azure-osx - azure-ios - cocoapods-ios git: submodules: false # avoid cloning ethereum/tests script: - go run build/ci.go install - go run build/ci.go archive -type tar -signer OSX_SIGNING_KEY -upload gethstore/builds # Build the iOS framework and upload it to CocoaPods and Azure - gem uninstall cocoapods -a -x - gem install cocoapods - mv ~/.cocoapods/repos/master ~/.cocoapods/repos/master.bak - sed -i '.bak' 's/repo.join/!repo.join/g' $(dirname `gem which cocoapods`)/cocoapods/sources_manager.rb - if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then git clone --depth=1 https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master && pod setup --verbose; fi - xctool -version - xcrun simctl list # Workaround for https://github.com/golang/go/issues/23749 - export CGO_CFLAGS_ALLOW='-fmodules|-fblocks|-fobjc-arc' - go run build/ci.go xcode -signer IOS_SIGNING_KEY -deploy trunk -upload gethstore/builds # This builder does the Azure archive purges to avoid accumulating junk - os: linux dist: trusty go: 1.10.x env: - azure-purge git: submodules: false # avoid cloning ethereum/tests script: - go run build/ci.go purge -store gethstore/builds -days 14 notifications: webhooks: urls: - https://webhooks.gitter.im/e/e09ccdce1048c5e03445 on_success: change on_failure: always /td>-469/+559 * correct the error that was made in the earlier commit that was missing a ':'Harish Krishnaswamy2005-02-051-1/+1 * add messages for calendar/tasks not marked for offline usage.Harish Krishnaswamy2005-02-055-21/+63 * Updated Lithuanian translation.Žygimantas Beručka2005-02-052-209/+253 * fix the dnd woes on calendar attachments. gui/dialogs/cal-attachment-bar.cHarish Krishnaswamy2005-02-051-1/+1 * fix the dnd woes on calendar attachments. gui/dialogs/cal-attachment-bar.cHarish Krishnaswamy2005-02-052-1/+394 * Add a11y name for attachment button and bars.Harry Lu2005-02-053-0/+11 * Updated Simplified Chinese translationFunda Wang2005-02-051-155/+167 * Set the border widths for the dialog internal container widgets to be HIGRodney Dawes2005-02-053-1/+13 * Set the border widths for the dialog containers to be HIG compliant FixRodney Dawes2005-02-052-2/+12 * Add a string to CompEditorPrivate to store the name of the help section weRodney Dawes2005-02-045-0/+62 * Updated Greek Translation.Kostas Papadimas2005-02-042-316/+216 * clear the component preview when we update the view.Rodrigo Moya2005-02-045-6/+13 * Fixes #71265Rodrigo Moya2005-02-043-2/+19 * display a warning dialog if the server version is not proper added warningvivek jain2005-02-044-24/+50 * calendar-errors.xml.h changed the warning message string forVivek Jain2005-02-043-2/+8 * Fix for 72088.Harry Lu2005-02-042-1/+20 * Some code clean work.Harry Lu2005-02-0410-21/+62 * Some code clean work.Harry Lu2005-02-043-16/+6 * Fix for #56901Yong Sun2005-02-042-2/+9 * reverted jeff's patch for the subscribed hint.Not Zed2005-02-043-2/+18 * if we aren't waiting for cancel, then don't worry about waiting on theNot Zed2005-02-042-10/+20 * Added depcomp to cvsignoreRodney Dawes2005-02-041-0/+1 * Use g_hash_table_foreach_remove() instead so the keys don't point toJeffrey Stedfast2005-02-042-3/+12 * Remove duplicate entries for addressbook-groupwise,Priit Laes2005-02-042-3/+4 * Remove duplicate entry for addressbook-groupwise in plugins list.Priit Laes2005-02-042-1/+6 * Set the spacing for ourself to 12 to be HIG compliant as we are a GtkHBoxRodney Dawes2005-02-042-23/+36 * Update to include new strings from the calendar-errors.xml fileRodney Dawes2005-02-042-0/+11 * Use $(weatherdir) instead of duplicating the define for it belowRodney Dawes2005-02-042-2/+8 * removing the file since the name is incorrectChenthill Palanisamy2005-02-031-3/+0 * Added functions to destroy the dialog when the composer is destroyed toChenthill Palanisamy2005-02-032-19/+57 * add a11y name to url link button.Li Yuan2005-02-032-0/+7 * add a11y name to url. add a11y name to date completed. add a11y names toLi Yuan2005-02-034-6/+19 * added a warning message for invalid server version added a case to checkVivek Jain2005-02-033-0/+24 * Implement based on the create_groups () function in addressbook-migrate.c.Hans Petter Jansson2005-02-033-0/+106 * Fix a small spacing issue in the Display section's children, to be HIGRodney Dawes2005-02-032-1/+6 * Use the gtk_widget_ensure_style method instead of gtk_widget_realize whenRodney Dawes2005-02-032-1/+9 * Set the border width for the internal dialog containers to be HIGRodney Dawes2005-02-035-735/+758 * Fixes bug #70454Jeffrey Stedfast2005-02-032-4/+11 * scriptyFunda Wang2005-02-031-19/+18 * Updated Lithuanian translation.Žygimantas Beručka2005-02-022-405/+372 * Fixes #72090Rodrigo Moya2005-02-022-31/+40 * Updated Simplified Chinese translationFunda Wang2005-02-021-98/+36 * reviewed by Harish Krishnaswamy <kharish@novell.com>Chenthill Palanisamy2005-02-022-1/+12 * scriptyFunda Wang2005-02-021-278/+333 * Fix for 71924, 71926, 71932 Don't split sentences that need translation.Harry Lu2005-02-025-75/+72 * add to about boxJP Rosevear2005-02-022-0/+5 * Use the term vFolder instead of "VFolder" or "virtual folder"Rodney Dawes2005-02-023-11/+19 * Replace "_Virtual Folder" with "_vFolder" for the search menu to create aRodney Dawes2005-02-029-18/+47 * UpdateJP Rosevear2005-02-022-6/+13 * Clean up the spacing and padding, and shove the notebook and expanderRodney Dawes2005-02-022-4/+24 * fix typoJP Rosevear2005-02-023-6/+12 * add correct mask for detached recurrences.Rodrigo Moya2005-02-013-0/+10 * Translation updated by Ivar Smolin.Priit Laes2005-02-012-3/+7 * only add real data to the array.Rodrigo Moya2005-02-012-2/+8 * Updated Russian translationLeonid Kanter2005-02-012-6933/+5299 * ** See bug #65329.Not Zed2005-02-012-1/+11 * Updated Greek Translation.Kostas Papadimas2005-02-012-1757/+2123 * use the type hint to sort for inbox, not the name.Not Zed2005-02-014-34/+62 * Fixes #71944JP Rosevear2005-02-012-0/+8 * Remove duplicate entry for calendar-file in plugins list.Priit Laes2005-02-012-1/+6 * Michael's patch.. for supporting tables in e-config, handling hide bits andSushma Rai2005-02-013-314/+217 * ** See bug #71312.Not Zed2005-02-013-16/+58 * And the changelog entry.Hans Petter2005-02-011-0/+5 * Remove the -module flag, this isn't supposed to be a module.Hans Petter Jansson2005-02-011-1/+1 * Updated Spanish trasnlation.Francisco Javier F. Serrador2005-02-012-70/+74 * Remove definition of CalObjUID and include that fromHans Petter Jansson2005-02-012-3/+7 * Use guint instead of ulong for signal ID.Hans Petter Jansson2005-02-012-3/+8 * Use guint instead of ulong for signal ID.Hans Petter Jansson2005-02-012-1/+6 * Remove unused global symbol.Hans Petter Jansson2005-02-012-2/+4 * Reset the normalised string sort table.Jeffrey Stedfast2005-02-012-1/+9 * Updated Lithuanian translation.Žygimantas Beručka2005-02-012-12/+16 * initialize GError* to NULL Fixes #71512Sivaiah Nallagatla2005-02-013-2/+10 * Updated Simplified Chinese translationFunda Wang2005-02-011-69/+67 * Fixes #71937JP Rosevear2005-02-014-4/+12 * Updated italian translationMarco Ciampa2005-01-311-106/+60 * Fixes #71929Rodrigo Moya2005-01-313-4/+12 * Updated Lithuanian translation.Žygimantas Beručka2005-01-312-65/+70 * Fixes #61078Priit Laes2005-01-312-4/+10 * Updated italian translationMarco Ciampa2005-01-312-4474/+5162 * Fixes #64682 Added an X property to identify if the appointment is movedChenthill Palanisamy2005-01-312-2/+15 * Translation updated by Ivar Smolin.Priit Laes2005-01-312-10/+15 * Patch by Michael, to supporting tables in e-config, handling hide bits andSushma Rai2005-01-313-14/+53 * ** See bug #67083Not Zed2005-01-312-2/+6 * ** See bug #69850Not Zed2005-01-312-4/+11 * ** See bug #71521.Not Zed2005-01-312-1/+10 * Updated Slovak translation.Marcel Telka2005-01-312-18402/+5385 * Updated Lithuanian translation.Žygimantas Beručka2005-01-302-8/+39 * Updated sk translation.Lukas Lipka2005-01-301-1/+1 * Correct the typo in plugins_base made inHarish Krishnaswamy2005-01-302-1/+6 * String changes in Latino and Spanish strings.Francisco Javier F. Serrador2005-01-302-4400/+4522 * add addressbook-groupwise plguin to the plguin listSivaiah Nallagatla2005-01-292-2/+9 * initial commit of addressbook-groupwise plguinSivaiah Nallagatla2005-01-294-0/+115 * Updated translations.Lukas Lipka2005-01-291-4/+5 * Removed file which does not exist from POTFILES.inFunda Wang2005-01-291-1/+0 * Updated Simplified Chinese translationFunda Wang2005-01-291-329/+344 * fix a typo present in the string tooSivaiah Nallagatla2005-01-292-1/+7 * Fixes #71930JP Rosevear2005-01-292-0/+8 * Updated Swedish translation.Christian Rose2005-01-292-6521/+6747 * Updated Lithuanian translation.Žygimantas Beručka2005-01-292-464/+511 * Fixes #71452JP Rosevear2005-01-292-2/+30 * call the eab_merging_* functions instead of e_book_sync* directly. TheParthasarathi Susarla2005-01-292-2/+14 * new function to sensitize im types based on supported fieldsSivaiah Nallagatla2005-01-292-5/+51 * fixedJeffrey Stedfast2005-01-291-4/+5 * Changed a string to make it complete and clear for transaltion FixesSivaiah Nallagatla2005-01-292-2/+9 * use correct key name.Rodrigo Moya2005-01-293-2/+7 * Fixes #33078Rodrigo Moya2005-01-293-133/+102 * Remove leading "%s" from the transalatable string Fixes #36137Sivaiah Nallagatla2005-01-291-0/+6 * Remove e-shell-utils.c includeJP Rosevear2005-01-282-1/+4 * use ngetext instead of splitting the the sentence to take care ofSivaiah Nallagatla2005-01-282-14/+16 * Remove leading "%s" from the transalatable string Fixes #36137Sivaiah Nallagatla2005-01-281-2/+6 * Remove leading "%s" in the message. Similar to #36137Sivaiah Nallagatla2005-01-282-3/+11 * ** See bug #71520.Not Zed2005-01-282-18/+15 * See bug #69815.Not Zed2005-01-283-4/+27 * make tomorrow and this week strings work properlyJP Rosevear2005-01-282-3/+50 * remove debug testJP Rosevear2005-01-282-1/+5 * Fix the labels in the account druid to be left aligned, and justified leftRodney Dawes2005-01-282-42/+56 * Updated Spanish translation.Francisco Javier F. Serrador2005-01-282-139/+172 * Fix the dialog to have borders that are HIG-compliant and fix up theRodney Dawes2005-01-282-12/+24 * Translation updated by Ivar Smolin.Priit Laes2005-01-282-3/+14 * Updated Simplified Chinese translationFunda Wang2005-01-282-267/+306 * add some debugging spewJP Rosevear2005-01-281-5/+5 * add some debugging spewJP Rosevear2005-01-282-2/+13 * add a d(x) debugging define and default to offJP Rosevear2005-01-282-6/+12 * Update UpdateKjartan Maraas2005-01-283-9354/+10093 * deal with the itip message having an individual instance.Rodrigo Moya2005-01-272-3/+9 * case insesitive version of strstr. Used from camelSivaiah Nallagatla2005-01-272-4/+43 * Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>Alexander Shopov2005-01-272-327/+284 * add access key to 'Member' Button.Hao Sheng2005-01-272-1/+6 * Updated German translation.Frank Arnold2005-01-272-208/+251 * Fixes #71774 we should check whether the 'new_name' is a NULL pointer toMengjie Yu2005-01-272-4/+11 * add a11y description for the entry.Mengjie Yu2005-01-272-1/+8 * add gal-a11y-e-cell-vbox.h and gal-a11y-e-cell-vbox.cLi Yuan2005-01-2715-452/+991 * add an a11y name for the popup list. make shortcut key ALT+Arrow work.Li Yuan2005-01-2713-63/+210 * Fixes #71485JP Rosevear2005-01-273-2/+15 * Fixes #71485JP Rosevear2005-01-273-37/+48 * fix typoDavid Trowbridge2005-01-272-1/+5 * Updated Spanish translation.Francisco Javier F. Serrador2005-01-272-686/+886 * Fix up spacing to be HIG compliant for the borders around the dialogsRodney Dawes2005-01-272-1/+8 * If the plugin isn't enabled, return TRUE so that the suer doesn't getJeffrey Stedfast2005-01-273-2/+11 * Add mail/default/pt/Makefile to AC_OUTPUTRodney Dawes2005-01-262-0/+5 * Fixes #38195JP Rosevear2005-01-261-7/+1 * objects returned from e_cal_get_objects_for_uid are ECalComponent's, soRodrigo Moya2005-01-262-1/+7 * use full name for the weekday checkbox.Li Yuan2005-01-262-1/+30 * Updated Lithuanian translation.Žygimantas Beručka2005-01-262-504/+692 * make sure we free the user listJP Rosevear2005-01-262-0/+10 * actually destroy the client hashes so the signals get cleaned upJP Rosevear2005-01-262-2/+23 * Added Portuguese translation Added Portuguese (pt) to the list of subdirsDuarte Loreto2005-01-264-1/+351 * svn path=/trunk/; revision=28556Updated ja.po. T.Aihana2005-01-252-852/+1096 * Skipped files should be listed in POTFILES.skip rather than removing them fro...Funda Wang2005-01-251-0/+2 * Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>Alexander Shopov2005-01-252-4192/+1442 * Updated Simplified Chinese translationFunda Wang2005-01-251-273/+169 * set all new categories to not searchable.Rodrigo Moya2005-01-252-7/+12 * add a11y name to task table.Li Yuan2005-01-252-0/+10 * add a11y names for color pickers.Mengjie Yu2005-01-252-1/+9 * Updated Simplified Chinese translationFunda Wang2005-01-251-63/+662 * Updated German translation.Hendrik Richter2005-01-252-595/+792 * bump version and requiresJP Rosevear2005-01-253-4/+113 * Fix filesJP Rosevear2005-01-251-2/+0 * scriptyFunda Wang2005-01-251-90/+82 * Fixed empty string being marked for translation.Sushma Rai2005-01-252-1/+20 * Pull in the contact editors, so we can pass pointers to their creationHans Petter Jansson2005-01-252-0/+8 * Set pointers to the contact editor creation functions in the entries, soHans Petter Jansson2005-01-252-0/+13 * turn off debug output, people think its a significant error.Not Zed2005-01-252-2/+6 * use the new ECategoriesDialog widget.Rodrigo Moya2005-01-252-16/+9 * Add C-A-m as a keybinding for the "Post New Message" menuitem Add C-S-m toRodney Dawes2005-01-254-80/+12 * add back body containsJP Rosevear2005-01-251-0/+11 * Fixes #46287JP Rosevear2005-01-254-139/+63 * Updated Spanish translation.Francisco Javier F. Serrador2005-01-252-1062/+1176 * Updated German translation.Hendrik Richter2005-01-252-152/+163 * Fixes #70622JP Rosevear2005-01-252-2/+9 * scriptyFunda Wang2005-01-251-120/+135 * Changed the item_type to section instead of item. Made the necessaryChenthill Palanisamy2005-01-243-39/+59 * *properties.glade : changed the layout of the widgets *share-folder.[ch]:Vivek Jain2005-01-246-584/+599 * to display error messagesVivek Jain2005-01-242-0/+30 * removed EM_POPUP_SELECT_MARK_[NO]JUNK masksRadek Doulik2005-01-244-38/+29 * Disabling auth sections in druid, and having it only in editor.Sushma Rai2005-01-243-2/+80 * if there are detached instances, disable recurrence date widgets.Rodrigo Moya2005-01-242-0/+18 * Updated italian translationMarco Ciampa2005-01-242-1243/+970 * add a11y name for the option menu.Mengjie Yu2005-01-242-0/+11 * Updated Simplified Chinese translationFunda Wang2005-01-241-33/+45 * changed for 69122.Not Zed2005-01-242-48/+19 * Updated German translation.Frank Arnold2005-01-242-933/+1010 * Translation updated by Jo Vermeulen.Vincent van Adrighem2005-01-232-1/+5 * *** empty log message ***Sivaiah Nallagatla2005-01-231-0/+8 * Added owa url entry to the config section in both druid and editor, andSushma Rai2005-01-233-75/+129 * Don't set offline_sync value taken from camel url instead set "1" or "0"Sivaiah Nallagatla2005-01-231-3/+3 * Check the buddy account name, not alias. Duh. (free_contact_list):Nat Friedman2005-01-232-17/+10 * Adding camel_url_free() at proper positionSushma Rai2005-01-221-1/+1 * missed plugin definition in org-gnome-exchange-account-setup.eplug.inSushma Rai2005-01-221-0/+7 * Setting owa url value in account editor and handlig ssl connection.Sushma Rai2005-01-223-16/+86 * Updated Simplified Chinese translationFunda Wang2005-01-221-495/+55 * make intltool happy. Added missing filesFunda Wang2005-01-221-0/+16 * Updated Simplified Chinese translationFunda Wang2005-01-221-538/+625 * forgot in last commitSivaiah Nallagatla2005-01-221-2/+2 * renamed the signal CONTACT_REMOVED to CONTACTS_REMOVED and chaned theSivaiah Nallagatla2005-01-226-33/+87 * Don't pass in the "fill_color" property for creating the canvas item forRodney Dawes2005-01-222-2/+0 * Change the xpad and ypad to 0 here, we don't need the extra padding AddRodney Dawes2005-01-223-53/+50 * Call gtk_widget_ensure_style to ensure that we set the border widths ofRodney Dawes2005-01-222-0/+7 * Fix some spacing and remove the separator for HIG compliance Set properRodney Dawes2005-01-223-5/+30 * Fixes #46404JP Rosevear2005-01-224-13/+32 * Fix dateJP Rosevear2005-01-221-1/+1 * Fixes #46404JP Rosevear2005-01-222-8/+17 * changed the item type from "item" to "item_table". avoids some debug spewSivaiah Nallagatla2005-01-221-0/+6 * close long tagJP Rosevear2005-01-222-1/+5 * e-util needs libgnomeprintui nowJP Rosevear2005-01-222-2/+6 * Fixes #46404JP Rosevear2005-01-225-112/+96 * add print_config schema itemJP Rosevear2005-01-222-0/+17 * Fixes #46404JP Rosevear2005-01-224-0/+146 * mark priv->finished as true first so we don't access freed memory if weJP Rosevear2005-01-222-4/+14 * added addressbook-file pluginSivaiah Nallagatla2005-01-212-3/+8 * initial check for address book file pluginSivaiah Nallagatla2005-01-214-0/+94 * reverting my last change, we will acheive the same thing withSivaiah Nallagatla2005-01-211-1/+0 * Updated Lithuanian translation.Žygimantas Beručka2005-01-212-2670/+652 * Update UpdateKjartan Maraas2005-01-21