Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Commit f3f9476

Browse files
committed
feat: Update changelog for v0.1.5 and change sourceURL to sidestore.json
1 parent d750eaf commit f3f9476

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.1.5
4+
- Fix issue with importing recommended sources
5+
36
## v0.1.4
47
- Add functionality to import and export sources from common signers
58
- Fix importing sidestore repositories

lib/database_helper.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class DatabaseHelper {
8686
"https://raw.githubusercontent.com/asrma7/LiveContainer-installer/main/screenshots/100.png",
8787
"website": "https://github.com/asrma7/LiveContainer-Installer",
8888
"sourceURL":
89-
"https://raw.githubusercontent.com/asrma7/LiveContainer-Installer/main/source.json",
89+
"https://raw.githubusercontent.com/asrma7/LiveContainer-Installer/main/sidestore.json",
9090
"description": "Official Repo of LcInstaller",
9191
"tintColor": "#3333FF",
9292
});

lib/screens/add_source_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ class _AddSourcePageState extends State<AddSourcePage> {
212212
),
213213
borderRadius: BorderRadius.circular(20),
214214
onPressed: () {
215-
Navigator.pop(context, [repo["sourceURL"]]);
215+
Navigator.pop(context, [repo["sourceURL"]!]);
216216
},
217217
child: const Text("Add"),
218218
),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 0.1.4+1
19+
version: 0.1.5+1
2020

2121
environment:
2222
sdk: ^3.9.2

0 commit comments

Comments
 (0)