Skip to content

Releases: ubports/ubports-installer

UBports Installer 0.11.2

Choose a tag to compare

@Flohack74 Flohack74 released this 01 Jul 12:27
ba7939f

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

What's Changed

  • Adjust default resolution
  • Rework menu bar: About menut put to the end
  • New core:unpack_move action to make some ports easier to install
  • Update minor dependencies

Full Changelog: 0.11.1...0.11.2

UBports Installer 0.11.1

Choose a tag to compare

@Flohack74 Flohack74 released this 24 Jun 18:23
5db06c1

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

What's Changed

  • Hotfix: External links were broken

Full Changelog: 0.11.0...0.11.1

UBports Installer 0.11.0

Choose a tag to compare

@Flohack74 Flohack74 released this 14 Jun 06:19

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

What's Changed

  • Bumped a lot of dependencies for mostly security updates
  • Small improvements for PostmarketOS
  • Cut out OPENCUTS reporting and replaced it with Github ticket creation
  • AppImage works again, also deb package with KDE under certain Linux distros is fixed

Full Changelog: 0.10.0...0.11.0

UBports Installer 0.10.0

Choose a tag to compare

@Flohack74 Flohack74 released this 24 Apr 20:46
2e3f4cc

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

What's Changed

  • We are finally not beta anymore! Hoorraay!
  • Reset internal state after install so multiple devices can be installed consecutively without breaking them (@maciek134)
  • Installer does not think its not stable release when it is (@maciek134)
  • Downgraded progressive downloader, the newer version had issues with big files (@maciek134)

Full Changelog: 0.9.10...0.10.0

UBports Installer 0.9.10-beta

Choose a tag to compare

@Flohack74 Flohack74 released this 28 Mar 12:33
ee546ee

A snap package can be installed by running snap install ubports-installer --beta on any Linux distribution.

What's Changed

  • plugins: lineage: select latest build instead of oldest (@amartinz)
  • Log environment on installer startup (@amartinz)
  • Drop setup-dev script (@amartinz)
  • Some UI fixes (@amartinz)
  • Bump to new versions, due to security alerts (@Flohack74)

Full Changelog: 0.9.9-beta...0.9.10-beta

UBports Installer 0.9.9-beta

Pre-release

Choose a tag to compare

@Flohack74 Flohack74 released this 19 Feb 15:38

A snap package can be installed by running snap install ubports-installer --beta on any Linux distribution.

What's Changed

  • Sort channels differently and default to most stable one by @maciek134 in #3106

Full Changelog: 0.9.8-beta...0.9.9-beta

UBports Installer 0.9.8-beta

Pre-release

Choose a tag to compare

@NeoTheThird NeoTheThird released this 02 Nov 10:33

A snap package can be installed by running snap install ubports-installer --beta on any Linux distribution.

image

What's Changed

New Contributors

Full Changelog: 0.9.7-beta...0.9.8-beta

UBports Installer 0.9.7-beta

Choose a tag to compare

@Flohack74 Flohack74 released this 07 Sep 19:58
60f92bc

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

grafik

What's Changed

  • Display provided link from user action
  • Add template literal to dynamically set image src
  • Animation: use "squares" instead of "tsparticles"
  • plugins: initial postmarketOS support

New Contributors

  • @calebcff made their first contribution in #2511

Full Changelog: 0.9.6-beta...0.9.7-beta

Developer notes

This adds support for two additional reboot modes for adb

      - actions:
          - adb:reboot:
              to_state: "download"

          - adb:reboot:
              to_state: "edl"

UBports Installer 0.9.6-beta

Choose a tag to compare

@mariogrip mariogrip released this 31 Jul 15:42
984caef

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

image

What's Changed

New Contributors

Full Changelog: 0.9.5-beta...0.9.6-beta

Developer notes

This adds support for fastboot dynamic partitions

  - actions:
      - fastboot:create_logical_partition:
          partition: "partition_name"
          size: 3221225472

      - fastboot:delete_logical_partition:
          partition: "partition_name"

      - fastboot:resize_logical_partition:
          partition: "partition_name"
          size: 3221225472

UBports Installer 0.9.5-beta

Choose a tag to compare

@NeoTheThird NeoTheThird released this 25 Mar 09:49

A snap package can be installed by running snap install ubports-installer on any Linux distribution.

You can help us test this release on UBports OPEN-CUTS.

Release notes

This release adds some new actions to make sure the UBports Recovery on the devices are capable of installing Ubuntu Touch. Some additional assertion actions make installation instructions more robust. The generated bug reports have been restructured a little to make them more useful for our developers and easier to understand for users looking for known issues. Last but not least, error handling for empty system image server channels and adb connection issues has been improved.

UBports Installer

Changelog

0.9.4-beta

0.9.5-beta

Full Changelog: 0.9.3-beta...0.9.5-beta

Notes to Developers

You may use the newly added adb:assert_prop and fastboot:assert_var actions to assert the value of adb getprop or fastboot getvar. RegEx matching is supported as well. This allows us to verify that devices are actually running a working UBports Recovery, by checking for the ro.ubuntu.recovery implemented in ubports/halium_bootable_recovery#22. As a quick shorthand, you can supply the verify_recovery option to your systemimage:install step, so you don't have to touch adb:assert_prop directly for this.

Syntax Example:

        - systemimage:install:
              verify_recovery: true
        - adb:assert_prop:
            prop: "ro.ubuntu.recovery"
            value: "true"
        - fastboot:assert_var:
            variable: "ro.ubuntu.recovery"
            value: "true"
        - adb:assert_prop:
            prop: "ro.ubuntu.recovery"
            regex:
              pattern: "true"
              flags: "i"
        - fastboot:assert_var:
            variable: "ro.ubuntu.recovery"
            regex:
              pattern: "true"
              flags: "i"