| 1 |
%define homepage http://start.fedoraproject.org/
|
| 2 |
%define default_bookmarks_file %{_datadir}/bookmarks/default-bookmarks.html
|
| 3 |
%define firefox_app_id \{ec8030f7-c20a-464f-9b0e-13a3a9e97384\}
|
| 4 |
|
| 5 |
%define mozappdir %{_libdir}/%{name}-%{internal_version}
|
| 6 |
%define tarballdir mozilla-1.9.1
|
| 7 |
|
| 8 |
%define xulrunner_version 1.9.1.5-1
|
| 9 |
%define internal_version %{version}
|
| 10 |
|
| 11 |
%define official_branding 1
|
| 12 |
%define build_langpacks 1
|
| 13 |
|
| 14 |
%if ! %{official_branding}
|
| 15 |
%define cvsdate 20080327
|
| 16 |
%define nightly .cvs%{cvsdate}
|
| 17 |
%endif
|
| 18 |
|
| 19 |
Summary: Mozilla Firefox Web browser
|
| 20 |
Name: firefox
|
| 21 |
Version: 3.5.5
|
| 22 |
Release: 1%{?dist}
|
| 23 |
URL: http://www.mozilla.org/projects/firefox/
|
| 24 |
License: MPLv1.1 or GPLv2+ or LGPLv2+
|
| 25 |
Group: Applications/Internet
|
| 26 |
%if %{official_branding}
|
| 27 |
%define tarball firefox-%{internal_version}-source.tar.bz2
|
| 28 |
%else
|
| 29 |
%define tarball firefox-3.1b4-source.tar.bz2
|
| 30 |
%endif
|
| 31 |
Source0: %{tarball}
|
| 32 |
%if %{build_langpacks}
|
| 33 |
Source2: firefox-langpacks-%{version}-20091105.tar.bz2
|
| 34 |
%endif
|
| 35 |
Source10: firefox-mozconfig
|
| 36 |
Source11: firefox-mozconfig-branded
|
| 37 |
Source12: firefox-redhat-default-prefs.js
|
| 38 |
Source20: firefox.desktop
|
| 39 |
Source21: firefox.sh.in
|
| 40 |
Source23: firefox.1
|
| 41 |
Source100: find-external-requires
|
| 42 |
|
| 43 |
|
| 44 |
|
| 45 |
# Upstream patches
|
| 46 |
|
| 47 |
%if %{official_branding}
|
| 48 |
# Required by Mozilla Corporation
|
| 49 |
|
| 50 |
|
| 51 |
%else
|
| 52 |
# Not yet approved by Mozillla Corporation
|
| 53 |
|
| 54 |
|
| 55 |
%endif
|
| 56 |
|
| 57 |
# ---------------------------------------------------
|
| 58 |
|
| 59 |
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
| 60 |
BuildRequires: desktop-file-utils
|
| 61 |
BuildRequires: system-bookmarks
|
| 62 |
BuildRequires: xulrunner-devel-unstable >= %{xulrunner_version}
|
| 63 |
|
| 64 |
Requires: xulrunner >= %{xulrunner_version}
|
| 65 |
Requires: system-bookmarks
|
| 66 |
Obsoletes: mozilla <= 37:1.7.13
|
| 67 |
Provides: webclient
|
| 68 |
|
| 69 |
|
| 70 |
%define _use_internal_dependency_generator 0
|
| 71 |
%define __find_requires %{SOURCE100}
|
| 72 |
|
| 73 |
%description
|
| 74 |
Mozilla Firefox is an open-source web browser, designed for standards
|
| 75 |
compliance, performance and portability.
|
| 76 |
|
| 77 |
#---------------------------------------------------------------------
|
| 78 |
|
| 79 |
%prep
|
| 80 |
%setup -q -c
|
| 81 |
cd %{tarballdir}
|
| 82 |
|
| 83 |
# For branding specific patches.
|
| 84 |
|
| 85 |
%if %{official_branding}
|
| 86 |
# Required by Mozilla Corporation
|
| 87 |
|
| 88 |
%else
|
| 89 |
# Not yet approved by Mozilla Corporation
|
| 90 |
%endif
|
| 91 |
|
| 92 |
|
| 93 |
%{__rm} -f .mozconfig
|
| 94 |
%{__cp} %{SOURCE10} .mozconfig
|
| 95 |
%if %{official_branding}
|
| 96 |
%{__cat} %{SOURCE11} >> .mozconfig
|
| 97 |
%endif
|
| 98 |
|
| 99 |
# Set up SDK path
|
| 100 |
echo "ac_add_options --with-libxul-sdk=\
|
| 101 |
`pkg-config --variable=sdkdir libxul`" >> .mozconfig
|
| 102 |
|
| 103 |
#---------------------------------------------------------------------
|
| 104 |
|
| 105 |
%build
|
| 106 |
cd %{tarballdir}
|
| 107 |
|
| 108 |
# Mozilla builds with -Wall with exception of a few warnings which show up
|
| 109 |
# everywhere in the code; so, don't override that.
|
| 110 |
MOZ_OPT_FLAGS=$(echo $RPM_OPT_FLAGS | %{__sed} -e 's/-Wall//')
|
| 111 |
export CFLAGS=$MOZ_OPT_FLAGS
|
| 112 |
export CXXFLAGS=$MOZ_OPT_FLAGS
|
| 113 |
|
| 114 |
export PREFIX='%{_prefix}'
|
| 115 |
export LIBDIR='%{_libdir}'
|
| 116 |
|
| 117 |
MOZ_SMP_FLAGS=-j1
|
| 118 |
%ifnarch ppc ppc64 s390 s390x
|
| 119 |
[ -z "$RPM_BUILD_NCPUS" ] && \
|
| 120 |
RPM_BUILD_NCPUS="`/usr/bin/getconf _NPROCESSORS_ONLN`"
|
| 121 |
[ "$RPM_BUILD_NCPUS" -gt 1 ] && MOZ_SMP_FLAGS=-j2
|
| 122 |
%endif
|
| 123 |
|
| 124 |
INTERNAL_GECKO=%{internal_version}
|
| 125 |
MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO}
|
| 126 |
|
| 127 |
export LDFLAGS="-Wl,-rpath,${MOZ_APP_DIR}"
|
| 128 |
make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS"
|
| 129 |
|
| 130 |
#---------------------------------------------------------------------
|
| 131 |
|
| 132 |
%install
|
| 133 |
%{__rm} -rf $RPM_BUILD_ROOT
|
| 134 |
cd %{tarballdir}
|
| 135 |
|
| 136 |
DESTDIR=$RPM_BUILD_ROOT make install
|
| 137 |
|
| 138 |
%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
|
| 139 |
|
| 140 |
desktop-file-install --vendor mozilla \
|
| 141 |
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
| 142 |
--add-category WebBrowser \
|
| 143 |
--add-category Network \
|
| 144 |
%{SOURCE20}
|
| 145 |
|
| 146 |
# set up the firefox start script
|
| 147 |
%{__rm} -rf $RPM_BUILD_ROOT%{_bindir}/firefox
|
| 148 |
%{__cat} %{SOURCE21} | %{__sed} -e 's,FIREFOX_VERSION,%{internal_version},g' > \
|
| 149 |
$RPM_BUILD_ROOT%{_bindir}/firefox
|
| 150 |
%{__chmod} 755 $RPM_BUILD_ROOT%{_bindir}/firefox
|
| 151 |
|
| 152 |
# set up our default preferences
|
| 153 |
%{__cat} %{SOURCE12} | %{__sed} -e 's,FIREFOX_RPM_VR,%{version}-%{release},g' > rh-default-prefs
|
| 154 |
|
| 155 |
# resolves bug #461880
|
| 156 |
%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/browserconfig.properties << EOF
|
| 157 |
browser.startup.homepage=%{homepage}
|
| 158 |
EOF
|
| 159 |
|
| 160 |
# Export correct locale
|
| 161 |
%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/firefox-l10n.js << EOF
|
| 162 |
pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
| 163 |
EOF
|
| 164 |
%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/firefox-l10n.js
|
| 165 |
|
| 166 |
# place the preferences
|
| 167 |
%{__cp} rh-default-prefs $RPM_BUILD_ROOT/%{mozappdir}/defaults/preferences/all-redhat.js
|
| 168 |
%{__rm} rh-default-prefs
|
| 169 |
|
| 170 |
# set up our default bookmarks
|
| 171 |
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html
|
| 172 |
ln -s %{default_bookmarks_file} $RPM_BUILD_ROOT/%{mozappdir}/defaults/profile/bookmarks.html
|
| 173 |
|
| 174 |
%{__install} -p -D -m 644 %{SOURCE23} $RPM_BUILD_ROOT%{_mandir}/man1/firefox.1
|
| 175 |
|
| 176 |
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/firefox-config
|
| 177 |
|
| 178 |
#cd $RPM_BUILD_ROOT/%{mozappdir}/chrome
|
| 179 |
#find . -name "*" -type d -maxdepth 1 -exec %{__rm} -rf {} \;
|
| 180 |
#cd -
|
| 181 |
|
| 182 |
#%{__cat} > $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js << EOF
|
| 183 |
#pref("general.useragent.locale", "chrome://global/locale/intl.properties");
|
| 184 |
#EOF
|
| 185 |
#%{__chmod} 644 $RPM_BUILD_ROOT/%{mozappdir}/defaults/pref/firefox-l10n.js
|
| 186 |
|
| 187 |
%{__cp} other-licenses/branding/%{name}/default16.png \
|
| 188 |
$RPM_BUILD_ROOT/%{mozappdir}/icons/
|
| 189 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps
|
| 190 |
%{__cp} other-licenses/branding/%{name}/default16.png \
|
| 191 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/16x16/apps/firefox.png
|
| 192 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps
|
| 193 |
%{__cp} other-licenses/branding/%{name}/default22.png \
|
| 194 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/22x22/apps/firefox.png
|
| 195 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps
|
| 196 |
%{__cp} other-licenses/branding/%{name}/default24.png \
|
| 197 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/24x24/apps/firefox.png
|
| 198 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps
|
| 199 |
%{__cp} other-licenses/branding/%{name}/default32.png \
|
| 200 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/32x32/apps/firefox.png
|
| 201 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps
|
| 202 |
%{__cp} other-licenses/branding/%{name}/default48.png \
|
| 203 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/48x48/apps/firefox.png
|
| 204 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps
|
| 205 |
%{__cp} other-licenses/branding/%{name}/default256.png \
|
| 206 |
$RPM_BUILD_ROOT%{_datadir}/icons/hicolor/256x256/apps/firefox.png
|
| 207 |
|
| 208 |
echo > ../%{name}.lang
|
| 209 |
%if %{build_langpacks}
|
| 210 |
# Install langpacks
|
| 211 |
%{__mkdir_p} $RPM_BUILD_ROOT/%{mozappdir}/extensions
|
| 212 |
%{__tar} xjf %{SOURCE2}
|
| 213 |
for langpack in `ls firefox-langpacks/*.xpi`; do
|
| 214 |
language=`basename $langpack .xpi`
|
| 215 |
extensiondir=$RPM_BUILD_ROOT/%{mozappdir}/extensions/langpack-$language@firefox.mozilla.org
|
| 216 |
%{__mkdir_p} $extensiondir
|
| 217 |
unzip $langpack -d $extensiondir
|
| 218 |
find $extensiondir -type f | xargs chmod 644
|
| 219 |
|
| 220 |
tmpdir=`mktemp -d %{name}.XXXXXXXX`
|
| 221 |
langtmp=$tmpdir/%{name}/langpack-$language
|
| 222 |
%{__mkdir_p} $langtmp
|
| 223 |
jarfile=$extensiondir/chrome/$language.jar
|
| 224 |
unzip $jarfile -d $langtmp
|
| 225 |
|
| 226 |
sed -i -e "s|browser.startup.homepage.*$|browser.startup.homepage=%{homepage}|g;" \
|
| 227 |
$langtmp/locale/browser-region/region.properties
|
| 228 |
|
| 229 |
find $langtmp -type f | xargs chmod 644
|
| 230 |
%{__rm} -rf $jarfile
|
| 231 |
cd $langtmp
|
| 232 |
zip -r -D $jarfile locale
|
| 233 |
cd -
|
| 234 |
%{__rm} -rf $tmpdir
|
| 235 |
|
| 236 |
language=`echo $language | sed -e 's/-/_/g'`
|
| 237 |
extensiondir=`echo $extensiondir | sed -e "s,^$RPM_BUILD_ROOT,,"`
|
| 238 |
echo "%%lang($language) $extensiondir" >> ../%{name}.lang
|
| 239 |
done
|
| 240 |
%{__rm} -rf firefox-langpacks
|
| 241 |
%endif # build_langpacks
|
| 242 |
|
| 243 |
# System extensions
|
| 244 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_datadir}/mozilla/extensions/%{firefox_app_id}
|
| 245 |
%{__mkdir_p} $RPM_BUILD_ROOT%{_libdir}/mozilla/extensions/%{firefox_app_id}
|
| 246 |
|
| 247 |
# Copy over the LICENSE
|
| 248 |
%{__install} -p -c -m 644 LICENSE $RPM_BUILD_ROOT/%{mozappdir}
|
| 249 |
|
| 250 |
# ghost files
|
| 251 |
touch $RPM_BUILD_ROOT/%{mozappdir}/components/compreg.dat
|
| 252 |
touch $RPM_BUILD_ROOT/%{mozappdir}/components/xpti.dat
|
| 253 |
|
| 254 |
# jemalloc shows up sometimes, but it's not needed here, it's in XR
|
| 255 |
%{__rm} -f $RPM_BUILD_ROOT/%{mozappdir}/libjemalloc.so
|
| 256 |
|
| 257 |
#---------------------------------------------------------------------
|
| 258 |
|
| 259 |
%clean
|
| 260 |
%{__rm} -rf $RPM_BUILD_ROOT
|
| 261 |
|
| 262 |
#---------------------------------------------------------------------
|
| 263 |
|
| 264 |
%post
|
| 265 |
update-desktop-database &> /dev/null || :
|
| 266 |
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
| 267 |
if [ -x %{_bindir}/gtk-update-icon-cache ]; then
|
| 268 |
%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || :
|
| 269 |
fi
|
| 270 |
|
| 271 |
%postun
|
| 272 |
if [ $1 -eq 0 ] ; then
|
| 273 |
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
| 274 |
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
| 275 |
fi
|
| 276 |
update-desktop-database &> /dev/null || :
|
| 277 |
|
| 278 |
%preun
|
| 279 |
# is it a final removal?
|
| 280 |
if [ $1 -eq 0 ]; then
|
| 281 |
%{__rm} -rf %{mozappdir}/components
|
| 282 |
%{__rm} -rf %{mozappdir}/extensions
|
| 283 |
%{__rm} -rf %{mozappdir}/plugins
|
| 284 |
fi
|
| 285 |
|
| 286 |
%posttrans
|
| 287 |
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
| 288 |
|
| 289 |
%files -f %{name}.lang
|
| 290 |
%defattr(-,root,root,-)
|
| 291 |
%{_bindir}/firefox
|
| 292 |
%doc %{_mandir}/man1/*
|
| 293 |
%dir %{_datadir}/mozilla/extensions/%{firefox_app_id}
|
| 294 |
%dir %{_libdir}/mozilla/extensions/%{firefox_app_id}
|
| 295 |
%{_datadir}/applications/mozilla-%{name}.desktop
|
| 296 |
%dir %{mozappdir}
|
| 297 |
%doc %{mozappdir}/LICENSE
|
| 298 |
%doc %{mozappdir}/README.txt
|
| 299 |
%{mozappdir}/*.properties
|
| 300 |
%{mozappdir}/chrome
|
| 301 |
%dir %{mozappdir}/components
|
| 302 |
%ghost %{mozappdir}/components/compreg.dat
|
| 303 |
%ghost %{mozappdir}/components/xpti.dat
|
| 304 |
%{mozappdir}/components/*.so
|
| 305 |
%{mozappdir}/components/*.xpt
|
| 306 |
%attr(644, root, root) %{mozappdir}/blocklist.xml
|
| 307 |
%attr(644, root, root) %{mozappdir}/components/*.js
|
| 308 |
%{mozappdir}/defaults
|
| 309 |
%dir %{mozappdir}/extensions
|
| 310 |
%{mozappdir}/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
|
| 311 |
%{mozappdir}/icons
|
| 312 |
%{mozappdir}/searchplugins
|
| 313 |
%{mozappdir}/firefox
|
| 314 |
%{mozappdir}/run-mozilla.sh
|
| 315 |
%{mozappdir}/application.ini
|
| 316 |
%dir %{mozappdir}/modules
|
| 317 |
%{mozappdir}/modules/distribution.js
|
| 318 |
%{mozappdir}/modules/openLocationLastURL.jsm
|
| 319 |
%{mozappdir}/.autoreg
|
| 320 |
# XXX See if these are needed still
|
| 321 |
%{mozappdir}/updater*
|
| 322 |
%exclude %{mozappdir}/removed-files
|
| 323 |
%{_datadir}/icons/hicolor/16x16/apps/firefox.png
|
| 324 |
%{_datadir}/icons/hicolor/22x22/apps/firefox.png
|
| 325 |
%{_datadir}/icons/hicolor/24x24/apps/firefox.png
|
| 326 |
%{_datadir}/icons/hicolor/256x256/apps/firefox.png
|
| 327 |
%{_datadir}/icons/hicolor/32x32/apps/firefox.png
|
| 328 |
%{_datadir}/icons/hicolor/48x48/apps/firefox.png
|
| 329 |
|
| 330 |
#---------------------------------------------------------------------
|
| 331 |
|
| 332 |
%changelog
|
| 333 |
* Thu Nov 5 2009 Jan Horak <jhorak@redhat.com> - 3.5.5-1
|
| 334 |
- Update to 3.5.5
|
| 335 |
|
| 336 |
* Mon Oct 26 2009 Jan Horak <jhorak@redhat.com> - 3.5.4-1
|
| 337 |
- Update to 3.5.4
|
| 338 |
|
| 339 |
* Mon Sep 7 2009 Jan Horak <jhorak@redhat.com> - 3.5.3-1
|
| 340 |
- Update to 3.5.3
|
| 341 |
|
| 342 |
* Thu Aug 6 2009 Martin Stransky <stransky@redhat.com> - 3.5.2-3
|
| 343 |
- Rebuilt
|
| 344 |
|
| 345 |
* Thu Aug 6 2009 Martin Stransky <stransky@redhat.com> - 3.5.2-2
|
| 346 |
- Fix for #437596 - Firefox needs to register proper name
|
| 347 |
for session restore.
|
| 348 |
|
| 349 |
* Mon Aug 3 2009 Christopher Aillon <caillon@redhat.com> - 3.5.2-1
|
| 350 |
- Update to 3.5.2
|
| 351 |
|
| 352 |
* Fri Jul 24 2009 Jan Horak <jhorak@redhat.com> - 3.5.1-3
|
| 353 |
- Adjust icons cache update according to template
|
| 354 |
|
| 355 |
* Wed Jul 22 2009 Jan Horak <jhorak@redhat.com> - 3.5.1-2
|
| 356 |
- New icons fixed
|
| 357 |
|
| 358 |
* Fri Jul 17 2009 Christopher Aillon <caillon@redhat.com> - 3.5.1-1
|
| 359 |
- Update to 3.5.1
|
| 360 |
|
| 361 |
* Mon Jul 13 2009 Jan Horak <jhorak@redhat.com> - 3.5-2
|
| 362 |
- Updated icon
|
| 363 |
|
| 364 |
* Tue Jun 30 2009 Christopher Aillon <caillon@redhat.com> - 3.5-1
|
| 365 |
- Firefox 3.5 final release
|
| 366 |
|
| 367 |
* Tue May 26 2009 Martin Stransky <stransky@redhat.com> - 3.5-0.21
|
| 368 |
- fix for #502541 - Firefox version should depend
|
| 369 |
on Xulrunner but does not
|
| 370 |
|
| 371 |
* Mon Apr 27 2009 Christopher Aillon <caillon@redhat.com> - 3.5-0.20
|
| 372 |
- 3.5 beta 4
|
| 373 |
|
| 374 |
* Fri Mar 27 2009 Christopher Aillon <caillon@redhat.com> - 3.1-0.11
|
| 375 |
- Rebuild against newer gecko
|
| 376 |
|
| 377 |
* Fri Mar 13 2009 Christopher Aillon <caillon@redhat.com> - 3.1-0.10
|
| 378 |
- 3.1 beta 3
|
| 379 |
|
| 380 |
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1-0.7.beta2
|
| 381 |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
| 382 |
|
| 383 |
* Wed Feb 11 2009 Christopher Aillon <caillon@redhat.com> - 3.1-0.6
|
| 384 |
- Drop explicit requirement on desktop-file-utils
|
| 385 |
|
| 386 |
* Wed Jan 7 2009 Jan Horak <jhorak@redhat.com> - 3.1-0.5
|
| 387 |
- Fixed wrong LANG and LC_MESSAGES variables interpretation (#441973)
|
| 388 |
in startup script.
|
| 389 |
|
| 390 |
* Sat Dec 20 2008 Christopher Aillon <caillon@redhat.com> 3.1-0.4
|
| 391 |
- 3.1 beta 2
|
| 392 |
|
| 393 |
* Tue Dec 9 2008 Christopher Aillon <caillon@redhat.com> 3.1-0.3
|
| 394 |
- Rebuild
|
| 395 |
|
| 396 |
* Thu Dec 4 2008 Christopher Aillon <caillon@redhat.com> 3.1-0.1
|
| 397 |
- Update to 3.1 beta 1
|
| 398 |
|
| 399 |
* Tue Nov 11 2008 Jan Horak <jhorak@redhat.com> 3.0.2-2
|
| 400 |
- Removed firefox-2.0-getstartpage.patch patch
|
| 401 |
- Start page is set by different way
|
| 402 |
|
| 403 |
* Tue Sep 23 2008 Christopher Aillon <caillon@redhat.com> 3.0.2-1
|
| 404 |
- Update to 3.0.2
|
| 405 |
|
| 406 |
* Wed Jul 16 2008 Christopher Aillon <caillon@redhat.com> 3.0.1-1
|
| 407 |
- Update to 3.0.1
|
| 408 |
|
| 409 |
* Tue Jun 17 2008 Christopher Aillon <caillon@redhat.com> 3.0-1
|
| 410 |
- Firefox 3 Final
|
| 411 |
|
| 412 |
* Thu May 08 2008 Colin Walters <walters@redhat.com> 3.0-0.61
|
| 413 |
- Rebuild to pick up new xulrunner (bug #445543)
|
| 414 |
|
| 415 |
* Wed Apr 30 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.60
|
| 416 |
- Rebuild
|
| 417 |
|
| 418 |
* Mon Apr 28 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.59
|
| 419 |
- Zero out the lang file we generate during builds
|
| 420 |
|
| 421 |
* Mon Apr 28 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.58
|
| 422 |
- Bounce a few unneeded items from the spec and clean up some tabs
|
| 423 |
|
| 424 |
* Fri Apr 25 2008 Martin Stransky <stransky@redhat.com> 3.0-0.57
|
| 425 |
- Enable anti-pishing protection (#443403)
|
| 426 |
|
| 427 |
* Fri Apr 18 2008 Martin Stransky <stransky@redhat.com> 3.0-0.55
|
| 428 |
- Don't show an welcome page during first browser start (#437065)
|
| 429 |
|
| 430 |
* Sat Apr 12 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.54
|
| 431 |
- Remove the broken Macedonian (mk) langpack
|
| 432 |
- Download to Download/
|
| 433 |
|
| 434 |
* Mon Apr 7 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.53
|
| 435 |
- Add langpacks, marked with %%lang
|
| 436 |
- Translate the .desktop file
|
| 437 |
|
| 438 |
* Wed Apr 2 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.52
|
| 439 |
- Beta 5
|
| 440 |
|
| 441 |
* Mon Mar 31 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.51
|
| 442 |
- Beta 5 RC2
|
| 443 |
|
| 444 |
* Thu Mar 27 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.50
|
| 445 |
- Update to latest trunk (2008-03-27)
|
| 446 |
|
| 447 |
* Wed Mar 26 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.49
|
| 448 |
- Update to latest trunk (2008-03-26)
|
| 449 |
|
| 450 |
* Tue Mar 25 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.48
|
| 451 |
- Update to latest trunk (2008-03-25)
|
| 452 |
|
| 453 |
* Mon Mar 24 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.47
|
| 454 |
- Update to latest trunk (2008-03-24)
|
| 455 |
|
| 456 |
* Thu Mar 20 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.46
|
| 457 |
- Update to latest trunk (2008-03-20)
|
| 458 |
|
| 459 |
* Mon Mar 17 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.45
|
| 460 |
- Update to latest trunk (2008-03-17)
|
| 461 |
|
| 462 |
* Mon Mar 17 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.44
|
| 463 |
- Revert to trunk from the 15th to fix crashes on HTTPS sites
|
| 464 |
|
| 465 |
* Sun Mar 16 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.43
|
| 466 |
- Update to latest trunk (2008-03-16)
|
| 467 |
|
| 468 |
* Sat Mar 15 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.42
|
| 469 |
- Update to latest trunk (2008-03-15)
|
| 470 |
|
| 471 |
* Sat Mar 15 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.41
|
| 472 |
- Avoid conflicts between gecko debuginfo packages
|
| 473 |
|
| 474 |
* Wed Mar 12 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.40
|
| 475 |
- Update to latest trunk (2008-03-12)
|
| 476 |
|
| 477 |
* Tue Mar 11 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.39
|
| 478 |
- Update to latest trunk (2008-03-11)
|
| 479 |
|
| 480 |
* Mon Mar 10 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.38
|
| 481 |
- Update to latest trunk (2008-03-10)
|
| 482 |
|
| 483 |
* Sun Mar 9 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.37
|
| 484 |
- Update to latest trunk (2008-03-09)
|
| 485 |
|
| 486 |
* Fri Mar 7 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta4.36
|
| 487 |
- Update to latest trunk (2008-03-07)
|
| 488 |
|
| 489 |
* Thu Mar 6 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta4.35
|
| 490 |
- Update to latest trunk (2008-03-06)
|
| 491 |
|
| 492 |
* Tue Mar 4 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.34
|
| 493 |
- Update to latest trunk (2008-03-04)
|
| 494 |
|
| 495 |
* Sun Mar 2 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.33
|
| 496 |
- Update to latest trunk (2008-03-02)
|
| 497 |
|
| 498 |
* Sat Mar 1 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.32
|
| 499 |
- Update to latest trunk (2008-03-01)
|
| 500 |
|
| 501 |
* Fri Feb 29 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.31
|
| 502 |
- Update to latest trunk (2008-02-29)
|
| 503 |
|
| 504 |
* Thu Feb 28 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.30
|
| 505 |
- Update to latest trunk (2008-02-28)
|
| 506 |
|
| 507 |
* Wed Feb 27 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.29
|
| 508 |
- Update to latest trunk (2008-02-27)
|
| 509 |
|
| 510 |
* Tue Feb 26 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.28
|
| 511 |
- Update to latest trunk (2008-02-26)
|
| 512 |
|
| 513 |
* Sat Feb 23 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.27
|
| 514 |
- Update to latest trunk (2008-02-23)
|
| 515 |
|
| 516 |
* Fri Feb 22 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.26
|
| 517 |
- Update to latest trunk (2008-02-22)
|
| 518 |
|
| 519 |
* Thu Feb 21 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.25
|
| 520 |
- Update to latest trunk (2008-02-21)
|
| 521 |
|
| 522 |
* Sun Feb 17 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.23
|
| 523 |
- Update to latest trunk (2008-02-17)
|
| 524 |
|
| 525 |
* Fri Feb 15 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.22
|
| 526 |
- Update to latest trunk (2008-02-15)
|
| 527 |
|
| 528 |
* Thu Feb 14 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.21
|
| 529 |
- Update to latest trunk (2008-02-14)
|
| 530 |
|
| 531 |
* Wed Feb 13 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta3.20
|
| 532 |
- Update to latest trunk (2008-02-13)
|
| 533 |
|
| 534 |
* Mon Feb 11 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.19
|
| 535 |
- Update to latest trunk (2008-02-11)
|
| 536 |
|
| 537 |
* Sun Feb 10 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.18
|
| 538 |
- Update to latest trunk (2008-02-10)
|
| 539 |
|
| 540 |
* Sat Feb 9 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.17
|
| 541 |
- Update to latest trunk (2008-02-09)
|
| 542 |
|
| 543 |
* Wed Feb 6 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.16
|
| 544 |
- Update to latest trunk (2008-02-06)
|
| 545 |
|
| 546 |
* Wed Jan 30 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.15
|
| 547 |
- Update to latest trunk (2008-01-30)
|
| 548 |
- Backported an old laucher
|
| 549 |
|
| 550 |
* Mon Jan 28 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.13
|
| 551 |
- cleared starting scripts, removed useless parts
|
| 552 |
|
| 553 |
* Mon Jan 21 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.12
|
| 554 |
- Update to latest trunk (2008-01-21)
|
| 555 |
|
| 556 |
* Tue Jan 15 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.11
|
| 557 |
- Update to latest trunk (2008-01-15)
|
| 558 |
- Now with system extensions directory support
|
| 559 |
- Temporarily disable langpacks while we're on the bleeding edge
|
| 560 |
- Remove skeleton files; they are in xulrunner now
|
| 561 |
|
| 562 |
* Sun Jan 13 2008 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.10
|
| 563 |
- Update to latest trunk (20080113)
|
| 564 |
- Fix the default prefs, homepage, and useragent string
|
| 565 |
|
| 566 |
* Thu Jan 10 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.9
|
| 567 |
- rebuilt agains xulrunner-devel-unstable
|
| 568 |
|
| 569 |
* Mon Jan 7 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.8
|
| 570 |
- added ssl exception patch (mozbz #411037)
|
| 571 |
|
| 572 |
* Fri Jan 4 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.7
|
| 573 |
- removed broken langpack
|
| 574 |
- built against libxul
|
| 575 |
|
| 576 |
* Thu Jan 3 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.6
|
| 577 |
- updated to the latest trunk (20080103)
|
| 578 |
|
| 579 |
* Wed Jan 2 2008 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.5
|
| 580 |
- added default fedora homepage
|
| 581 |
- updated a language pack (#427182)
|
| 582 |
|
| 583 |
* Mon Dec 31 2007 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.4
|
| 584 |
- Create and own /etc/skel/.mozilla
|
| 585 |
- No longer need add-gecko-provides
|
| 586 |
|
| 587 |
* Sat Dec 22 2007 Christopher Aillon <caillon@redhat.com> 3.0-0.beta2.3
|
| 588 |
- When there are both 32- and 64-bit versions of XPCOM installed on disk
|
| 589 |
make sure to load the correct one.
|
| 590 |
|
| 591 |
* Tue Dec 20 2007 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.2
|
| 592 |
- fixed xulrunner dependency
|
| 593 |
|
| 594 |
* Tue Dec 18 2007 Martin Stransky <stransky@redhat.com> 3.0-0.beta2.1
|
| 595 |
- moved to XUL Runner and updated to 3.0b3pre
|
| 596 |
- removed firefox-devel package, gecko-libs is provided
|
| 597 |
by xulrunner-devel now.
|
| 598 |
|
| 599 |
* Thu Dec 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.10-5
|
| 600 |
- Fix the getStartPage method to not return blank.
|
| 601 |
Patch by pspencer@fields.utoronto.ca
|
| 602 |
|
| 603 |
* Sun Dec 9 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.10-4
|
| 604 |
- Fix up some rpmlint warnings
|
| 605 |
- Use only one pref for the homepage for now
|
| 606 |
- Drop some old patches and some obsolote Obsoletes
|
| 607 |
|
| 608 |
* Tue Dec 4 2007 Martin Stransky <stransky@redhat.com> 2.0.0.10-3
|
| 609 |
- fixed an icon location
|
| 610 |
|
| 611 |
* Mon Dec 3 2007 Martin Stransky <stransky@redhat.com> 2.0.0.10-2
|
| 612 |
- removed gre.conf file (most of the gtkmozembed applications
|
| 613 |
run with xulrunner now)
|
| 614 |
|
| 615 |
* Mon Nov 26 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.10-1
|
| 616 |
- Update to 2.0.0.10
|
| 617 |
|
| 618 |
* Tue Nov 5 2007 Martin Stransky <stransky@redhat.com> 2.0.0.9-1
|
| 619 |
- updated to the latest upstream
|
| 620 |
|
| 621 |
* Wed Oct 31 2007 Martin Stransky <stransky@redhat.com> 2.0.0.8-3
|
| 622 |
- added mozilla-plugin-config to startup script
|
| 623 |
|
| 624 |
* Tue Oct 30 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.8-2
|
| 625 |
- Tweak the default backspace behavior to be more in line with
|
| 626 |
GNOME convention, Mozilla upstream, and other distros
|
| 627 |
|
| 628 |
* Tue Oct 23 2007 Martin Stransky <stransky@redhat.com> 2.0.0.8-1
|
| 629 |
- updated to the latest upstream
|
| 630 |
- moved preference updates to build section
|
| 631 |
|
| 632 |
* Thu Oct 18 2007 Jesse Keating <jkeating@redhat.com> - 2.0.0.6-12
|
| 633 |
- Disable the Firefox startup notification support for now.
|
| 634 |
|
| 635 |
* Mon Sep 26 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-11
|
| 636 |
- Fixed #242657 - firefox -g doesn't work
|
| 637 |
|
| 638 |
* Mon Sep 25 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-10
|
| 639 |
- Removed hardcoded MAX_PATH, PATH_MAX and MAXPATHLEN macros
|
| 640 |
|
| 641 |
* Mon Sep 24 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-9
|
| 642 |
- Startup notification support
|
| 643 |
|
| 644 |
* Tue Sep 11 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-8
|
| 645 |
- Fix crashes when using GTK+ themes containing a gtkrc which specify
|
| 646 |
GtkOptionMenu::indicator_size and GtkOptionMenu::indicator_spacing
|
| 647 |
|
| 648 |
* Mon Sep 10 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-7
|
| 649 |
- added fix for #246248 - firefox crashes when searching for word "do"
|
| 650 |
|
| 651 |
* Thu Sep 6 2007 Christopher Aillon <caillon@redhat.com> - 2.0.0.6-6
|
| 652 |
- Fix default page for all locales
|
| 653 |
|
| 654 |
* Wed Aug 29 2007 Christopher Aillon <caillon@redhat.com> - 2.0.0.6-5
|
| 655 |
- Tweak the default home page
|
| 656 |
|
| 657 |
* Fri Aug 24 2007 Adam Jackson <ajax@redhat.com> - 2.0.0.6-4
|
| 658 |
- Rebuild for build ID
|
| 659 |
|
| 660 |
* Mon Aug 13 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-3
|
| 661 |
- Update the license tag
|
| 662 |
|
| 663 |
* Mon Aug 6 2007 Martin Stransky <stransky@redhat.com> 2.0.0.6-2
|
| 664 |
- unwrapped plugins moved to the old location
|
| 665 |
- removed plugin configuration utility
|
| 666 |
|
| 667 |
* Sat Aug 4 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.6-1
|
| 668 |
- Update to 2.0.0.6
|
| 669 |
- Fix dnd support to/from gtk2 apps
|
| 670 |
- Fix installed permissions of *.png
|
| 671 |
|
| 672 |
* Mon Jul 23 2007 Martin Stransky <stransky@redhat.com> 2.0.0.5-3
|
| 673 |
- added nspluginwrapper support
|
| 674 |
|
| 675 |
* Wed Jul 18 2007 Kai Engert <kengert@redhat.com> - 2.0.0.5-2
|
| 676 |
- Update to 2.0.0.5
|
| 677 |
|
| 678 |
* Fri Jun 29 2007 Martin Stransky <stransky@redhat.com> 2.0.0.4-3
|
| 679 |
- backported pango patches from FC6 (1.5.0.12)
|
| 680 |
|
| 681 |
* Sun Jun 3 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.4-2
|
| 682 |
- Properly clean up threads with newer NSPR
|
| 683 |
|
| 684 |
* Wed May 30 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.4-1
|
| 685 |
- Final version
|
| 686 |
|
| 687 |
* Wed May 23 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.4-0.rc3
|
| 688 |
- Update to 2.0.0.4 RC3
|
| 689 |
|
| 690 |
* Tue Apr 17 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.3-4
|
| 691 |
- Fix permissions of the man page
|
| 692 |
|
| 693 |
* Tue Apr 10 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.3-3
|
| 694 |
- Ensure initial homepage on all locales is our proper default
|
| 695 |
|
| 696 |
* Sun Mar 25 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.3-2
|
| 697 |
- Fix the symlink to default bookmarks
|
| 698 |
- Use mktemp for temp dirs
|
| 699 |
|
| 700 |
* Tue Mar 20 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.3-1
|
| 701 |
- Update to 2.0.0.3
|
| 702 |
|
| 703 |
* Tue Mar 20 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.2-3
|
| 704 |
- Default bookmarks no longer live here; use system-bookmarks
|
| 705 |
|
| 706 |
* Mon Mar 12 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.2-2
|
| 707 |
- Oops, define the variables I expect to use.
|
| 708 |
|
| 709 |
* Fri Feb 23 2007 Martin Stransky <stransky@redhat.com> 2.0.0.2-1
|
| 710 |
- Update to 2002
|
| 711 |
|
| 712 |
* Wed Feb 21 2007 David Woodhouse <dwmw2@redhat.com> 2.0.0.1-6
|
| 713 |
- Fix PPC64 runtime
|
| 714 |
- Fix firefox script to use 32-bit browser by default on PPC64 hardware
|
| 715 |
|
| 716 |
* Fri Feb 9 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.1-5
|
| 717 |
- Start using the specified locale
|
| 718 |
|
| 719 |
* Tue Jan 30 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.1-4
|
| 720 |
- Fix the DND implementation to not grab, so it works with new GTK+.
|
| 721 |
|
| 722 |
* Thu Jan 18 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.1-3
|
| 723 |
- Remove the XLIB_SKIP_ARGB_VISUALS=1 workaround; the plugin got fixed.
|
| 724 |
|
| 725 |
* Fri Dec 22 2006 Christopher Aillon <caillon@redhat.com> 2.0.0.1-2
|
| 726 |
- Strip out some frequent warnings; they muddy up the build output
|
| 727 |
|
| 728 |
* Thu Dec 21 2006 Christopher Aillon <caillon@redhat.com> 2.0.0.1-1
|
| 729 |
- Update to 2001
|
| 730 |
|
| 731 |
* Fri Oct 27 2006 Christopher Aillon <caillon@redhat.com> 2.0-2
|
| 732 |
- Tweak the .desktop file
|
| 733 |
|
| 734 |
* Tue Oct 24 2006 Christopher Aillon <caillon@redhat.com> 2.0-1
|
| 735 |
- Update to 2.0
|
| 736 |
- Add patch from Behdad to fix pango printing.
|
| 737 |
|
| 738 |
* Wed Oct 11 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-7
|
| 739 |
- Add virtual provides for gecko applications.
|
| 740 |
|
| 741 |
* Wed Oct 4 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-6
|
| 742 |
- Bring the invisible character to parity with GTK+
|
| 743 |
|
| 744 |
* Tue Sep 26 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-5
|
| 745 |
- Fix crash when changing gtk key theme
|
| 746 |
- Fix gtkmozembed window visibility
|
| 747 |
- Prevent UI freezes while changing GNOME theme
|
| 748 |
- Remove verbiage about pango; no longer required by upstream.
|
| 749 |
|
| 750 |
* Tue Sep 19 2006 Christopher Aillon <caillon@redhat/com> 1.5.0.7-4
|
| 751 |
- Arrrr! Add Obsoletes: mozilla to avoid GRE conflicts, me hearties!
|
| 752 |
|
| 753 |
* Mon Sep 18 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-3
|
| 754 |
- Bring back the GRE files for embeddors
|
| 755 |
|
| 756 |
* Thu Sep 14 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-2
|
| 757 |
- Update default bookmarks for FC6
|
| 758 |
|
| 759 |
* Wed Sep 13 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.7-1
|
| 760 |
- Update to 1.5.0.7
|
| 761 |
|
| 762 |
* Thu Sep 7 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-12
|
| 763 |
- Icon tweaks and minor spec-file variable cleanup: s/ffdir/mozappdir/g
|
| 764 |
|
| 765 |
* Wed Sep 6 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-11
|
| 766 |
- Fix for cursor position in editor widgets by tagoh and behdad (#198759)
|
| 767 |
|
| 768 |
* Sun Sep 3 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-10
|
| 769 |
- Enable GCC visibility
|
| 770 |
- export XLIB_SKIP_ARGB_VISUALS=1 as a temporary workaround to prevent
|
| 771 |
a broken Adobe/Macromedia Flash Player plugin taking the X server.
|
| 772 |
|
| 773 |
* Tue Aug 29 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-9
|
| 774 |
- Build with -rpath (#161958)
|
| 775 |
|
| 776 |
* Mon Aug 28 2006 Behdad Esfahbod <besfahbo@redhat.com>
|
| 777 |
- Remove "Pango breaks MathML" from firefox.sh.in
|
| 778 |
|
| 779 |
* Mon Aug 28 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-8
|
| 780 |
- Turn visibility back off again for now, as it still breaks the build.
|
| 781 |
|
| 782 |
* Sat Aug 26 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.6-7
|
| 783 |
- Remove "Pango breaks MathML" from firefox-1.5-pango-about.patch
|
| 784 |
|
| 785 |
* Thu Aug 24 2006 Behdad Esfahbod <besfahbo@redhat.com> 1.5.0.6-6
|
| 786 |
- Remove debugging statement from firefox-1.5-pango-mathml.patch
|
| 787 |
|
| 788 |
* Wed Aug 23 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-5
|
| 789 |
- Attempt to turn visibility back on since the GCC issues should have
|
| 790 |
been fixed.
|
| 791 |
|
| 792 |
* Tue Aug 22 2006 Christopher Aillon <caillon@redhat.com> 1.5.0.6-4
|
| 793 |
- Update NSS requires to workaround a bug introduced by NSS changes.
|
| 794 |
https://bugzilla.mozilla.org/show_bug.cgi?id=294542
|
| 795 |
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=201922
|
| 796 |
|
| 797 |
* Tue Aug 22 2006 Behdad Esfahbod <besfahbo@redhat.com>
|
| 798 |
- Add a better nopangoxft patch that doesn't depend on pangocairo
|
| 799 |
- Add firefox-1.5-pango-mathml.patch (bug 150393)
|
| 800 |
|
| 801 |
* Tue Aug 08 2006 Kai Engert <kengert@redhat.com> - 1.5.0.6-3
|
| 802 |
- Rebuild
|
| 803 |
|
| 804 |
* Thu Aug 03 2006 Kai Engert <kengert@redhat.com> - 1.5.0.6-2
|
| 805 |
- Update to 1.5.0.6
|
| 806 |
|
| 807 |
* Sun Jul 30 2006 Matthias Clasen <mclasen@redhat.com> - 1.5.0.5-8
|
| 808 |
- Pass --libdir to configure
|
| 809 |
|
| 810 |
* Fri Jul 28 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-7
|
| 811 |
- Dereference links in %%install so the files get put in the
|
| 812 |
right place.
|
| 813 |
|
| 814 |
* Fri Jul 28 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-6
|
| 815 |
- Actually, those pkgconfig files really shouldn't be here as we use
|
| 816 |
system nss and nspr.
|
| 817 |
|
| 818 |
* Fri Jul 28 2006 Matthias Clasen <mclasen@redhat.com> - 1.5.0.5-5
|
| 819 |
- Add more pkgconfig files
|
| 820 |
|
| 821 |
* Thu Jul 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-4
|
| 822 |
- Add pkgconfig files
|
| 823 |
|
| 824 |
* Thu Jul 27 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-3
|
| 825 |
- Don't strip provides when building the devel package
|
| 826 |
|
| 827 |
* Wed Jul 26 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.5-2
|
| 828 |
- Update to 1.5.0.5
|
| 829 |
|
| 830 |
* Mon Jul 24 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.4-4
|
| 831 |
- Ugh:
|
| 832 |
- Mozilla the platform is deprecated
|
| 833 |
- XULrunner has been promised for a while but is still not 1.0
|
| 834 |
- Ship a firefox-devel for now as we need a devel platform.
|
| 835 |
- The plan is to kill firefox-devel when xulrunner 1.0 ships.
|
| 836 |
- Clean up the files list a little bit.
|
| 837 |
|
| 838 |
* Thu Jun 15 2006 Kai Engert <kengert@redhat.com> - 1.5.0.4-3
|
| 839 |
- Force "gmake -j1" on ppc ppc64 s390 s390x
|
| 840 |
|
| 841 |
* Mon Jun 12 2006 Kai Engert <kengert@redhat.com> - 1.5.0.4-2
|
| 842 |
- Firefox 1.5.0.4
|
| 843 |
|
| 844 |
* Thu May 4 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.3-2
|
| 845 |
- Firefox 1.5.0.3
|
| 846 |
|
| 847 |
* Wed Apr 19 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.2-4
|
| 848 |
- Really drop the broken langpacks this time.
|
| 849 |
|
| 850 |
* Tue Apr 18 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.2-3
|
| 851 |
- Drop some broken langpacks
|
| 852 |
|
| 853 |
* Thu Apr 13 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.2-2
|
| 854 |
- Firefox 1.5.0.2
|
| 855 |
|
| 856 |
* Sat Mar 11 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-9
|
| 857 |
- Add a notice to the about dialog denoting this is a pango enabled build.
|
| 858 |
- Tweak the user agent denoting this is a pango enabled build.
|
| 859 |
|
| 860 |
* Mon Mar 6 2006 Warren Togami <wtogami@redhat.com> - 1.5.0.1-7
|
| 861 |
- make links point to the correct release
|
| 862 |
|
| 863 |
* Mon Mar 6 2006 Ray Strode <rstrode@redhat.com> - 1.5.0.1-6
|
| 864 |
- Add new bookmarks file from Warren (bug 182386)
|
| 865 |
|
| 866 |
* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de>
|
| 867 |
- add buildrequires libXt-devel for X11/Intrinsic.h, X11/Shell.h
|
| 868 |
|
| 869 |
* Mon Feb 20 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-5
|
| 870 |
- Rebuild
|
| 871 |
|
| 872 |
* Mon Feb 20 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-4
|
| 873 |
- Ensure our wrapper handles URLs with commas/spaces (Ilya Konstantinov)
|
| 874 |
- Fix a pango typo
|
| 875 |
|
| 876 |
* Fri Feb 10 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-3
|
| 877 |
- Improve the langpack install stuff
|
| 878 |
- Fix up dumpstack.patch to match the finalized change
|
| 879 |
|
| 880 |
* Tue Feb 7 2006 Jesse Keating <jkeating@redhat.com> - 1.5.0.1-2.1
|
| 881 |
- rebuilt for new gcc4.1 snapshot and glibc changes
|
| 882 |
|
| 883 |
* Wed Feb 1 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-2
|
| 884 |
- Update language packs to 1.5.0.1
|
| 885 |
- Add dumpstack.patch
|
| 886 |
|
| 887 |
* Wed Feb 1 2006 Christopher Aillon <caillon@redhat.com> - 1.5.0.1-1
|
| 888 |
- Update to 1.5.0.1
|
| 889 |
|
| 890 |
* Thu Jan 26 2006 Christopher Aillon <caillon@redhat.com> - 1.5-5
|
| 891 |
- Ship langpacks again from upstream
|
| 892 |
- Stop providing MozillaFirebird and mozilla-firebird
|
| 893 |
|
| 894 |
* Tue Jan 3 2006 Christopher Aillon <caillon@redhat.com> - 1.5-4
|
| 895 |
- Looks like we can build ppc64 again. Happy New Year!
|
| 896 |
|
| 897 |
* Fri Dec 16 2005 Christopher Aillon <caillon@redhat.com> - 1.5-3
|
| 898 |
- Once again, disable ppc64 because of a new issue.
|
| 899 |
See https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=175944
|
| 900 |
|
| 901 |
* Thu Dec 15 2005 Christopher Aillon <caillon@redhat.com> - 1.5-2
|
| 902 |
- Use the system NSS libraries
|
| 903 |
- Build on ppc64
|
| 904 |
|
| 905 |
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
| 906 |
- rebuilt
|
| 907 |
|
| 908 |
* Tue Nov 29 2005 Christopher Aillon <caillon@redhat.com> - 1.5-1
|
| 909 |
- Update to Firefox 1.5
|
| 910 |
|
| 911 |
* Mon Nov 28 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.1.rc3
|
| 912 |
- Fix issue with popup dialogs and other actions causing lockups
|
| 913 |
|
| 914 |
* Fri Nov 18 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.0.rc3
|
| 915 |
- Update to 1.5 rc3
|
| 916 |
|
| 917 |
* Thu Nov 3 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.0.rc1
|
| 918 |
- Update to 1.5 rc1
|
| 919 |
- Clean up the default bookmarks
|
| 920 |
|
| 921 |
* Sat Oct 8 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.0.beta2
|
| 922 |
- Update to 1.5 beta 2
|
| 923 |
|
| 924 |
* Wed Sep 14 2005 Christopher Aillon <caillon@redhat.com> - 1.5-0.5.0.beta1
|
| 925 |
- Update to 1.5 beta 1.
|
| 926 |
- Add patch to svg rendering to adjust for cairo behavior.
|
| 927 |
- Happy birthday, dad!
|
| 928 |
|
| 929 |
* Sat Aug 27 2005 Christopher Aillon <caillon@redhat.com> - 1.1-0.2.8.deerpark.alpha2
|
| 930 |
- Re-enable SVG, canvas, and system cairo.
|
| 931 |
- Fix issue with typing in proxy preference panel
|
| 932 |
|
| 933 |
* Thu Aug 18 2005 Jeremy Katz <katzj@redhat.com> - 1.1-0.2.7.deerpark.alpha2.1
|
| 934 |
- another fix to not use pango_xft
|
| 935 |
|
| 936 |
* Mon Aug 15 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.6.deerpark.alpha2
|
| 937 |
- Rebuild
|
| 938 |
|
| 939 |
* Fri Jul 29 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.5.deerpark.alpha2
|
| 940 |
- Re-enable ppc now that its binutils are fixed.
|
| 941 |
- Disable SVG and canvas again. The in-tree copy does not build against new pango.
|
| 942 |
- When clicking a link and going back via history, don't keep the link focused.
|
| 943 |
|
| 944 |
* Fri Jul 22 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.4.deerpark.alpha2
|
| 945 |
- Add patch from Christian Persch to make the file chooser modal
|
| 946 |
- Change default behavior of opening links from external apps to: New Tab
|
| 947 |
- New build options:
|
| 948 |
--enable-svg
|
| 949 |
--enable-canvas
|
| 950 |
|
| 951 |
* Wed Jul 20 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.3.deerpark.alpha2
|
| 952 |
- Update firefox-1.1-uriloader.patch to fix crashes when calling into gnome-vfs2
|
| 953 |
|
| 954 |
* Tue Jul 19 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.2.deerpark.alpha2
|
| 955 |
- Do away with firefox-rebuild-databases.pl
|
| 956 |
|
| 957 |
* Mon Jul 18 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.2.1.deerpark.alpha2
|
| 958 |
- Rebuild
|
| 959 |
|
| 960 |
* Mon Jul 18 2005 Christopher Aillon <caillon@redhat.com> 1.1-0.0.1.deerpark.alpha2
|
| 961 |
- Update to Deer Park Alpha 2
|
| 962 |
- STILL TODO:
|
| 963 |
- This build is not localized yet.
|
| 964 |
- Theme issues not yet resolved.
|
| 965 |
- Building on ppc platforms is busted, disable them for now.
|
| 966 |
- Forward port all remaining patches.
|
| 967 |
|
| 968 |
* Sun Jul 17 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.4-6
|
| 969 |
- Avoid a crash on 64bit platforms
|
| 970 |
- Use system NSPR
|
| 971 |
|
| 972 |
* Thu Jun 23 2005 Kristian Høgsberg <krh@redhat.com> 0:1.0.4-5
|
| 973 |
- Add firefox-1.0-pango-cairo.patch to get rid of the last few Xft
|
| 974 |
references, fixing the "no fonts" problem.
|
| 975 |
- Copy over changes from FC4 branch.
|
| 976 |
|
| 977 |
* Tue May 24 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.4-4
|
| 978 |
- Only install searchplugins for en-US, since there isn't any way
|
| 979 |
to dynamically select searchplugins per locale yet.
|
| 980 |
|
| 981 |
* Mon May 23 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.4-3
|
| 982 |
- Add support for locales:
|
| 983 |
af-ZA, ast-ES, ca-AD, cs-CZ, cy-GB, da-DK, de-DE, el-GR,
|
| 984 |
en-GB es-AR, es-ES, eu-ES, fi-FI, fr-FR, ga-IE, he-IL,
|
| 985 |
hu-HU, it-IT, ko-KR, ja-JP, ja-JPM, mk-MK, nb-NO, nl-NL,
|
| 986 |
pa-IN, pl-PL, pt-BR, pt-PT, ro-RO, ru-RU, sk-SK, sl-SI,
|
| 987 |
sq-AL, sv-SE, tr-TR, zh-CN, zh-TW
|
| 988 |
|
| 989 |
* Wed May 11 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.4-2
|
| 990 |
- Update to 1.0.4
|
| 991 |
|
| 992 |
* Mon May 9 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-5
|
| 993 |
- Correctly position the IM candidate window for most locales
|
| 994 |
Note: it is still incorrectly positioned for zh_TW after this fix
|
| 995 |
- Add temporary workaround to not create files in the user's $HOME (#149664)
|
| 996 |
|
| 997 |
* Tue May 3 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-4
|
| 998 |
- Rebuild
|
| 999 |
|
| 1000 |
* Tue May 3 2005 Christopher Aillon <caillon@redhat.com>
|
| 1001 |
- Patch from Marcel Mol supporting launching with filenames
|
| 1002 |
containing whitespace.
|
| 1003 |
|
| 1004 |
* Tue May 3 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-3
|
| 1005 |
- Firefox script fixes to support multilib installs.
|
| 1006 |
- Add upstream patch to fix bidi justification of pango
|
| 1007 |
- Add patch to fix launching of helper applications
|
| 1008 |
|
| 1009 |
* Wed Apr 27 2005 Warren Togami <wtogami@redhat.com>
|
| 1010 |
- remove JVM version probing (#116445)
|
| 1011 |
- correct confusing PANGO vars in startup script
|
| 1012 |
|
| 1013 |
* Fri Apr 15 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-2
|
| 1014 |
- Add patch to properly link against libgfxshared_s.a
|
| 1015 |
|
| 1016 |
* Fri Apr 15 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.3-1
|
| 1017 |
- Update to security release 1.0.3
|
| 1018 |
|
| 1019 |
* Tue Apr 12 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.2-4
|
| 1020 |
- Update useragent patch to match upstream.
|
| 1021 |
- Add nspr-config 64 bit patch from rstrode@redhat.com
|
| 1022 |
|
| 1023 |
* Mon Mar 28 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.2-3
|
| 1024 |
- Updated firefox icon (https://bugzilla.mozilla.org/show_bug.cgi?id=261679)
|
| 1025 |
- Fix for some more cursor issues in textareas (149991, 150002, 152089)
|
| 1026 |
|
| 1027 |
* Fri Mar 25 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.2-2
|
| 1028 |
- Make the "browser.link.open_external" pref work (David Fraser)
|
| 1029 |
|
| 1030 |
* Wed Mar 23 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.2-1
|
| 1031 |
- Firefox 1.0.2
|
| 1032 |
|
| 1033 |
* Tue Mar 22 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-6
|
| 1034 |
- Add patch to fix italic rendering errors with certain fonts (e.g. Tahoma)
|
| 1035 |
- Re-enable jsd since there is now a venkman version that works with Firefox.
|
| 1036 |
|
| 1037 |
* Tue Mar 8 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-5
|
| 1038 |
- Add patch to compile against new fortified glibc macros
|
| 1039 |
|
| 1040 |
* Fri Mar 4 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-4
|
| 1041 |
- Build against gcc4, add build patches to do so.
|
| 1042 |
|
| 1043 |
* Thu Mar 3 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-3
|
| 1044 |
- Remerge firefox-1.0-pango-selection.patch
|
| 1045 |
- Add execshield patches for ia64 and ppc
|
| 1046 |
- BuildRequires libgnome-devel, libgnomeui-devel
|
| 1047 |
|
| 1048 |
* Sun Feb 27 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-2
|
| 1049 |
- Add upstream fix to reduce round trips to xserver during remote control
|
| 1050 |
- Add upstream fix to call g_set_application_name
|
| 1051 |
|
| 1052 |
* Thu Feb 24 2005 Christopher Aillon <caillon@redhat.com> 0:1.0.1-1
|
| 1053 |
- Update to 1.0.1 fixing several security flaws.
|
| 1054 |
- Temporarily disable langpacks to workaround startup issues (#145806)
|
| 1055 |
- Request the correct system colors from gtk (#143423)
|
| 1056 |
|
| 1057 |
* Tue Dec 28 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-8
|
| 1058 |
- Add upstream langpacks
|
| 1059 |
|
| 1060 |
* Sat Dec 25 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-7
|
| 1061 |
- Make sure we get a URL passed in to firefox (#138861)
|
| 1062 |
- Mark some generated files as ghost (#136015)
|
| 1063 |
|
| 1064 |
* Wed Dec 15 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-6
|
| 1065 |
- Don't have downloads "disappear" when downloading to desktop (#139015)
|
| 1066 |
- Add RPM version to the useragent
|
| 1067 |
- BuildRequires pango-devel
|
| 1068 |
|
| 1069 |
* Sat Dec 11 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-5
|
| 1070 |
- Fix spacing in textareas when using pango for rendering
|
| 1071 |
- Enable pango rendering by default.
|
| 1072 |
- Enable smooth scrolling by default
|
| 1073 |
|
| 1074 |
* Fri Dec 3 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-4
|
| 1075 |
- Add StartupWMClass patch from Damian Christey (#135830)
|
| 1076 |
- Use system colors by default (#137810)
|
| 1077 |
- Re-add s390(x)
|
| 1078 |
|
| 1079 |
* Sat Nov 20 2004 Christopher Blizzard <blizzard@redhat.com> 0:1.0-3
|
| 1080 |
- Add patch that uses pango for selection.
|
| 1081 |
|
| 1082 |
* Fri Nov 12 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-2
|
| 1083 |
- Fix livemarks icon issue. (#138989)
|
| 1084 |
|
| 1085 |
* Tue Nov 8 2004 Christopher Aillon <caillon@redhat.com> 0:1.0-1
|
| 1086 |
- Firefox 1.0
|
| 1087 |
|
| 1088 |
* Thu Nov 4 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.3
|
| 1089 |
- Add support for GNOME stock icons. (bmo #233461)
|
| 1090 |
|
| 1091 |
* Sat Oct 30 2004 Warren Togami <wtogami@redhat.com> 0:0.99-1.0RC1.2
|
| 1092 |
- #136330 BR freetype-devel with conditions
|
| 1093 |
- #135050 firefox should own mozilla plugin dir
|
| 1094 |
|
| 1095 |
* Sat Oct 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.99-1.0RC1.1
|
| 1096 |
- Update to firefox-rc1
|
| 1097 |
- Add patch for s390(x)
|
| 1098 |
|
| 1099 |
* Tue Oct 26 2004 Christopher Aillon <caillon@redhat.com>
|
| 1100 |
- Fix LD_LIBRARY_PATH at startup (Steve Knodle)
|
| 1101 |
|
| 1102 |
* Fri Oct 22 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.21
|
| 1103 |
- Prevent inlining of stack direction detection (#135255)
|
| 1104 |
|
| 1105 |
* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.20
|
| 1106 |
- More file chooser fixes:
|
| 1107 |
Pop up a confirmation dialog before overwriting files (#134648)
|
| 1108 |
Allow saving as complete once again
|
| 1109 |
- Fix for upstream 263263.
|
| 1110 |
|
| 1111 |
* Tue Oct 19 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.18
|
| 1112 |
- Fix for upstream 262689.
|
| 1113 |
|
| 1114 |
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com 0:0.10.1-1.0PR1.16
|
| 1115 |
- Update pango patch to one that defaults to off
|
| 1116 |
|
| 1117 |
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.15
|
| 1118 |
- Fix problem where default apps aren't showing up in the download
|
| 1119 |
dialog (#136261)
|
| 1120 |
- Fix default height being larger than the available area, cherry picked
|
| 1121 |
from upstream
|
| 1122 |
|
| 1123 |
* Mon Oct 18 2004 Christopher Blizzard <blizzard@redhat.com> 0:0.10.1-1.0PR1.13
|
| 1124 |
- Actually turn on pango in the mozconfig
|
| 1125 |
|
| 1126 |
* Sat Oct 16 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.12
|
| 1127 |
- Disable the default application checks. (#133713)
|
| 1128 |
- Disable the software update feature. (#136017)
|
| 1129 |
|
| 1130 |
* Wed Oct 13 2004 Christopher Blizzard <blizzard@redhat.com>
|
| 1131 |
- Use pango for rendering
|
| 1132 |
|
| 1133 |
* Tue Oct 12 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.10
|
| 1134 |
- Fix for 64 bit crash at startup (b.m.o #256603)
|
| 1135 |
|
| 1136 |
* Fri Oct 8 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.9
|
| 1137 |
- Fix compile issues (#134914)
|
| 1138 |
- Add patch to fix button focus issues (#133507)
|
| 1139 |
- Add patches to fix tab focus stealing issue (b.m.o #124750)
|
| 1140 |
|
| 1141 |
* Fri Oct 1 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.1-1.0PR1.8
|
| 1142 |
- Update to 0.10.1
|
| 1143 |
- Fix tab switching keybindings (#133504)
|
| 1144 |
|
| 1145 |
* Fri Oct 1 2004 Bill Nottingham <notting@redhat.com> 0:0.10.0-1.0PR1.7
|
| 1146 |
- filter out library Provides: and internal Requires:
|
| 1147 |
|
| 1148 |
* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.6
|
| 1149 |
- Prereq desktop-file-utils >= 0.9
|
| 1150 |
|
| 1151 |
* Thu Sep 30 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.5
|
| 1152 |
- Add clipboard access prevention patch.
|
| 1153 |
|
| 1154 |
* Wed Sep 29 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.4
|
| 1155 |
- Add the xul mime type to the .desktop file
|
| 1156 |
|
| 1157 |
* Tue Sep 28 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.3
|
| 1158 |
- Backport the GTK+ file chooser.
|
| 1159 |
- Update desktop database after uninstall.
|
| 1160 |
|
| 1161 |
* Mon Sep 27 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.2
|
| 1162 |
- Change the vendor to mozilla not fedora
|
| 1163 |
- Build with --disable-strip so debuginfo packages work (#133738)
|
| 1164 |
- Add pkgconfig patch (bmo #261090)
|
| 1165 |
|
| 1166 |
* Fri Sep 24 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.1
|
| 1167 |
- Add a BR for desktop-file-utils
|
| 1168 |
- Update default configuration options to use the firefox mozconfig (#132916)
|
| 1169 |
- Use Red Hat bookmarks (#133262)
|
| 1170 |
- Update default homepage (#132721)
|
| 1171 |
- Fix JS math on AMD64 (#133226)
|
| 1172 |
- Build with MOZILLA_OFICIAL (#132917)
|
| 1173 |
|
| 1174 |
* Tue Sep 14 2004 Christopher Aillon <caillon@redhat.com> 0:0.10.0-1.0PR1.0
|
| 1175 |
- Update to 1.0PR1
|
| 1176 |
- Update man page references to say Firefox instead of Firebird
|
| 1177 |
- Remove gcc34 and extensions patch; they are now upstream
|
| 1178 |
- Update desktop database
|
| 1179 |
- Minor tweaks to the .desktop file
|
| 1180 |
|
| 1181 |
* Fri Sep 03 2004 Christopher Aillon <caillon@redhat.com> 0:0.9.3-8
|
| 1182 |
- Fixup .desktop entry Name, GenericName, and Comment (#131602)
|
| 1183 |
- Add MimeType desktop entry (patch from jrb@redhat.com)
|
| 1184 |
- Build with --disable-xprint
|
| 1185 |
|
| 1186 |
* Tue Aug 31 2004 Warren Togami <wtogami@redhat.com> 0:0.9.3-7
|
| 1187 |
- rawhide import
|
| 1188 |
- fedora.us #1765 NetBSD's freetype 2.1.8 compat patch
|
| 1189 |
|
| 1190 |
* Sun Aug 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.6
|
| 1191 |
- and mng support is disabled again as it seams that there is
|
| 1192 |
no real mng support in the code
|
| 1193 |
|
| 1194 |
* Sat Aug 28 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.5
|
| 1195 |
- remove ldconfig from scriptlets (bug #1846 comment #40)
|
| 1196 |
- reenabled mng support (bug #1971)
|
| 1197 |
- removed --enable-strip to let rpm to the stripping (bug #1971)
|
| 1198 |
- honor system settings in firefox.sh (bug #1971)
|
| 1199 |
- setting umask 022 in scriptlets (bug #1962)
|
| 1200 |
|
| 1201 |
* Sat Aug 07 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.4
|
| 1202 |
- copy the icon to the right place(TM)
|
| 1203 |
|
| 1204 |
* Fri Aug 06 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.3
|
| 1205 |
- readded the xpm removed in 0:0.9.2-0.fdr.5
|
| 1206 |
|
| 1207 |
* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.2
|
| 1208 |
- added mozilla-1.7-psfonts.patch from rawhide mozilla
|
| 1209 |
|
| 1210 |
* Thu Aug 05 2004 Adrian Reber <adrian@lisas.de> 0:0.9.3-0.fdr.1
|
| 1211 |
- updated to 0.9.3
|
| 1212 |
- removed following from .mozconfig:
|
| 1213 |
ac_add_options --with-system-mng
|
| 1214 |
ac_add_options --enable-xprint
|
| 1215 |
ac_add_options --disable-dtd-debug
|
| 1216 |
ac_add_options --disable-freetype2
|
| 1217 |
ac_add_options --enable-strip-libs
|
| 1218 |
ac_add_options --enable-reorder
|
| 1219 |
ac_add_options --enable-mathml
|
| 1220 |
ac_add_options --without-system-nspr
|
| 1221 |
|
| 1222 |
* Tue Aug 03 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.5
|
| 1223 |
- applied parts of the patch from Matthias Saou (bug #1846)
|
| 1224 |
- delete empty directories in %%{ffdir}/chrome
|
| 1225 |
- more cosmetic changes to the spec file
|
| 1226 |
|
| 1227 |
* Wed Jul 14 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.4
|
| 1228 |
- mozilla-default-plugin-less-annoying.patch readded
|
| 1229 |
|
| 1230 |
* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.3
|
| 1231 |
- added krb5-devel as build requirement
|
| 1232 |
|
| 1233 |
* Tue Jul 13 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.2
|
| 1234 |
- added patch from bugzilla.mozilla.org (bug #247846)
|
| 1235 |
- removed Xvfb hack
|
| 1236 |
|
| 1237 |
* Fri Jul 09 2004 Adrian Reber <adrian@lisas.de> 0:0.9.2-0.fdr.1
|
| 1238 |
- updated to 0.9.2
|
| 1239 |
|
| 1240 |
* Mon Jul 05 2004 Warren Togami <wtogami@redhat.com> 0:0.9.1-0.fdr.3
|
| 1241 |
- mharris suggestion for backwards compatibilty with Xvfb hack
|
| 1242 |
|
| 1243 |
* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.2
|
| 1244 |
- added massive hack from the debian package to create the
|
| 1245 |
extension directory
|
| 1246 |
|
| 1247 |
* Tue Jun 29 2004 Adrian Reber <adrian@lisas.de> 0:0.9.1-0.fdr.1
|
| 1248 |
- updated to 0.9.1
|
| 1249 |
|
| 1250 |
* Wed Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.4
|
| 1251 |
- remove extensions patch
|
| 1252 |
- add post hack to create extensions
|
| 1253 |
- enable negotiateauth extension
|
| 1254 |
- copy icon to browser/app/default.xpm
|
| 1255 |
- --enable-official-branding
|
| 1256 |
|
| 1257 |
* Wed Jun 17 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.3
|
| 1258 |
- extensions patch
|
| 1259 |
|
| 1260 |
* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.2
|
| 1261 |
- added gnome-vfs2-devel as BuildRequires
|
| 1262 |
- added gcc-3.4 patch
|
| 1263 |
|
| 1264 |
* Wed Jun 16 2004 Adrian Reber <adrian@lisas.de> 0:0.9-0.fdr.1
|
| 1265 |
- updated to 0.9
|
| 1266 |
- dropped x86_64 patches
|
| 1267 |
- dropped xremote patches
|
| 1268 |
|
| 1269 |
* Wed May 26 2004 Adrian Reber <adrian@lisas.de> 0:0.8-0.fdr.13
|
| 1270 |
- remove unused files: mozilla-config
|
| 1271 |
|
| 1272 |
* Sun May 23 2004 David Hill <djh[at]ii.net> 0:0.8-0.fdr.12
|
| 1273 |
- update mozconfig (fixes bug #1443)
|
| 1274 |
- installation directory includes version number
|
| 1275 |
|
| 1276 |
* Mon May 10 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.11
|
| 1277 |
- merge x86_64 release 10 with fedora.us release 10 bump release to 11
|
| 1278 |
|
| 1279 |
* Mon Apr 19 2004 Justin M. Forbes <64bit_fedora@comcast.net> 0:0.8-0.fdr.10
|
| 1280 |
- rebuild for FC2
|
| 1281 |
- change Source71 to properly replace Source7 for maintainability
|
| 1282 |
|
| 1283 |
* Sun Apr 18 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.10
|
| 1284 |
- 3rd xremote patch
|
| 1285 |
- test -Os rather than -O2
|
| 1286 |
|
| 1287 |
* Sun Apr 18 2004 Gene Czarcinski <gene@czarc.net>
|
| 1288 |
- more x86_64 fixes
|
| 1289 |
- fix firefix-xremote-client for x86_64 (similar to what is done for
|
| 1290 |
firefox.sh.in)
|
| 1291 |
|
| 1292 |
* Sat Apr 03 2004 Warren Togami <wtogami@redhat.com> 0:0.8-0.fdr.9
|
| 1293 |
- xremote patch for thunderbird integration #1113
|
| 1294 |
- back out ugly hack from /usr/bin/firefox
|
| 1295 |
- correct default bookmarks
|
| 1296 |
|
| 1297 |
* Wed Feb 25 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.7
|
| 1298 |
- readded the new firefox icons
|
| 1299 |
|
| 1300 |
* Sat Feb 21 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.6
|
| 1301 |
- removed new firefox icons
|
| 1302 |
|
| 1303 |
* Wed Feb 18 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.5
|
| 1304 |
- nothing
|
| 1305 |
|
| 1306 |
* Thu Feb 12 2004 Gene Czarcinski <czar@acm.org>
|
| 1307 |
- update for x86_64 ... usr mozilla-1.6 patches
|
| 1308 |
- change "firefox-i*" to "firefox-*" in above stuff
|
| 1309 |
|
| 1310 |
* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.4
|
| 1311 |
- another icon changed
|
| 1312 |
|
| 1313 |
* Tue Feb 10 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.3
|
| 1314 |
- startup script modified
|
| 1315 |
|
| 1316 |
* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.2
|
| 1317 |
- new firefox icon
|
| 1318 |
- more s/firebird/firefox/
|
| 1319 |
|
| 1320 |
* Mon Feb 09 2004 Adrian Reber <adrian@lisas.de> - 0:0.8-0.fdr.1
|
| 1321 |
- new version: 0.8
|
| 1322 |
- new name: firefox
|
| 1323 |
|
| 1324 |
* Sun Oct 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.2
|
| 1325 |
- s/0.6.1/0.7/
|
| 1326 |
- changed user-app-dir back to .phoenix as .mozilla-firebird
|
| 1327 |
is not working as expected
|
| 1328 |
- manpage now also available as MozillaFirebird.1
|
| 1329 |
|
| 1330 |
* Thu Oct 16 2003 Adrian Reber <adrian@lisas.de> - 0:0.7-0.fdr.1
|
| 1331 |
- updated to 0.7
|
| 1332 |
- provides webclient
|
| 1333 |
- run regxpcom and regchrome after installation and removal
|
| 1334 |
- added a man page from the debian package
|
| 1335 |
- changed user-app-dir from .phoenix to .mozilla-firebird
|
| 1336 |
|
| 1337 |
* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.2
|
| 1338 |
- now with mozilla-default-plugin-less-annoying.patch; see bug #586
|
| 1339 |
|
| 1340 |
* Tue Jul 29 2003 Adrian Reber <adrian@lisas.de> - 0:0.6.1-0.fdr.1
|
| 1341 |
- updated to 0.6.1
|
| 1342 |
- changed buildrequires for XFree86-devel from 0:4.3.0 to 0:4.2.1
|
| 1343 |
it should now also build on RH80
|
| 1344 |
|
| 1345 |
* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.5.rh90
|
| 1346 |
- enabled the type ahead extension: bug #484
|
| 1347 |
|
| 1348 |
* Sun Jul 13 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.4.rh90
|
| 1349 |
- renamed it again back to MozillaFirbird
|
| 1350 |
- added libmng-devel to BuildRequires
|
| 1351 |
- startup homepage is now www.fedora.us
|
| 1352 |
- improved the startup script to use the unix remote protocol
|
| 1353 |
to open a new window
|
| 1354 |
|
| 1355 |
* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.3.rh90
|
| 1356 |
- new icon from http://iconpacks.mozdev.org/phoenix/iconshots/flame48true.png
|
| 1357 |
- now using gtk2 as toolkit
|
| 1358 |
- renamed again back to mozilla-firebird (I like it better)
|
| 1359 |
- Provides: MozillaFirebird for compatibility with previous releases
|
| 1360 |
- changed default bookmarks.html to contain links to www.fedora.us
|
| 1361 |
|
| 1362 |
* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.2.rh90
|
| 1363 |
- renamed package to MozillaFirebird and all files with the old name
|
| 1364 |
- enabled mng, mathml, xinerama support
|
| 1365 |
- now honouring RPM_OPT_FLAGS
|
| 1366 |
|
| 1367 |
* Thu May 19 2003 Adrian Reber <adrian@lisas.de> - 0:0.6-0.fdr.1.rh90
|
| 1368 |
- updated to 0.6
|
| 1369 |
|
| 1370 |
* Thu May 01 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.1.cvs20030501.rh90
|
| 1371 |
- Updated to CVS.
|
| 1372 |
- Renamed to mozilla-firebird.
|
| 1373 |
|
| 1374 |
* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030409.rh90
|
| 1375 |
- Updated to CVS.
|
| 1376 |
- Removed hard-coded library path.
|
| 1377 |
|
| 1378 |
* Sat Apr 05 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.3.cvs20030402.rh90
|
| 1379 |
- Changed Prereq to Requires.
|
| 1380 |
- Changed BuildRequires to gtk+-devel (instead of file).
|
| 1381 |
- Recompressed source with bzip2.
|
| 1382 |
- Removed post.
|
| 1383 |
|
| 1384 |
* Tue Apr 02 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030402.rh90
|
| 1385 |
- Added desktop-file-utils to BuildRequires.
|
| 1386 |
- Changed category to X-Fedora-Extra.
|
| 1387 |
- Updated to CVS.
|
| 1388 |
|
| 1389 |
* Sun Mar 30 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0:0.6-0.fdr.0.2.cvs20030328.rh90
|
| 1390 |
- Added Epoch:0.
|
| 1391 |
- Added libgtk-1.2.so.0 to the BuildRequires
|
| 1392 |
|
| 1393 |
* Fri Mar 28 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030328.rh90
|
| 1394 |
- Updated to latest CVS.
|
| 1395 |
- Moved phoenix startup script into its own file
|
| 1396 |
|
| 1397 |
* Wed Mar 26 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030326.rh90
|
| 1398 |
- Updated to latest CVS.
|
| 1399 |
- Changed release to 9 vs 8.1.
|
| 1400 |
- Added cvs script.
|
| 1401 |
- added encoding to desktop file.
|
| 1402 |
|
| 1403 |
* Sun Mar 23 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030323.rh81
|
| 1404 |
- Updated to latest CVS.
|
| 1405 |
- added release specification XFree86-devel Build Requirement.
|
| 1406 |
- changed chmod to %attr
|
| 1407 |
|
| 1408 |
* Fri Mar 21 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-0.fdr.0.1.cvs20030317.rh81
|
| 1409 |
- Fixed naming scheme.
|
| 1410 |
- Fixed .desktop file.
|
| 1411 |
|
| 1412 |
* Mon Mar 17 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030317.1
|
| 1413 |
- Updated to CVS.
|
| 1414 |
|
| 1415 |
* Fri Mar 14 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.2
|
| 1416 |
- General Tweaking.
|
| 1417 |
|
| 1418 |
* Thu Mar 13 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030313.1
|
| 1419 |
- Updated CVS.
|
| 1420 |
- Modified mozconfig.
|
| 1421 |
|
| 1422 |
* Sun Mar 09 2003 Phillip Compton <pcompton[AT]proteinmedia.com> - 0.6-cvs20030309.1
|
| 1423 |
- Initial RPM release.
|