-
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (56 loc) · 2.23 KB
/
Copy pathrelease.yml
File metadata and controls
69 lines (56 loc) · 2.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Create Release
permissions:
contents: write
# Commenting out trigger to disable automatic releases
#on:
# push:
# tags:
# - 'v*'
on:
workflow_dispatch: # Only manual triggers now
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Addon Zip
run: |
cd service.libreelec.backupper
zip -r ../service.libreelec.backupper-1.1.0.zip *
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: service.libreelec.backupper-1.1.0.zip
name: LibreELEC Backupper v1.1.0
body: |
## What's New in 1.1.0 (March 13, 2025)
Major update focused on improving user experience and reliability:
### UI and Notifications
- Beautiful new UI with enhanced notifications and progress reporting
- Real-time file size display in notifications with addon icon
- Improved progress reporting with current/total size during backup
- Added human-readable file size formatting (KB, MB, GB)
### Functionality
- Fixed issue with addon not being clickable to run
- Added script extension point to ensure addon can be run directly
- Improved main menu functionality
- Enhanced Test Connection functionality to work directly with UI values
- Added progress dialog during connection testing
### Service and Background Operations
- Improved service mode operation
- Added proper background service functionality
- Enhanced scheduled backup reliability
- Completely separated service and script functionality
- Added dedicated service.py file for background operations
- Simplified addon.py to focus only on user interactions
### Installation
1. Download the zip file
2. Install from Kodi > Add-ons > Install from zip file
3. Configure backup location and schedule in settings
### Note
Some features are marked as untested in this release. Please check the documentation for details.
draft: false
prerelease: false