Skip to content

Commit 1f08c7d

Browse files
committed
Merge branch 'develop'
2 parents b70be8c + 4d55db5 commit 1f08c7d

File tree

5 files changed

+8
-53
lines changed

5 files changed

+8
-53
lines changed

.github/workflows/releases.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,7 @@ jobs:
3232
with:
3333
files: /tmp/${{ github.event.repository.name }}-${{ steps.tag.outputs.tag }}.zip
3434

35-
- name: Get final asset URL
36-
id: asset_url
37-
run: |
38-
URL="$(curl -s -I -o /dev/null -w "%{redirect_url}" "${{ fromJson(steps.create_release.outputs.assets)[0].browser_download_url }}")"
39-
echo "final_url=${URL}" >> "${GITHUB_OUTPUT}"
40-
41-
- name: Generate build provenance attestation
42-
uses: johnbillion/[email protected]
35+
- name: Build provenance attestation
36+
uses: actions/attest-build-provenance@v2
4337
with:
44-
zip-path: /tmp/${{ github.event.repository.name }}-${{ steps.tag.outputs.tag }}.zip
45-
zip-url: ${{ steps.asset_url.outputs.final_url }}
38+
subject-path: /tmp/${{ github.event.repository.name }}-${{ steps.tag.outputs.tag }}.zip

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#### [unreleased]
22

3+
#### 12.12.1 / 2025-02-12
4+
* revert uninstall back to Freemius
5+
36
#### 12.12.0 / 2025-02-10
47
* save source with `Additions`
58
* update `Additions::deduplicate()`

git-updater.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Plugin Name: Git Updater
1313
* Plugin URI: https://git-updater.com
1414
* Description: A plugin to automatically update GitHub hosted plugins, themes, and language packs. Additional API plugins available for Bitbucket, GitLab, Gitea, and Gist.
15-
* Version: 12.12.0
15+
* Version: 12.12.1
1616
* Author: Andy Fragen
1717
* License: MIT
1818
* Domain Path: /languages

src/Git_Updater/GU_Freemius.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function gu_fs() {
9191
$gu_fs->add_filter( 'plugin_icon', [ $this, 'add_icon' ] );
9292
$gu_fs->add_filter( 'is_submenu_visible', [ $this, 'is_submenu_visible' ], 10, 2 );
9393
$gu_fs->add_filter( 'permission_list', [ $this, 'permission_list' ] );
94-
// $gu_fs->add_action( 'after_uninstall', [ $this, 'uninstall_cleanup' ] );
94+
$gu_fs->add_action( 'after_uninstall', [ $this, 'uninstall_cleanup' ] );
9595
// $gu_fs->add_filter( 'show_deactivation_feedback_form', '__return_false' );
9696

9797
// Hide all Freemius menus with filter.

uninstall.php

-41
This file was deleted.

0 commit comments

Comments
 (0)