forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backed out 11 changesets (bug 1763783) for causing spidermonkey busta…
…ges. CLOSED TREE Backed out changeset 9f69cfa948a3 (bug 1763783) Backed out changeset 3ae303350839 (bug 1763783) Backed out changeset 27c4895e1b2f (bug 1763783) Backed out changeset ff5f35f83b2a (bug 1763783) Backed out changeset 1ef8335cceca (bug 1763783) Backed out changeset 10c435662b3c (bug 1763783) Backed out changeset 8308dfec4d4f (bug 1763783) Backed out changeset cb7ea7f5d5c7 (bug 1763783) Backed out changeset b17cfc9dda12 (bug 1763783) Backed out changeset 4d8b84842e34 (bug 1763783) Backed out changeset 8c45437d1136 (bug 1763783)
- Loading branch information
1 parent
072e163
commit 3aee005
Showing
601 changed files
with
5,643 additions
and
74,011 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+14.4 MB
config/external/icu/data/icudt71l.dat → config/external/icu/data/icudt70l.dat
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Add a new UNumberFormatFields constant for the approximately sign. | ||
# | ||
# https://unicode-org.atlassian.net/browse/ICU-21765 | ||
|
||
|
||
diff --git a/intl/icu/source/i18n/number_affixutils.cpp b/intl/icu/source/i18n/number_affixutils.cpp | ||
--- a/intl/icu/source/i18n/number_affixutils.cpp | ||
+++ b/intl/icu/source/i18n/number_affixutils.cpp | ||
@@ -131,17 +131,17 @@ UnicodeString AffixUtils::escape(const U | ||
Field AffixUtils::getFieldForType(AffixPatternType type) { | ||
switch (type) { | ||
case TYPE_MINUS_SIGN: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_SIGN_FIELD}; | ||
case TYPE_PLUS_SIGN: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_SIGN_FIELD}; | ||
case TYPE_APPROXIMATELY_SIGN: | ||
// TODO: Introduce a new field for the approximately sign? | ||
- return {UFIELD_CATEGORY_NUMBER, UNUM_SIGN_FIELD}; | ||
+ return {UFIELD_CATEGORY_NUMBER, UNUM_APPROXIMATELY_SIGN_FIELD}; | ||
case TYPE_PERCENT: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_PERCENT_FIELD}; | ||
case TYPE_PERMILLE: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_PERMILL_FIELD}; | ||
case TYPE_CURRENCY_SINGLE: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_CURRENCY_FIELD}; | ||
case TYPE_CURRENCY_DOUBLE: | ||
return {UFIELD_CATEGORY_NUMBER, UNUM_CURRENCY_FIELD}; | ||
diff --git a/intl/icu/source/i18n/unicode/unum.h b/intl/icu/source/i18n/unicode/unum.h | ||
--- a/intl/icu/source/i18n/unicode/unum.h | ||
+++ b/intl/icu/source/i18n/unicode/unum.h | ||
@@ -397,22 +397,24 @@ typedef enum UNumberFormatFields { | ||
UNUM_PERMILL_FIELD, | ||
/** @stable ICU 49 */ | ||
UNUM_SIGN_FIELD, | ||
/** @stable ICU 64 */ | ||
UNUM_MEASURE_UNIT_FIELD, | ||
/** @stable ICU 64 */ | ||
UNUM_COMPACT_FIELD, | ||
|
||
+ UNUM_APPROXIMATELY_SIGN_FIELD, | ||
+ | ||
#ifndef U_HIDE_DEPRECATED_API | ||
/** | ||
* One more than the highest normal UNumberFormatFields value. | ||
* @deprecated ICU 58 The numeric value may change over time, see ICU ticket #12420. | ||
*/ | ||
- UNUM_FIELD_COUNT = UNUM_SIGN_FIELD + 3 | ||
+ UNUM_FIELD_COUNT = UNUM_SIGN_FIELD + 4 | ||
#endif /* U_HIDE_DEPRECATED_API */ | ||
} UNumberFormatFields; | ||
|
||
|
||
/** | ||
* Selectors with special numeric values to use locale default minimum grouping | ||
* digits for the DecimalFormat/UNumberFormat setMinimumGroupingDigits method. | ||
* Do not use these constants with the [U]NumberFormatter API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
commit c205e7ee49a7086a28b9c275fcfdac9ca3dc815d | ||
Author: yumaoka <[email protected]> | ||
Date: Wed Mar 30 14:47:46 2022 -0400 | ||
commit a56dde820dc35665a66f2e9ee8ba58e75049b668 | ||
Author: Shane F. Carr <[email protected]> | ||
Date: Wed Oct 27 15:02:46 2021 -0700 | ||
|
||
ICU-21971 Added a new numeric currecny code SLE/695 for Sierra Leone Leone. | ||
ICU-21579 Fix warnings in number formatting code |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.