Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add admin popup on Windows when running install-unity #33

Open
wants to merge 36 commits into
base: windows
Choose a base branch
from

Commits on Oct 27, 2022

  1. Configuration menu
    Copy the full SHA
    9bc9122 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2022

  1. Configuration menu
    Copy the full SHA
    04c1451 View commit details
    Browse the repository at this point in the history
  2. Use TargetFramework instead of TargetFrameworks so the "dotnet --fram…

    …ework" option can be omitted
    sttz committed Nov 26, 2022
    Configuration menu
    Copy the full SHA
    2239d78 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2023

  1. Configuration menu
    Copy the full SHA
    c4be72e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3168dfb View commit details
    Browse the repository at this point in the history
  3. [Mac] Update Android packages for 2023.1

    - Updated across the board, including JDK and newly adding Android SDK Command Line Tools
    - NDK is now installed from a DMG but needs some additional processing:
    -- Added destination support to dmg packages, copies only app bundle content from dmg
    -- Made reanmeFrom/To generic instead of only supported for zip
    -- Support moving a directory in place of one of its parents (e.g. /path/to/source to /path/to)
    sttz committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    fc66031 View commit details
    Browse the repository at this point in the history
  4. [Mac] Fix Copy sudo fallback moving instead of copying, use -a instea…

    …d of -R (now same as Hub is using)
    sttz committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    ae89567 View commit details
    Browse the repository at this point in the history
  5. [Mac] Fix exception when cleaning up after upgrading an installation …

    …at "/Applications/Unity"
    sttz committed Feb 5, 2023
    Configuration menu
    Copy the full SHA
    e7f9c43 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9937d9f View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2023

  1. Configuration menu
    Copy the full SHA
    8688aa4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d78a22 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Switch to .Net 7

    sttz committed May 4, 2023
    Configuration menu
    Copy the full SHA
    aecb0f5 View commit details
    Browse the repository at this point in the history
  2. Use Unity's official Release API instead of scraping the website, oth…

    …er improvements
    
    - Reduces the amounts of requests and data loaded, can only load new releases instead of everything
    - Releases should appear quicker, in cases where Unity is slow to update their archive
    - Previously missing packages metadata (Documentation, Android components, language packs) is now provided by Unity
    - Legacy scraper and ini system can still be used for unpublished Unity releases
    - Platform / architecture is now split, added --arch option
    - Added --clear-cache option to force clearing the cache at start
    - Added --redownload option to force redownloading all files
    - Optimize detecting current architecture, RuntimeInformation.OSArchitecture now works correctly on .Net 7
    - Optimize finding Unity installations by using native Plist parser
    - Improve handling of already downloaded files
    sttz committed May 4, 2023
    Configuration menu
    Copy the full SHA
    f4da8d6 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. Build configuration changes

    sttz committed May 8, 2023
    Configuration menu
    Copy the full SHA
    ce05309 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c9439a0 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2023

  1. Bump to 2.12.0, update changelog

    sttz committed May 13, 2023
    Configuration menu
    Copy the full SHA
    d4e35fc View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. Configuration menu
    Copy the full SHA
    e913af6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac79827 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d85f4a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    70918d3 View commit details
    Browse the repository at this point in the history
  5. Revert kb change

    ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    135d492 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c4a4bac View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    42d4823 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5a6bbdc View commit details
    Browse the repository at this point in the history
  9. Fixed misc

    ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    39adee4 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    069df99 View commit details
    Browse the repository at this point in the history
  11. Fixed case in filename

    ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    20deaf6 View commit details
    Browse the repository at this point in the history
  12. Fix capitalization

    sttz authored and ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    35e5715 View commit details
    Browse the repository at this point in the history
  13. [Win] Path handling updates

    - Check we're not running as X86 on a non-X86 system to avoid using the "Program Files (x86)" folder
    - Default to installing directly in "Program Files" and not using the Unity Hub install location (like on macOS)
    - Use "{ProrgamFiles}" variable in configuration to make settings more portable
    sttz authored and ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    213418e View commit details
    Browse the repository at this point in the history
  14. [Win] Fix check that is always true, actually check if Unity editor e…

    …xe exists as expected path
    sttz authored and ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    07b91e6 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8b284de View commit details
    Browse the repository at this point in the history
  16. [Win] Fix returning default instead of Task leading to null reference…

    … exception
    sttz authored and ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    c0cc6b3 View commit details
    Browse the repository at this point in the history
  17. [Win] Fix CompleteInstall not returning the right path to the install…

    …ed Unity exe
    sttz authored and ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    c4375bc View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    08663eb View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    9375839 View commit details
    Browse the repository at this point in the history
  20. Fix rebase errors

    ewilh committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    7a39798 View commit details
    Browse the repository at this point in the history