Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/05/2023 in Posts

  1. New build of Serpent/UXP for XP! Test binary: Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20230506-3219d2d-uxp-725b27a0f-xpmod.7z Win64 https://o.rthost.win/basilisk/basilisk52-g4.8.win64-git-20230506-3219d2d-uxp-725b27a0f-xpmod.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/custom IA32 Win32 https://o.rthost.win/basilisk/basilisk52-g4.8.win32-git-20230506-3219d2d-uxp-725b27a0f-xpmod-ia32.7z source code that is comparable to my current working tree is available here: https://github.com/roytam1/UXP/commits/ia32 NM28XP build: Win32 https://o.rthost.win/palemoon/palemoon-28.10.6a1.win32-git-20230506-d849524bd-uxp-725b27a0f-xpmod.7z Win32 IA32 https://o.rthost.win/palemoon/palemoon-28.10.6a1.win32-git-20230506-d849524bd-uxp-725b27a0f-xpmod-ia32.7z Win32 SSE https://o.rthost.win/palemoon/palemoon-28.10.6a1.win32-git-20230506-d849524bd-uxp-725b27a0f-xpmod-sse.7z Win64 https://o.rthost.win/palemoon/palemoon-28.10.6a1.win64-git-20230506-d849524bd-uxp-725b27a0f-xpmod.7z Official UXP changes picked since my last build: - Remove unmaintained WebGL conformance test suite. (733451d1b) - Revert "Issue #61 - Place Skia in libxul" (260f8e154) - Issue #61 - Follow-up: Fix gkmedias.dll link bustage related to Skia. (6e2f70a70) - Issue #61 - Follow-up: Fix xul.dll link bustage related to Skia. (4584069f2) - No issue - Correct handling of async (arrow) functions declared inside constructors (ffe6d48af) - No issue - [MailNews] Fix build bustage due to recent MIME API changes (2048f4df5) - Issue #1451 - Split hunspell library out of xul. (cbbc15ad8) - Issue #1451 - Fix hunspell build bustage in FreeBSD. (d75c6c181) - Issue #1691 - Part 1: Provide a way of associating a private value with a script or module. (1a6b3a822) - Issue #1691 - Part 2: Implement call import and import meta in the parser. https://bugzilla.mozilla.org/show_bug.cgi?id=1427610 https://bugzilla.mozilla.org/show_bug.cgi?id=1484948 (a8ab41b4c) - Issue #1691 - Part 3: Finish implementing import meta. https://bugzilla.mozilla.org/show_bug.cgi?id=1427610 (3f4985ce6) - Issue #1691 - Part 4: Finish implementing call import. https://bugzilla.mozilla.org/show_bug.cgi?id=1499140 (7a6dab0b3) - Issue #1691 - Part 5: Don't pre-create module metadata object when compiling. https://bugzilla.mozilla.org/show_bug.cgi?id=1489477 (c965fbdd1) - Issue #1691 - Part 5b: Stop modules from entraining the top-level JSScript. https://bugzilla.mozilla.org/show_bug.cgi?id=1489477 (5c09a3b3c) - Issue #1691 - Part 6a: Support private values which contain pointers to cycle-collected C++ objects https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 (1b811bd71) - Issue #1691 - Part 6b: Initial browser support for dynamic import from module scripts. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 Factor out script fetch options from script load request classes. https://bugzilla.mozilla.org/show_bug.cgi?id=1480720 Remove support for version parameter from script loader. https://bugzilla.mozilla.org/show_bug.cgi?id=1428745 (86e0057ea) - Issue #1691 - Part 6c: Fix a few issues with the earlier commits. Need PNK_CALL_IMPORT and PNK_IMPORT_META in the node children list or it will abort. When porting ScriptFetchOptions support, I had 2 constructors, I picked the wrong one. Missed adding the preference javascript.options.dynamicImport to all.js. (9a19e9d16) - Issue #1691 - Part 6d: Optimize handling of internally-created Promise objects. https://bugzilla.mozilla.org/show_bug.cgi?id=1358879 The patch uses a different test: PROMISE_FLAG_DEFAULT_REJECT_FUNCTION which doesn't exist in our codebase. It was added in this bug, which appears to be partly complete: https://bugzilla.mozilla.org/show_bug.cgi?id=1313049 (c3daecc21) - Issue #1691 - Part 6e: Fix problems due to divergent codebases. This gets basic dynamic import working. Fix a problem in Part 5b where Mozilla used toGCThing() and we don't. Fix a problem in Part 4 where runtime() returns nullptr in our codebase since it runs on JS Helper thread. We need to get the runtime via runtimeFromAnyThread() instead. (e7d0b58e5) - Issue #1691 - Part 7a: Add a JS API to get the private value for the calling script or module. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 (62be54216) - Issue #1691 - Part 7b: Make load request element optional. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 (ba01d99e3) - Issue #1691 - Part 7c: Refactor ModuleScript into ClassicScript class and LoadedScript base class so we can represent all scripts that can perform dynamic import. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 (41eda05e5) - Issue #1691 - Part 7d: Allow dynamic import in cases where there's no referencing script or module. Support dynamic import from classic scripts by creating ClassicScript objects and associating them with the compiled. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 This patch is incomplete, some code in ScriptLoader::EvaluateScript() could not be applied for missing dependencies. Part 7e will apply the missing dependencies and finish the patch. (d5d7bb5e4) - Issue #1691 - Part 7e: Dependencies for required to finish part 7d. https://bugzilla.mozilla.org/show_bug.cgi?id=1331662 Reimplement EvaluateString using the ExecutionContext class. https://bugzilla.mozilla.org/show_bug.cgi?id=1316078 Extract redudant code into StartOffThreadParseTask. Use an ExclusiveContext instead of a JSContext in XDR functions. Add a script decoder as a valid off-main-thread parse-task. https://bugzilla.mozilla.org/show_bug.cgi?id=900784 Add nsJSUtils functions for encoding and decoding the bytecode. https://bugzilla.mozilla.org/show_bug.cgi?id=1316081 Add XDRIncrementalEncoder to replace delazified LazyScript in the encoded XDR buffer. Add an XDRIncrementalEncoder instance on the ScriptSource. Expose a new JSAPI to incrementally encode bytecode when it is generated. https://bugzilla.mozilla.org/show_bug.cgi?id=1334091 XDR function use the sourceObject instead of the enclosingScript as argument. (993476283) - Issue #1691 - Part 7f: Split up compile and execute so we can use ClassicScript. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 Refactor nsJSUtils::ExecutionContext to separate compilation and execution steps and allow extraction of compiled JSScript. https://bugzilla.mozilla.org/show_bug.cgi?id=1366773 Move buffer argument from JS::StartIncrementalEncoding to JS::FinishIncrementalEncoding. (c69a47c39) - Issue #1691 - Part 8: Fix --enable-debug builds and continue dynamic module import changes. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 Support import from timeout handlers by associating the initiating script with the compiled JSScript. Fix error message that covers all import() failures that don't throw a JS exception. https://bugzilla.mozilla.org/show_bug.cgi?id=1331662 Partial - Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. Left EvaluateString() in nsXBLProtoImplField.cpp until ExecutionContext errors can be fixed. (1109559a5) - Issue #1691 - Part 9: Make import() work when the active script is in another document. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 Associate event handler with active script when they are compiled. (be916ef7c) - Issue #1691 - Part 10: Add and use method to annotate CC crashes with a class name. https://bugzilla.mozilla.org/show_bug.cgi?id=1277260 Make PtrInfo into a class and mark it final. Also fix an erroneous debug assert because mBaseURL not set in one code path. (7e056a6f7) - Issue #1691 - Part 11: Fix incorrect reference counting in ModuleScript class. (edb82ec9f) - Issue #1691 - Part 12: Fix return value in ExecScript() and debug assert in ParseTask. https://bugzilla.mozilla.org/show_bug.cgi?id=1331662 Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. ExecutionContext: The mRetValue is not used even though it is checked in various asserts. This is how it is in the Mozilla code even years later, only the passed in value is used. ParseTask: JoinDecode() and JoinCompile() run the same code but the type is different causing a debug assert when it checks the type Script vs ScriptDecode. (a892a7590) - Issue #1691 - Part 13: Remove MUST_MATCH_TOKEN* macros in Parser. https://bugzilla.mozilla.org/show_bug.cgi?id=1501928 This was helpful in debugging one of the crashes, the macros made debugging a nightmare. (bc895eba9) - Issue #1691 - Part 14: Fix a debug assert and memory leak. PNK_IMPORT_META and PNK_CALL_IMPORT are binary nodes... They function similar to list nodes, so they worked there, but debug mode asserts because of the wrong type. https://bugzilla.mozilla.org/show_bug.cgi?id=1342012 Fixed a memory leak due to missing code in SourceScriptObject::finalize(). Thanks FranklinDM! (79ea755b7) - Issue #1691 - Part 15: Make |new import()| a syntax error. https://bugzilla.mozilla.org/show_bug.cgi?id=1508672 (f2b179156) - Issue #1691 - Part 16: Dynamically imported modules can throw any value as an exception. https://bugzilla.mozilla.org/show_bug.cgi?id=1508672 (1ac1e90b6) - Bug 1432272 - Make Fetch API use the global's base URL instead of the entry document's base URL (62e2fbc4e) - Issue #2218 - Part 1: Add nsExpirationTracker::NotifyEndTransaction(Locked) callbacks for subclasses to know when an aging iteration is complete (fa787f4a6) - Issue #2218 - Part 2: Make SurfaceCache free ImageSurfaceCache objects outside of the lock (93644fd33) - Issue #2073 - Follow-up: Use internal Move instead of std::move for consistency (b7f217e5a) - Issue #2213 - Follow-up: Fix derieved Generator prototypes after previous change (a27e8bf98) - Issue #2173 - Follow-up: Use common ancestor of PNK_(OPT)DOT in ASTSerializer::expression (e31a058ce) - Issue #1894 - Follow-up: Fix return value ordering in IonMonkey nullish coalescing (aece6260f) - Issue #1285 - Follow-up: Correctly handle follow-up compilations of RegExp with named capturing groups (0a74a5758) - Issue #2221 - Enable link-time optimization for Spidermonkey by default if building it shared. (b592711bb) - Issue #1691 - Follow-up: Fix CallSelfHostedFunction deprot introduced by Part 4. (45b34592b) - Issue #1862 - Follow-up: Replace deprecated Harfbuzz functions with current ones. (51426d105) - Issue #1691 - Follow-up: use error message with no arguments for bad import statements (73a99c155) - Issue #2142 - Fold BytecodeEmitter::checkTypeSet into BytecodeEmitter::emitCheck (014ebe8ae) - Issue #2142 - Extend newSuperCall for JSOP_SPREADSUPERCALL (6f56a494e) - Issue #2142 - Change InitPropertyOperation to accept a PropertyName directy and use DefineDataProperty (627d0da7d) - Issue #2142 - Add predicate functions count_if and any_of to ListNode iterator (3b9b111b2) - Issue #2142 - Ensure 'await' is always a restricted identifier when parsing modules (faed047e3) - Issue #2142 - Reduce calls to FindReservedWord when checking for forbidden identifiers during parsing (6abb54ff1) - Issue #2142 - Add internal option for fields, but always true (afa7bddc9) - Issue #2142 - Implement syntax for public/private fields and computed field names (51db22ff2) - Issue #2142 - Improve TokenPos handling in BCE (ab7721e4d) - Issue #2142 - Add PropertyEmitter, ObjectEmitter, ClassEmitter, LexicalScopeEmitter, DefaultEmitter (1b89be6d0) - Issue #2142 - Add FunctionEmitter, FunctionScriptEmitter, and FunctionParamsEmitter with current methods (e6335ded8) - Issue #2142 - Handle fields in derived classes (235ca7794) - Issue #2142 - Factor out PropertyName parsing from Parser::propertyName() (014953c53) - Issue #2142 - Implement ASI for fields (447261cf8) - Issue #2142 - Use JSOP_INITPROP for field initializers (849ab4417) - Issue #2142 - Restrict contents of direct eval in fields (8c6750014) - Issue #2142 - Fix several scoping issues in field initializers (bcb6203e4) - Issue #2142 - Pass through arguments in synthesized constructors for derived classes (1031b1fc4) - Issue #2142 - Emit field keys in correct order (f374ab472) - Issue #2142 - Don't treat PNK_NAME specially emitAssignmentOrInit (f0b06f5ad) - Issue #2142 - Set anonymous function name in field initializer (c20611496) - Issue #2142 - Optimize .initializers scoping and emitter (e0b5528c2) - Issue #2142 - Support SuperProperty in field initializers (b187006a7) - Issue #2142 - Parse and process static class fields (c3b19191f) - Issue #2142 - Track isFieldInitializer on JSScript instead of Scope (22a9d46ef) - Issue #2142 - Implement class static block (1fac189ae) - Issue #2142 - Remove the temporary fields option (ba9647a12) - Issue #2097 - Implement logical assignment operators (10951a169) - Issue #2097 - Handle Logical Assignment in Ion CFG (a7d8cecdb) - Issue #1691 - Follow-up: Fix videojs and potentially other problems. When rewriting the ExecutionContext code in ScriptLoader I accidentally removed some required code. (a1f787fc8) - Issue #2225 - Implement Element.replaceChildren (ae50e9e01) - Issue #1656 - remove vim control lines from js/src (e6ff567de) - Issue #1656 - Remove more vim control lines. (d388e478a) - Issue #1656 - Remove more vim control lines. (c9b8a576d) - Issue #1656 - Remove more vim control lines. (2f117eeca) - Issue #1656 - Remove more vim control lines. (a39fd9e75) - Issue #1656 - Remove more vim control lines. (f1759b33f) - No Issue - Do not parse or return body for XHRs with HEAD/CONNECT method or content-length=0 (84eadbe3c) - Issue #1691 - Follow-up: Ship dynamic module imports enabled by default. (5b7f259ab) Official Pale-Moon changes picked since my last build: - [Pale-Moon] Issue MoonchildProductions/UXP#1451 - Support hunspell as shared library (2be4e3e69) Official Basilisk changes picked since my last build: - [Basilisk] Issue MoonchildProductions/UXP#1451 - Support hunspell as shared library (61874576e) My changes since my last build: - partly import changes from tenfourfox: #651: M1761233 M1687303 M1633019 M1797336 M1799748 M1801102 (fb91afbb4) (ba3e46b17) - follow-up Issue #1691 - Part 6b, fix code that codepath is removed by upstream but remaining here (80d11ebc3) - Issue #2142 - follow-up rev 51db22ff, removing `static` keyword from upstream force-push rev aa6d42e5fc..63a00fdd25 (fa52ac972)
    2 points
  2. Win7 will never be abandonware as long as Microsoft exists. Abandonware is to be products that have an abandoned license or copyright, and has nothing to do with whether a product is actively being sold or supported. I personally don't care about the Thorium website, or the developer, or the browser, or warez, or whatever else. The forum has rules about what can be posted about and what is directly linked to, and this is only because in the past we have received complains and nasty letters from lawyers about things. So we don't allow those types of posts as a measure to protect the forum from disappearing entirely. And sure, you don't need to point out the gray area that exists with the rules, with regards to extended kernels or updates (updates are the big thing really) so let's hope MS continues to not care about those things so we can still talk about them here.
    2 points
  3. Just in case, what jaclaz said is CLEARLY here: Nothing more, nothing less.[1] To be even more clear, I did not start anything, I was asked explicitly for something and answered to the best of my knowledge (on something that I don't use, never used and don't foresee using in the near future and that I neither recommend, endorse, nor judge, criticize or comment in any way). jaclaz [1] last character is a full stop or period.
    2 points
  4. I made an unofficial update to BlackWingCat's Extended Core because the official Extended Core is not on BlackWingCat's new website, and I wanted to make an English version of Extended Core v16d because I cannot read Japanese. Most of the files in this update are from Extended Core v16a because they are the same as the ones in Extended Core v16d except for the language. Update: Made installer with SFXCAB utility. The new installer can be slipstreamed with nLite. ┌───────┐ │ Download │ └───────┘ Files not from Extended Core v16a: acpi.sys from http://blog.livedoor.jp/blackwingcat/archives/1974336.html ndis.sys from Extended Kernel v16d videoprt.sys from KB829884-v9 ntoskrnl.exe* ntkrnlmp.exe* ntkrnlpa.exe* ntkrpamp.exe* *All of these files are from Extended Core v16d but modified (see below) Modifications made to NT Kernel & System (the 4 exe files with '* next to them): All Japanese resources replaced with resources from Extended Core v16a. Exports for ExVerifySuite and RtlIntegerToUnicode added because the code for the functions was present but the exports were not added to the export table. New boot screen for Windows 2000 Professional:
    1 point
  5. New regular/weekly KM-Goanna release: https://o.rthost.win/kmeleon/KM76.4.7-Goanna-20230506.7z Changelog: Out-of-tree changes: * update Goanna3 to git a8e11fd667...967126c55b: - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1225486 - don't include mozilla/ToString.h in {BasePoint,nsRegion}.h; r=jrmuizel (33ffb885b7) - Bug 1069417 - Generalize Matrix4x4 into Matrix4x4Typed<SourceUnits, TargetUnits>. r=Bas (ef50fbb874) - Bug 1229202 (part 1) - Remove some unused arguments in nsPrintEngine's functions. r=mattwoodrow. (7368283f53) - Bug 1229202 (part 2) - Remove gfxQuartzSurface::GetCGContextWithClip, which is unused. r=mattwoodrow. (611ebc211e) - Bug 1229202 (part 3) - Make gfxContextAutoDisableSubpixelAntialiasing take a DrawTarget instead of a gfxContext. r=mattwoodrow. (eac64c2002) - Bug 1229202 (part 4) - Remove an unused gfxContextAutoSaveRestore. r=mattwoodrow. (050fc5796d) - Bug 1229202 (part 5) - Remove an unneeded gfxContextAutoSaveRestore. r=mattwoodrow. (966558456b) - Bug 1229202 (part 6) - Remove two nasty matrix reinterpret_casts. r=mattwoodrow. (c27b247af7) - Bug 1229202 (part 7) - Pass a DrawTarget to gfxXlibNativeRenderer::DrawDirect(). r=mattwoodrow. (8356148bdb) - Bug 1187134 (part 1) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (f7adf5b45f) - Bug 1187134 (part 2) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (4af6bd04f0) - Bug 1187134 (part 3) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (ad822eefa9) - Bug 1187134 (part 4) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (b49e0625b4) - Bug 1187134 (part 5) - Replace nsBaseHashtable::Enumerate() calls in netwerk/cache{,2}/ with iterators. r=valentin. (cb88e0d11f) - Bug 1181040 - Always disable sccache when doing PGO builds. r=gps (d5b19682ee) - Bug 1229613 - Properly disable sccache on PGO builds. r=mshal (930caf31b3) - Bug 1164921 - part 3 - make more things depend on CONFIG[MOZ_ANDROID_CXX_STL]; r=glandium (e437ffb734) - Bug 1207288. Ask ANGLE for the correct output version. r=jgilbert (43ab163d70) - Bug 1219890. Construct context arguments on the stack. r=jgilbert (6bc3b04360) - Bug 1219890. Use ES3 when appropriate. r=jgilbert (9cd5e81934) - missing bit of Bug 1200595 - Consolidate the TextureClient's destruction logic. (96d02c0a21) - Bug 1219890. Make assignment operator and copy constructor default. r=jgilbert (27e886223f) - Bug 1228182 - Use division directly for generating double in XorShift128PlusRNG. r=Waldo (02b90bfcab) - Bug 322529 part 1 - Use XorShift128PlusRNG for Math.random(). r=jwalden (bc70756ff6) - Bug 322529 part 2 - Add xor64 and add64 to macro-assemblers. r=arai (ba54b70a25) - Bug 322529 part 3 - Fix LRandom JIT code to use the new algorithm. r=arai,jwalden (8ba7676a56) - Bug 322529 part 4 - Fix setRNGState shell function and math-random.js jit-test. r=arai (462a4779f9) - Bug 322529 part 5 - Give Windows ExecutableAllocator its own XorShift128+ RNG. r=jwalden (0f96f35586) - fix warnings (e564ce4515) - Bug 1197282 - Include <atomic> in VideoDecoder.h. r=cpearce (aeb12e6082) - Bug 1195939 - Flush decode queue on Reset() in gmp-clearkey - r=cpearce (4dcbde99e0) - Bug 1186406 - Copy input to ClearKey's decoder, so we can return its containing shmem earlier. r=gerald (d8764fa545) - Bug 1228461 - Don't assert we must have keys for keyIds we've seen in ~ClearKeySession(). r=gerald (4ddcbe699f) - Bug 1228461 - Implement keyids initData type for ClearKey. r=gerald (09213c5e5f) - Bug 1230026 - Support 'webm' initDataType format for MP4 ClearKey initData. r=gerald (b64a9e6a21) - Bug 1173631 - [EME] Implement async shutdown in clearkey GMP. r=cpearce (366ec9235c) - Bug 1181436 - Use 'gmp-api/' prefix consistently in includes in gmp-clearkey. r=gerald (eb4f4344c0) - Bug 1185388 - Limit the number of cores used by WMF in ClearKey CDM -r=cpearce (9014cf6c29) - Bug 1214469 - Ensure gmp-clearkey accounts for mNumInputTasks when flushing. r=gerald (5c2e691b64) - Bug 1226430 - Remove alg from ClearKey license parser. r=gerald (43bf12a3b6) - Bug 1157728: Removed StackArena::Init() and call to it as it is now useless. r=dholbert (fee41513de) - Bug 1161392 - Enlarge touch area for AccessibleCaret. r=roc (15e9b18206) - Bug 1207934 - Reset mImaginaryCaretRect if it is out of scrollport. r=roc (3d00572dd8) - Bug 1225699 part 1 - Add EffectSet class; r=smaug (c4e255a722) - Bug 1225699 part 2 - Add Add/RemoveEffect to EffectSet; r=smaug (70d1e3ada2) - Bug 1225699 part 3 - Register and unregister effects with elements; r=smaug, r=heycam (7d6478b017) - Bug 1225699 part 4 - Add iterator to EffectSet; r=heycam (cf28cff0f4) - Bug 1225699 part 5 - Use EffectSet in Element::GetAnimations; r=heycam (0fdb687623) - Bug 1225699 part 6 - Use strong refs to store effects on their target elements; r=smaug (078c58732c) - Bug 1225699 part 7 - Keep effect properties when the ownerDocument of the element changes; r=smaug (ddd3ab54b1) - Bug 1226118 part 1 - Add EffectSet::GetEffectSet(const nsIFrame*); r=dholbert (407533395c) - Bug 1226118 part 2 - Use EffectSet in nsLayoutUtils animation functions; r=dholbert (808525d54b) - Bug 1226118 part 3 - Use EffectSet in CommonAnimationManager::ClearIsRunningOnCompositor; r=hiro, r=dholbert (e5020bdc23) - Bug 1226118 part 4 - Use EffectSet in ActiveLayerManager's animated-scale checks; r=dholbert (ef725a9753) - Bug 1226118 part 5 - Move LogAsyncAnimationFailure to AnimationUtils; r=dholbert (aa2104cd55) - Bug 1226118 part 6 - Remove no longer used LayerAnimationRecord/Info code from AnimationCommon; r=dholbert (6355d4132e) - Bug 1226118 part 7 - Rename and rework KeyframeEffectReadOnly::CanAnimatePropertyOnCompositor to ShouldBlockCompositorAnimations; r=hiro (5ae5113f87) - Bug 1226118 part 8 - Add EffectCompositor::GetAnimationsForCompositor that uses the EffectSet rather than AnimationCollection; r=dholbert (07067af8b8) - Bug 1226118 part 9 - Use EffectCompositor::GetAnimationsForCompositor in nsDisplayList; r=dholbert (7b857c5030) - Bug 1226118 part 10 - Use EffectCompositor::GetAnimationsForCompositor in nsLayoutUtils; r=dholbert (af9221073b) - Bug 1226118 part 11 - Remove CommonAnimationManager::GetAnimationsForCompositor; r=dholbert (02865b2413) - Bug 1226118 part 12a - Make RestyleManager::GetMaxAnimationGenerationForFrame used frame-based GetAnimationCollection; r=dholbert (34644baa17) - Bug 1226118 part 12b - Rename CommonAnimationManager::GetAnimations to GetAnimationCollection; r=dholbert (fc391019a2) - Bug 1226118 part 13 - Move the GetAnimationCollection definitions side-by-side; r=dholbert (8828457ba1) - Bug 1226118 part 14 - Rewrite GetAnimationCollection(nsIFrame*) in terms of the existing GetAnimationCollection; r=dholbert (d7256f9a5b) - Bug 1226118 part 15 - Remove no-longer-necessary delays from test_running_on_compositor.html; r=hiro (bd70ec1d14) - Bug 1183786 - Part 1: Refactor timer setup code into a helper function. r=dholbert (b383718880) - Bug 1183786 - Part 2: Delay updating after prefs changed if detached. r=tn r=dholbert (90e1564a20) - Bug 1183786 - Part 3: Make nsPresContext helper-function return already_AddRefed instead of bool+outparam. r=tn (30acf78f3d) - Bug 1183786 - Part 4: Drop unnecessary '!!' boolification. r=tn (66c94926a6) - Bug 1168180 - Mark nsPresContext::mShell as MOZ_NON_OWNING_REF. r=dbaron (be86891cd6) - Bug 1168179 - Mark nsPresContext::mMedium as MOZ_UNSAFE_REF. r=dbaron (2312071a0e) - Bug 1167402 - Mark nsPresContext::mLinkHandler as MOZ_NON_OWNING_REF. r=dbaron (f6276a7e8f) - Bug 1167406 - Mark nsRootPresContext::RunWillPaintObservers::mPresContext as MOZ_NON_OWNING_REF. r=dbaron (956aac5b52) - Bug 1228934 - Remove style, weight, and stretch parameters from nsFont constructor. r=jdaggett (2c0b39d5bf) - Bug 1215484 - make SVG in an image context ignore author colours to match how we treat raster images, and in a non-image context respect them to match html. f=dao, r=roc (b68056bfc0) - Bug 1230466. Make sure to update our scrollbar styles when a <body> is removed from the DOM, since we might now need to propagate from some other element. r=roc (165ae94a09) (30ff84134a) - import changes from `dev' branch of rmottola/Arctic-Fox: - Bug 1162211 Use sqlite private cache mode in Cache API. r=ehsan (7d91c65569) - Bug 1220308 Cache API should teardown DOM objects when Worker hits Terminating status. r=baku (a50fd37df1) - Bug 1144214 - Fix DeleteOrphanedBodyAction so that it doesn't orphan cache files if the action is canceled; r=bkelly (df310a4915) - Bug 1243849 - Restore support for accessing the Cache API from app://URLs and also for storing requests/responses with app:// URLs within it; r=bkelly (07144da733) - Bug 1199434 - Fire an event when the print engine encounters an error. r=smaug (e714d1f979) - Bug 1230092. Make nsIDOMCustomEvent no longer inherit from nsIDOMEvent, so that CustomEvent doesn't end up with multiple inheritance from nsIDOMEvent. r=smaug (cd8e1b5ff5) - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (ddcdde1201) - Bug 1177927: Use nsFrameList::GetLength() instead of manual iteration to count pages in nsPrintEngine. r=tn (6b8944ab43) - Bug 1196896 - add CSSLexer.performEOFFixup. r=heycam, r=bz (c5159fc644) - Bug 1153378 - Move local variable in behind #ifndef MOZILLA_XPCOMRT_API. r=jesup (8e5a9c1c48) - Bug 1227396: P1. Remove TimestampedMediaByteRange object. r=cpearce (1fae1c62c5) - Bug 1201404 - Implement minimal gtests to exercise the MPEG4 parser - r=rillian (2a47ebc9e4) - Bug 1187067 - Added gtests using the bug's test file, running simple checks and many parsing runs to catch parser crashes. r=rillian (71027a9572) - Bug 1138992: P2. Add gtest. r=kentuckyfriedtakahe (672e0975a1) - Bug 1200326 - P 1 - Moved test case contents from test source into separate file - r=rillian (e3cdcdd121) - Bug 1200326 - part 2 - Parse subsets of the input stream - r=rillian (c72577319e) - Bug 1200326 - p3 - Test case filenames are now in a list, to allow adding more tests - r=rillian (e8a21b4842) - Bug 1200326 - p4 - Added test case from bug 1200326, with more checks - r=rillian (8befb8260f) - Bug 1204580 - p1: Added test case files. r=rillian (6573cf686d) - Bug 1181213 - Added Added mp4 test case to libstagefright gtest - r=rillian (1278f9dc75) - Bug 1181719 - p1: Added mp4 test case to libstagefright gtest - r=rillian (7ea78da4d9) - Bug 1181223 - p1: Added mp4 test case to libstagefright gtest - r=rillian (14f0b6c719) - Bug 1156505 - p1: Added test case file from bug. r=rillian (9d188b3c6a) - Bug 1181220 - p1: Added mp4 test case to libstagefright gtest - r=rillian (b98029cb8e) - Bug 1181215 - p1: Added mp4 test case to libstagefright gtest - r=rillian (2c20d374b7) - Bug 1185230 - p1: Added mp4 test case to libstagefright gtest - r=rillian (e848ebec16) - Bug 1216748 - p1. Added test case with different 'covr' sizes - r=rillian (1c0097dc85) - Bug 1224019 - Disable Stagefright subset gtests - r=jya, rs=botond (5ee3e6319c) - Bug 1227396: P2. Rename some MediaByteRange methods. r=cpearce (3d14aeb56b) - Bug 1227396: P3. Add IntervalSet::LastInterval method. r=gerald (96b8503a26) - Bug 1227396: P4. Add IntervalSet::Clear method. r=gerald (460ff0cd8f) - Bug 1227396: P5. Make Interval::Span ignore empty interval. r=gerald (ba16de0a91) - Bug 1227396: P6. Replace MediaByteBuffer with Interval<int64_t>. r=cpearce (eed5d5ca5c) - Bug 1227396: P7. Replace nsTArray<MediaByteRange> with dedicated MediaByteRangeSet object. r=cpearce (ea59b05aea) - Bug 1188150 - ADTSContainerParser gtest. r=jya (6a4a061647) - Bug 1227396: P8. Replace MediaByteRange with Interval<int64_t> typedef. r=cpearce (4d3e657b3b) - Bug 1219047 - Call rust mp4parser with logging. r=kinetik (70abf59813) - Bug 1220882 - Use LazyLogModule in MP4Metadata. r=kinetik (3443b56be3) - Bug 1220885 - Add telemetry probe for rust mp4parse success. r=kinetik p=ally (c012bd11bf) - Bug 1174356 - Add missing MediaData include. r=jya (bfe6182cfe) - Bug 1227396: P9. Remove unnecessary monitor. r=cpearce (4f156658c4) - Bug 1227396: P10: Remove stray function definition. r=cpearce (4c1641560c) - Bug 1227396: P11. Add IntervalSet::operator- operand. r=gerald (b56ceb52f4) - Bug 1227396: P12. Use MediaByteRangeSet capabilities to filter already processed data. r=cpearce (098d8852d9) - Bug 1227396: P13. Refactor how MP4 buffered range is calculated. r=cpearce (66711bd76f) - Bug 1227396: P14. Reduce memory usage of sample index for audio tracks. r=cpearce (e1c36bd791) - Bug 1197007: Turn off optimization for GMPLoaderImpl::Load. r=cpearce (5df0a365c7) - Bug 1208892 - Replace the uses of memset to clean up data in GMPLoader::Load with an inline memset; r=cpearce (ce4f3a3a64) - Bug 1187031: Move back to using USER_LOCKDOWN for the GMP sandbox policy on Windows. r=aklotz (53c39be48d) - Bug 1214018 - p1: Using vector to pass machine id - r=cpearce (19782ec5b3) - Bug 1214018 - p2: Import machine_id_mac.cc from Chromium repo - r=cpearce (000d4734ab) - Bug 1214018 - p3: Modify machine_id_mac for FF build - r=cpearce (41818ddc72) - Bug 1214018 - p4: Use machine_id_mac in GMPLoader - r=cpearce (4af56e5a6e) - Bug 1220326 - Wipe stack after Mac node id generation. r=jrmuizel (8c94ddab25) - Bug 1181718 - Fallible allocation of blank audio data - r=jya (7867407417) - Bug 1229963 - use UniquePtr<T[]> instead of nsAutoArrayPtr<T> in dom/media/; r=cpearce (796241f002) - Bug 1229965 - Use MakeUniqueFallible in blank decoder - r=jya (bac70f5c80) - Bug 1139256 - remove the assertion in AudioStream::GetPositionInFramesUnlocked(). See bug 1139256 comment 4 for the detail. r=kinetik. (6e386c7b00) - missing bits (1dc7b00da3) - Bug 1185115: P2. replace all stagefright::Vector with nsTArray. r=kentuckyfriedtakahe (de4e57b4cd) - Bug 1181223 - p2: Handle wrong saio/saiz size instead of assuming it is correct - r=rillian (59f5afa21f) - Bug 1138992: P1. Ignore ctts version if we have 0 samples in the table. r=kentuckyfriedtakahe (efb86ce02d) - Bug 1216845 - Check fallible allocations - r=rillian (fac4210e2a) - Bug 1229615 - Compare track counts between rust and stagefright. r=rillian (1b7ee2e4a8) - Bug 1219475 - Fix a comparison warning. r=gerald (2efe7f952d) - Bug 1181719 - p2: Check numBitsLeft before each getBits - r=rillian (f7bd7039ed) - Bug 1187067 - Null-check mLastTrack before dereferencing it - r=rillian (e2d99073ff) - Bug 1181220 - p2: Check if MIME types are valid - r=rillian (c1d1254f6d) - Bug 1185230 - p2: Store MPEG4Source::mTimescale as uint32_t - r=rillian (21d124ab25) - Bug 1207909 - p1: Fixed ALOGV statement - r=jya (0aef385b41) - Bug 1207909 - p2: Fixed a warning (uninitialized 'err') and typo - r=jya (a9c157feda) - partial remove of hack (59ca36fbd4) - Bug 1156505 - p2: Null-check sampleTable before use. r=rillian (ab18d1d939) - Bug 1181215 - p2: Better track verification - r=rillian (d61d5914aa) - Bug 1210319 - p1. Removed unused code - r=rillian (4c0b33fc59) - Bug 1210319 - p2. Minor intf clean-up, RIP trex - r=rillian (27aaf6ae80) - Bug 1229134: Check that memory allocation actually succeeded. r=gerald (b6587bc900) - Bug 1209388: [mp3] Remove AppleMP3Reader. r=kentuckyfriedtakahe (e81f265901) - Bug 1198576 - Remove MediaCodecReader. r=bwu (e867950ff4) - Bug 1191833: P1. Properly check webm mimetype against codec type. r=cpearce (9b27b8064a) - Bug 1229605: [MSE] Allow webm/audio independently of video. r=kentuckyfriedtakahe (7b79dfaf4c) - Bug 1229339: Partial revert of commit c15c9f37f. r=cpearce (90fa115b64) (967126c55b) * Notice: the changelog above may not always applicable to XULRunner code which K-Meleon uses. A goanna3 source tree that has kmeleon adaption patch applied is available here: https://github.com/roytam1/palemoon27/tree/kmeleon76
    1 point
  6. New build of post-deprecated Serpent/moebius for XP! * Notice: This repo will not be built on regular schedule, and changes are experimental as usual. ** Current moebius patch level should be on par with 52.9, but some security patches can not be applied/ported due to source milestone differences between versions. Test binary: Win32 http://o.rthost.win/basilisk/basilisk55-win32-git-20230506-12a6ce7d4-xpmod.7z Win64 http://o.rthost.win/basilisk/basilisk55-win64-git-20230506-12a6ce7d4-xpmod.7z repo: https://github.com/roytam1/basilisk55 Repo changes: - partly import changes from tenfourfox: #651: M1761233 M1687303 M1633019 M1797336 M1799748 M1801102 (fb91afbb4) (3e3ea09c5) - import from UXP: [No issue] Remove unmaintained WebGL conformance test suite. (733451d1) (31fa28a90) - import from UXP: Revert "Issue #61 - Place Skia in libxul" (260f8e15) (ee13d3f06) - import from UXP: Issue #61 - Follow-up: Fix gkmedias.dll link bustage related to Skia. (6e2f70a7) (16fdd9b67) - import from UXP: Issue #61 - Follow-up: Fix xul.dll link bustage related to Skia. (4584069f) (adadb23a7) - ported from UXP: No issue - Correct handling of async (arrow) functions declared inside constructors (ffe6d48a) (b7f8906a4) - ported from UXP: Issue #1451 - Split hunspell library out of xul. (cbbc15ad) (5a8817b80) - ported from UXP: Issue #1451 - Fix hunspell build bustage in FreeBSD. (d75c6c18) (40df3bb57) - ported from UXP: [Basilisk] Issue MoonchildProductions/UXP#1451 - Support hunspell as shared library (61874576) (32f0703cf) - ported from UXP: Issue #1691 - Part 1: Provide a way of associating a private value with a script or module. (1a6b3a82) (1022a6341) - import from UXP: Issue #1691 - Part 2: Implement call import and import meta in the parser. M1427610 M1484948 (a8ab41b4) (73ee4c0c4) - ported from UXP: Issue #1691 - Part 3: Finish implementing import meta. M1427610 (3f4985ce) (078117590) - ported from UXP: Issue #1691 - Part 4: Finish implementing call import. M1499140 (7a6dab0b) (34837b0fb) - ported from UXP: Issue #1691 - Part 5: Don't pre-create module metadata object when compiling. M1489477 (c965fbdd) (2c94edfc9) - import from UXP: Issue #1691 - Part 5b: Stop modules from entraining the top-level JSScript. M1489477 (5c09a3b3) (8672505da) - ported from UXP: Issue #1691 - Part 6a: Support private values which contain pointers to cycle-collected C++ objects M1342012 (1b811bd7) (77a0f0ffc) - ported from UXP: Issue #1691 - Part 6b: Initial browser support for dynamic import from module scripts. M1342012 Factor out script fetch options from script load request classes. M1480720 Remove support for version parameter from script loader. M1428745 (86e0057e) (abf9ba523) - ported from UXP: Issue #1691 - Part 6c: Fix a few issues with the earlier commits. Need PNK_CALL_IMPORT and PNK_IMPORT_META in the node children list or it will abort. When porting ScriptFetchOptions support, I had 2 constructors, I picked the wrong one. Missed adding the preference javascript.options.dynamicImport to all.js. (9a19e9d1) (ad255fdb7) - import from UXP: Issue #1691 - Part 6d: Optimize handling of internally-created Promise objects. M1358879 The patch uses a different test: PROMISE_FLAG_DEFAULT_REJECT_FUNCTION which doesn't exist in our codebase. It was added in this bug, which appears to be partly complete: M1313049 (c3daecc2) (91a0792e4) - import from UXP: Issue #1691 - Part 6e: Fix problems due to divergent codebases. This gets basic dynamic import working. Fix a problem in Part 5b where Mozilla used toGCThing() and we don't. Fix a problem in Part 4 where runtime() returns nullptr in our codebase since it runs on JS Helper thread. We need to get the runtime via runtimeFromAnyThread() instead. (e7d0b58e) (402ff385f) - import from UXP: Issue #1691 - Part 7a: Add a JS API to get the private value for the calling script or module. M1342012 (62be5421) (37a112394) - import from UXP: Issue #1691 - Part 7b: Make load request element optional. M1342012 (ba01d99e) (8597b9b31) - import from UXP: Issue #1691 - Part 7c: Refactor ModuleScript into ClassicScript class and LoadedScript base class so we can represent all scripts that can perform dynamic import. M1342012 (41eda05e) (19260f4b0) - import from UXP: Issue #1691 - Part 7d: Allow dynamic import in cases where there's no referencing script or module. Support dynamic import from classic scripts by creating ClassicScript objects and associating them with the compiled. M1342012 This patch is incomplete, some code in ScriptLoader::EvaluateScript() could not be applied for missing dependencies. Part 7e will apply the missing dependencies and finish the patch. (d5d7bb5e) (04c394101) - import from UXP: Issue #1691 - Part 7e: Dependencies for required to finish part 7d. M1331662 Reimplement EvaluateString using the ExecutionContext class. M1316078 Extract redudant code into StartOffThreadParseTask. Use an ExclusiveContext instead of a JSContext in XDR functions. Add a script decoder as a valid off-main-thread parse-task. M900784 Add nsJSUtils functions for encoding and decoding the bytecode. M1316081 Add XDRIncrementalEncoder to replace delazified LazyScript in the encoded XDR buffer. Add an XDRIncrementalEncoder instance on the ScriptSource. Expose a new JSAPI to incrementally encode bytecode when it is generated. M1334091 XDR function use the sourceObject instead of the enclosingScript as argument. (99347628) (06bf20588) - import from UXP: Issue #1691 - Part 7f: Split up compile and execute so we can use ClassicScript. M1342012 Refactor nsJSUtils::ExecutionContext to separate compilation and execution steps and allow extraction of compiled JSScript. M1366773 Move buffer argument from JS::StartIncrementalEncoding to JS::FinishIncrementalEncoding. (c69a47c3) (587bcc0be) - ported from UXP: Issue #1691 - Part 8: Fix --enable-debug builds and continue dynamic module import changes. M1342012 Support import from timeout handlers by associating the initiating script with the compiled JSScript. Fix error message that covers all import() failures that don't throw a JS exception. M1331662 Partial - Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. Left EvaluateString() in nsXBLProtoImplField.cpp until ExecutionContext errors can be fixed. (1109559a) (4e03b175f) - ported from UXP: Issue #1691 - Part 9: Make import() work when the active script is in another document. M1342012 Associate event handler with active script when they are compiled. (be916ef7) (d227ff583) - import from UXP: Issue #1691 - Part 10: Add and use method to annotate CC crashes with a class name. M1277260 Make PtrInfo into a class and mark it final. Also fix an erroneous debug assert because mBaseURL not set in one code path. (7e056a6f) (b83cfd9ba) - import from UXP: Issue #1691 - Part 11: Fix incorrect reference counting in ModuleScript class. (edb82ec9) (8c3bfc03c) - import from UXP: Issue #1691 - Part 12: Fix return value in ExecScript() and debug assert in ParseTask. M1331662 Replace nsJSUtils::EvaluateString calls by ExecutionContext scopes. ExecutionContext: The mRetValue is not used even though it is checked in various asserts. This is how it is in the Mozilla code even years later, only the passed in value is used. ParseTask: JoinDecode() and JoinCompile() run the same code but the type is different causing a debug assert when it checks the type Script vs ScriptDecode. (a892a759) (9fdf52734) - import from UXP: Issue #1691 - Part 13: Remove MUST_MATCH_TOKEN* macros in Parser. M1501928 This was helpful in debugging one of the crashes, the macros made debugging a nightmare. (bc895eba) (8d2458b94) - import from UXP: Issue #1691 - Part 14: Fix a debug assert and memory leak. PNK_IMPORT_META and PNK_CALL_IMPORT are binary nodes... They function similar to list nodes, so they worked there, but debug mode asserts because of the wrong type. M1342012 Fixed a memory leak due to missing code in SourceScriptObject::finalize(). Thanks FranklinDM! (79ea755b) (fa44d05ea) - import from UXP: Issue #1691 - Part 15: Make |new import()| a syntax error. M1508672 (f2b17915) (feb198e33) - import from UXP: Issue #1691 - Part 16: Dynamically imported modules can throw any value as an exception. M1508672 (1ac1e90b) (a527f407f) - import from UXP: Bug 1432272 - Make Fetch API use the global's base URL instead of the entry document's base URL (62e2fbc4) (54d5f6d94) - import from UXP: Issue #2218 - Part 1: Add nsExpirationTracker::NotifyEndTransaction(Locked) callbacks for subclasses to know when an aging iteration is complete (fa787f4a) (244c0c67c) - import from UXP: Issue #2218 - Part 2: Make SurfaceCache free ImageSurfaceCache objects outside of the lock (93644fd3) (8c8565325) - import from UXP: Issue #2073 - Follow-up: Use internal Move instead of std::move for consistency (b7f217e5) (518f36803) - import from UXP: Issue #2213 - Follow-up: Fix derieved Generator prototypes after previous change (a27e8bf9) (a8b11959d) - import from UXP: Issue #2173 - Follow-up: Use common ancestor of PNK_(OPT)DOT in ASTSerializer::expression (e31a058c) (b4697c603) - import from UXP: Issue #1285 - Follow-up: Correctly handle follow-up compilations of RegExp with named capturing groups (0a74a575) (f69d8b75c) - import from UXP: Issue #1691 - Follow-up: Fix CallSelfHostedFunction deprot introduced by Part 4. (45b34592) (d371dc0ff) - js/intl: fix INITIAL_CHAR_BUFFER_SIZE deprot (601ac53b2) - ported from UXP: Issue #2221 - Enable link-time optimization for Spidermonkey by default if building it shared. (b592711b) (7ae527e24) - import from UXP: Issue #1862 - Follow-up: Replace deprecated Harfbuzz functions with current ones. (51426d10) (ef0dd070b) - import from UXP: Issue #1691 - Follow-up: use error message with no arguments for bad import statements (73a99c15) (a71c910d8) - import from UXP: Issue #2142 - Fold BytecodeEmitter::checkTypeSet into BytecodeEmitter::emitCheck (014ebe8a) (029021f3c) - import from UXP: Issue #2142 - Extend newSuperCall for JSOP_SPREADSUPERCALL (6f56a494) (344b7d658) - import from UXP: Issue #2142 - Change InitPropertyOperation to accept a PropertyName directy and use DefineDataProperty (627d0da7) (ccbc00747) - import from UXP: Issue #2142 - Add predicate functions count_if and any_of to ListNode iterator (3b9b111b) (714b1b03b) - import from UXP: Issue #2142 - Ensure 'await' is always a restricted identifier when parsing modules (faed047e3) (a47d91de5) - import from UXP: Issue #2142 - Reduce calls to FindReservedWord when checking for forbidden identifiers during parsing (6abb54ff) (b9c4c5d9c) - import from UXP: Issue #2142 - Add internal option for fields, but always true (afa7bddc) (22b1cac6d) - ported from UXP: Issue #2142 - Implement syntax for public/private fields and computed field names (51db22ff) (d22df591a) - import from UXP: Issue #2142 - Improve TokenPos handling in BCE (ab7721e4) (9ba8f749e) - import from UXP: Issue #2142 - Add PropertyEmitter, ObjectEmitter, ClassEmitter, LexicalScopeEmitter, DefaultEmitter (1b89be6d) (356f75e7a) - import from UXP: Issue #2142 - Add FunctionEmitter, FunctionScriptEmitter, and FunctionParamsEmitter with current methods (e6335ded) (c7278ac50) - ported from UXP: Issue #2142 - Handle fields in derived classes (235ca779) (a99f5306e) - import from UXP: Issue #2142 - Factor out PropertyName parsing from Parser::propertyName() (014953c5) (4ddfdce78) - import from UXP: Issue #2142 - Implement ASI for fields (447261cf) (245dcb71a) - import from UXP: Issue #2142 - Use JSOP_INITPROP for field initializers (849ab441) (2e478fa3a) - import from UXP: Issue #2142 - Restrict contents of direct eval in fields (8c675001) (69b9b9d1e) - import from UXP: Issue #2142 - Fix several scoping issues in field initializers (bcb6203e) (df2cf3a69) - import from UXP: Issue #2142 - Pass through arguments in synthesized constructors for derived classes (1031b1fc) (730dc53bf) - import from UXP: Issue #2142 - Emit field keys in correct order (f374ab47) (d65e1f6f8) - import from UXP: Issue #2142 - Don't treat PNK_NAME specially emitAssignmentOrInit (f0b06f5a) (546b8e2df) - import from UXP: Issue #2142 - Set anonymous function name in field initializer (c2061149) (47e80f4fd) - import from UXP: Issue #2142 - Optimize .initializers scoping and emitter (e0b5528c) (cb4c73a77) - import from UXP: Issue #2142 - Support SuperProperty in field initializers (b187006a) (ebad409f2) - import from UXP: Issue #2142 - Parse and process static class fields (c3b19191) (6350b94e5) - ported from UXP: Issue #2142 - Track isFieldInitializer on JSScript instead of Scope (22a9d46e) (6bc92f0ed) - import from UXP: Issue #2142 - Implement class static block (1fac189a) (a9b66c108) - import from UXP: Issue #2142 - Remove the temporary fields option (ba9647a1) (adf87b5b6) - import from UXP: Issue #2097 - Implement logical assignment operators (10951a16) (99f72d0d0) - js/frontend: Parser: sync with UXP (fe66435bf) - ported from UXP: Issue #2097 - Handle Logical Assignment in Ion CFG (a7d8cecd) (08db3546a) - import from UXP: Issue #1691 - Follow-up: Fix videojs and potentially other problems. When rewriting the ExecutionContext code in ScriptLoader I accidentally removed some required code. (a1f787fc) (03cce35b2) - import from UXP: Issue #2225 - Implement Element.replaceChildren (ae50e9e0) (8921a9b24) - import from UXP: Issue #2142 - follow-up rev 51db22ff, removing `static` keyword from upstream force-push rev aa6d42e5fc..63a00fdd25 (fa52ac97) (41a3cbe0e) - import from UXP: Issue #1656 - remove vim control lines from js/src (e6ff567d) (72248e597) - import from UXP: Issue #1656 - Remove more vim control lines. (d388e478) (96020b803) - import from UXP: Issue #1656 - Remove more vim control lines. (c9b8a576) (9b84ad4a8) - ported from UXP: Issue #1656 - Remove more vim control lines. (2f117eec) (e7ff59ccc) - ported from UXP: Issue #1656 - Remove more vim control lines. (a39fd9e7) (7fc67fe8b) - import from UXP: Issue #1656 - Remove more vim control lines. (f1759b33) (71525b30b) - import from UXP: No Issue - Do not parse or return body for XHRs with HEAD/CONNECT method or content-length=0 (84eadbe3) (533c3fa24) - import from UXP: Issue #1691 - Follow-up: Ship dynamic module imports enabled by default. (5b7f259a) (12a6ce7d4)
    1 point
  7. We have too many shooters to count here in the USA (and yes, they are usually young). I only shoot off my mouth.
    1 point
  8. It’s quite a relief to me that you have treated Avast fairly even though you are embarked on a quest to find something better. (Good luck with your quest, but I’m still not convinced there is anything better for XP/Vista.) In fact you overstated the features of Avast Free 18.8 in your first paragraph: As your “Protection” screenshot shows, those features are locked in Avast Free, although I’m sure you had them with Avast Premier. (Malwarebytes Premium includes Ransomware Protection, but unfortunately that feature is inactive on XP/Vista. )
    1 point
  9. There was another shooter in Serbia yesterday, this time, a 21 year old. How 'bout we all start shooting each other?
    1 point
  10. Avast Free Antivirus The most used and very often recommended antivirus program for Windows XP is probably Avast Free Antivirus, and that for years. It is supposed to use advanced algorithms for detecting viruses, malware, spyware and other threats in real-time. The Core Shields are: File Shield, Behavior Shield, Web Shield and Email Shield (only Outlook and Thunderbird are supported). Furthermore, it is supposed to protect against rootkits, and it offers additionally a Software Updater and Wi-Fi Inspector. Avast Free Antivirus still protects Windows XP owners with regular virus definition updates. But Avast no longer provides program updates, new features, bug fixes, or support for Windows XP. It was tested by AV-TEST and achieved a detection rate of almost 100% in November and December 2018 (see below). Key Features: Real-time protection against malware and online threats. Automatic analysis of suspicious files with CyberCapture. Network scanning and Wi-Fi security with Wi-Fi Inspector. Behavioral monitoring with Behavior Shield. Comprehensive scanning with Smart Scan. Creating a Rescue Disk for emergency use. Browser cleanup to improve online security. Password management with autofill feature. Game Mode to optimize computer performance during gameplay. Homepage: https://www.avast.com/windows-xp-antivirus https://web.archive.org/web/20181120211126/https://www.avast.com/free-antivirus-download Version number: 18.8.4084.0 (18.8.2356) Date of release: 15.11.2018 System Requirements: A PC with 256 MB+ RAM and 1.5 GB of hard disk space. Avast Antivirus is compatible with Windows 11, 10, 8.1, 8, 7, Vista, XP SP3. Version history and release notes: Review: https://www.expertreviews.co.uk/software/1406757/avast-free-antivirus-2018-review-the-best-free-security-suite Tests: Avast in general: https://www.av-test.org/en/antivirus/home-windows/manufacturer/avast/ https://www.av-comparatives.org/tests/summary-report-2018/#avast Screenshot with the final test results from AV-TEST: Screenshot with the Product of the Year 2018 award from AV-Comparatives: Avast Free Antivirus 18.7 & 18.8 in detail: https://www.av-test.org/en/antivirus/home-windows/windows-10/december-2018/avast-free-antivirus-18.7--18.8-184902/ Download links: Online installer: https://install.avcdn.net/av/avast/iavs9x/avast_free_antivirus_setup_online.exe Offline installer: https://install.avcdn.net/iavs9x-xp/avast_free_antivirus_setup_offline.exe Avast VPS update for versions 12+: https://install.avcdn.net/vpsnitro/vpsupd.exe Avast Uninstall Utility (Avast Clear) in the correct version of 18.8.4084.0: https://web.archive.org/web/20181116091922if_/http://iavs9x.avg.u.avcdn.net/iavs9x/avastclear.exe How to uninstall Avast using Avast Clear: Sometimes it's not possible to uninstall Avast the standard way using the Add/Remove Programs in control panel. In this case, you can use the uninstallation utility Avast Clear: Download avastclear.exe on your desktop. Start Windows in Safe Mode. Execute the avastclear.exe. If you installed Avast in a different folder than the default, browse for it. (Note: Be careful! The content of any folder you choose will be deleted!). Click REMOVE. Restart your computer. Screenshots: I only used Avast Free Antivirus for a very short time. The version of Avast I had installed for years was Avast Premier. Unfortunately, I have a split opinion about Avast. On the one hand, it's great that Avast offers such a program for Windows XP at all, although this operating system was abandoned by Microsoft in 2014. And then also free of charge and with real-time protection. That is rather rare. Avast continues to roll out definition updates for this old version on a regular base. Furthermore, it has an excellent detection rate of almost 100%. On the other hand, I had various problems with Avast. Exceptions that were set for alarms of the background guard were simply ignored. Avast partly operates according to its own standards and does not always respect the user's settings, which I rather consider as disenfranchisement of the user. I don't like that, and it's simply a no go. Another bad habit of Avast, and unfortunately that of many other manufacturers, is to offer features that are apparently free. For example, SecureLine VPN. In fact, you have to pay for it. I find something like this to be more of a cost trap. That's why I didn't list this feature above. And I had serious problems to uninstall Avast completely. That was actually another no go. Furthermore, I don't like the disk space consumption of Avast products which is always very high. One main reason for that is probably the implementing of (unnecessary) features or those which only can be used if you pay for them. More details about problems in terms of Avast, you will find here: Despite all points of criticism, Avast Free Antivius is a program offering a very good protection and definitely an option for Windows XP, but I personally can't and won't recommend it here due to my reservations and experiences from the past. Kind regards, AstroSkipper
    1 point
  11. And now a general statement about this thread. I collect and present information about security programs for Windows XP here in the most structured way possible. I also share the knowledge I have acquired as a Windows XP user for 22 years now. I don't have to do all this, I am well supplied here with everything that is necessary to use Windows XP as securely as possible in the future. All I do here is preserving and sharing knowledge and information to help others in using Windows XP safely for as long as possible. Nothing more, nothing less!
    1 point
  12. D.Draker - we are on the same page on this one, "personality conflicts" aside. Honestly, we really are. But as I read kar1's comments, I have to agree with him as well. There is a "fine line" and it is all "relative" (or is "subjective" a better word?) on just when and where that line is crossed. I am not trying to go off-topic and it is kind of all tied together. For one, the future of Chrome on Win7 is likely (I reiterate "likely", this is purely speculative) going to follow the lead of what the XP Crowd has been doing since Chrome abandoned XP. ie, one or two years behind. There is decompiling, recompiling, backporting, debug, dependency checks, trial-and-error, et cetera - "software doesn't write itself". Will that workflow "work" for the Win7 Crowd? Only time will tell. It is all "speculative" as soon as the word "future" enters the scene. There is also "intended audience" if this Future Chrome on Win7 is going to gain true traction. What I perceive a "car" to be in the future may very well differ from what you perceive a "car" to be in the future - it's all speculative... and subjective... Secondly, I propose that we have to view the previously-mentioned browser and in turn the previously-mentioned web site the same way we (MSFN) views Extended Kernels. I guarantee that Microsoft does not view an Extended Kernel in the same way that the end-consumer views an Extended Kernel. And unless I'm mistaken, even MSFN Forum Rules do not allow "links" to Extended Kernels (I could be wrong on this, this falls back on "intended audience" and I do not use Extended Kernels nor follow those MSFN Threads). But MSFN does allow us all to use the phrase "extended kernel" even though it may be indexed by search engines. You see how that "fine line" comes into play? Does the Future of Chrome on Win7 force the intended audience to utilize an Extended Kernel? Or will traction only be gained by giving in to the demands of the Vanilla Win7 Crowd and the Future of Chrome on Win7 not require an Extended Kernel? Only time will tell... And have a great day, my friend, and note that I strived to word this reply without triggering any "personality conflicts"
    1 point
  13. It's not "hate", it's facts and the rules of the forum. But you have you right to go to your local court and try your luck with such opinions. And I am calm, where so you see I'm not ? I'm calm, cheerful, helping, sociable, friendly, a very nice person in general.
    1 point
  14. Did you do the tests yourself ? Do you always trust what they write in the papers ? Whom that testing website belongs to ? Where do they have their headquarters ? Ivan's bedroom ? We still shall continue to support our Italian friends, we are doing it for centuries, I mostly buy Italian clothes for almost half of a century already. She bought the PRO version of Vir.IT eXplorer for her weak PC. That having been said, I'm leaving, and leaving you with Mina7869 and legacysan, perhaps it's too cruel, sorry, I have no control over it. And I wish you a speedy recovery from your tiredness. I know a good Italian vitamins. Kind regards, D.Draker.
    1 point
  15. thank you everyone for the advise! I have decided to do y'all recommendation and leave the forum for awhile (I need a good break) I don't know if I will be coming back here after this but I need a break from the digital life (and focus more on real life) and to mina7601 I hope you keep being the good friend you have always been to me here anyways this is legacyfan signing out! bye all!
    1 point
  16. Do not post a link to that website and do not mention the types of things that are on that website. Even mentioning the names will cause those terms to be indexed by search engines and leading to here. So don't do it, use a generic term. I edited some posts to remove the specific terms and replace them with warez.
    1 point
  17. And they encourage us to move to Windows 11.......for God's sake why? It is as bad as listening to the drivel coming out of the mouths of people like Marjorie Taylor Greene and Lauren Boebert...only the id*** that voted them into office are likely to do that....and I say id***....now that is a poop moment! bookie32
    1 point
  18. Windows 7 was excellent, like it even better than XP.
    1 point
  19. Agreed! Operating Systems should not have "features" - NONE. If I want a "snipping tool", I'll add it myself from available third-party apps. If I want a "firewall", I'll add it myself from available third-party apps. If I want an antivirus "defender", I'll add it myself from available third-party apps. If I want a "candy crush" kiddy game, I'll add it myself from available third-party apps. If I want "3D" paint or printer apps, I'll add it myself from available third-party apps. If I want "people" contacts right on the taskbar, I'll add it myself from available third-party apps. If I want to "share" files, I'll add it myself from available third-party apps. If I want an all-in-one sytem-level "Cortana" tracking, I'll add it myself from available third-party apps. If I want to "sync" files, I'll add it myself from available third-party apps. If I want my Start Menu to feed me advertisements, I'll add it myself from available third-party apps. The Operating System should just "operate", bloatfree. Something like that...
    1 point
  20. I found the problem comes from win32k.sys 5.0.2195.7603, 5.0.2195.7624, 5.0.2195.7636, 5.0.2195.7640 has same problem X3 Externded kernel v5.0.2195.7641 is based on 7640 https://forums.moneysavingexpert.com/discussion/5174319/font-problems-in-vista-after-windows-update-kb3013455
    1 point
×
×
  • Create New...