mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 07:48:40 +00:00
bump version
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
This commit is contained in:
parent
57c73a86ac
commit
20a2d61751
6 changed files with 22 additions and 10 deletions
|
|
@ -1,5 +1,13 @@
|
|||
# Changelog
|
||||
|
||||
## 0.0.80
|
||||
|
||||
- Share images/videos directly from other applications
|
||||
- More customization options in the appearance settings
|
||||
- Improved UI for changing the display time of images
|
||||
- Several minor UI improvements
|
||||
- Several bug fixes
|
||||
|
||||
## 0.0.74
|
||||
|
||||
- Improving uploading speed
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ final lockRetransStore = Mutex();
|
|||
/// errors or network changes.
|
||||
class ApiService {
|
||||
ApiService();
|
||||
final String apiHost = kReleaseMode ? 'api.twonly.eu' : '192.168.178.88:3030';
|
||||
final String apiHost = kReleaseMode ? 'api.twonly.eu' : '192.168.2.178:3030';
|
||||
// final String apiHost = kReleaseMode ? 'api.twonly.eu' : 'dev.twonly.eu';
|
||||
final String apiSecure = kReleaseMode ? 's' : '';
|
||||
|
||||
|
|
@ -182,6 +182,7 @@ class ApiService {
|
|||
|
||||
Future<void> _onDone() async {
|
||||
Log.info('websocket closed without error');
|
||||
_reconnectionDelay = 60 * 2; // the server closed the connection...
|
||||
await onClosed();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -163,7 +163,7 @@ Future<void> handleIntentSharedFile(
|
|||
|
||||
switch (file.type) {
|
||||
case SharedMediaType.URL:
|
||||
await handleIntentUrl(context, Uri.parse(file.value!));
|
||||
// await handleIntentUrl(context, Uri.parse(file.value!));
|
||||
case SharedMediaType.IMAGE:
|
||||
var type = MediaType.image;
|
||||
if (file.value!.endsWith('.gif')) {
|
||||
|
|
|
|||
|
|
@ -237,9 +237,9 @@ class _ShareImageView extends State<ShareImageView> {
|
|||
),
|
||||
),
|
||||
floatingActionButton: SizedBox(
|
||||
height: 148,
|
||||
height: 168,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 20),
|
||||
padding: const EdgeInsets.only(bottom: 20, right: 20),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.end,
|
||||
children: [
|
||||
|
|
@ -252,7 +252,7 @@ class _ShareImageView extends State<ShareImageView> {
|
|||
clipBehavior: Clip.hardEdge,
|
||||
decoration: BoxDecoration(
|
||||
border:
|
||||
Border.all(color: context.color.primary, width: 3),
|
||||
Border.all(color: context.color.primary, width: 2),
|
||||
color: context.color.primary,
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
|
|
@ -304,9 +304,9 @@ class _ShareImageView extends State<ShareImageView> {
|
|||
const EdgeInsets.symmetric(vertical: 10, horizontal: 30),
|
||||
),
|
||||
backgroundColor: WidgetStateProperty.all<Color>(
|
||||
mediaStoreFutureReady || widget.selectedGroupIds.isEmpty
|
||||
? Theme.of(context).colorScheme.secondary
|
||||
: Theme.of(context).colorScheme.primary,
|
||||
!mediaStoreFutureReady || widget.selectedGroupIds.isEmpty
|
||||
? context.color.onSurface
|
||||
: context.color.primary,
|
||||
),
|
||||
),
|
||||
label: Text(
|
||||
|
|
|
|||
|
|
@ -217,7 +217,10 @@ class MemoriesViewState extends State<MemoriesView> {
|
|||
}
|
||||
|
||||
Future<void> open(
|
||||
BuildContext context, List<MemoryItem> galleryItems, int index) async {
|
||||
BuildContext context,
|
||||
List<MemoryItem> galleryItems,
|
||||
int index,
|
||||
) async {
|
||||
await Navigator.push(
|
||||
context,
|
||||
PageRouteBuilder(
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ description: "twonly, a privacy-friendly way to connect with friends through sec
|
|||
|
||||
publish_to: 'none'
|
||||
|
||||
version: 0.0.79+79
|
||||
version: 0.0.80+80
|
||||
|
||||
environment:
|
||||
sdk: ^3.6.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue