Preparation for the release
Android, Linux, Web: build & deploy / Build and release Android APK (push) Canceled after 0s
Tests / Detect changed files (push) Canceled after 0s
Windows: build & deploy / Windows build (push) Canceled after 0s
Tests / calculator_widget test (push) Canceled after 0s
Tests / Integration testing (push) Canceled after 0s
@@ -27,6 +27,11 @@ jobs:
|
||||
dart pub global activate melos
|
||||
dart pub global activate vector_graphics_compiler
|
||||
|
||||
- name: Generate optimized icons (workaround for a bug of melos on Windows)
|
||||
run: |
|
||||
dart run vector_graphics_compiler --input-dir assets/app_icons
|
||||
dart run vector_graphics_compiler --input-dir assets/property_icons
|
||||
|
||||
- name: Bootstrap
|
||||
run: melos bootstrap
|
||||
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
Introducing Converter NOW 4.0!
|
||||
- Finished the migration to Material You
|
||||
- Dynamic theming support on Android 12+
|
||||
- New icons
|
||||
- Translations updates
|
||||
- Bug fixes and general improvements
|
||||
|
||||
What do you think about Converter NOW? Rate us! ✔️
|
||||
@@ -0,0 +1,8 @@
|
||||
Ecco Converter NOW 4.0!
|
||||
- Terminata la migrazione al Material You
|
||||
- Supporto al tema dinamico su Android 12+
|
||||
- Nuove icone
|
||||
- Aggiornamenti alle traduzioni
|
||||
- Bug fix e miglioramenti generali
|
||||
|
||||
Cosa ne pensi di Converter NOW? Recensiscici! ✔️
|
||||
@@ -2,7 +2,7 @@
|
||||
<component type="desktop-application">
|
||||
<id>io.github.ferraridamiano.ConverterNOW</id>
|
||||
|
||||
<name>Converter NOW</name>
|
||||
<name>Converter NOW: Unit Converter</name>
|
||||
<summary>A simple, immediate and fast unit converter!</summary>
|
||||
<url type="homepage">https://github.com/ferraridamiano/ConverterNOW</url>
|
||||
<url type="bugtracker">https://github.com/ferraridamiano/ConverterNOW/issues</url>
|
||||
@@ -28,20 +28,12 @@
|
||||
<li>🚀 It is fast and immediate: just start typing and immediately you have the real-time conversion with all the other units of measurement</li>
|
||||
<li>🖌️ It is customizable: the units can be reorganized according to your priorities and your use</li>
|
||||
<li>🔢 It integrates a calculator that let you do the calculations in every page</li>
|
||||
<li>💰 We daily update the value of the currencies</li>
|
||||
<li>💰 Currency exchange rates updated daily</li>
|
||||
<li>🎨 Dynamic theming based on your device settings</li>
|
||||
<li>⚫⚪ Choose your favourite theme: dark and white theme</li>
|
||||
<li>📱 It adapts to screens of all sizes</li>
|
||||
<li>💯 It is Open Source!</li>
|
||||
<li>📱🖥️ Multiplatform: available for Android, Web, Linux and Windows</li>
|
||||
<li>💯 It is free, no ads, no data collection, no permissions (just Internet to update currency conversions) and first of all it is open source!</li>
|
||||
</ul>
|
||||
<p>
|
||||
Check the repository on GitHub: https://github.com/ferraridamiano/ConverterNOW
|
||||
</p>
|
||||
<p>
|
||||
We also have a Web App! 🖥️ Check it out here: https://ferraridamiano.github.io/ConverterNOW
|
||||
</p>
|
||||
<p>
|
||||
🌍 Converter NOW is free, without ads, it does not require any permission and we don't collect your data. If you believe in this project and want to support the developer make a donation: https://www.paypal.me/DemApps 🌍 Thanks to you we can always stay on 🔝
|
||||
</p>
|
||||
<p>
|
||||
Converter NOW can convert 200+ units of mesurement and 30+ currencies 🎉🎉
|
||||
</p>
|
||||
@@ -75,19 +67,29 @@
|
||||
<screenshots>
|
||||
<screenshot type="default">
|
||||
<caption>Easily convert units. It's reliable, customizable, open source.</caption>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/desktop_1.png</image>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/1.jpg</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<caption>With an integrated calculator</caption>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/desktop_2.png</image>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/2.jpg</image>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<caption>And a dynamic search box</caption>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/desktop_3.png</image>
|
||||
<image>https://raw.githubusercontent.com/ferraridamiano/ConverterNOW/master/screenshots/3.jpg</image>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<content_rating type="oars-1.0"/>
|
||||
<releases>
|
||||
<release version="4.0.0" date="2023-07-02">
|
||||
<description>
|
||||
<p>Introducing Converter NOW 4.0!</p>
|
||||
<ul>Finished the migration to Material You</ul>
|
||||
<ul>Dynamic theming support on supported desktop environments</ul>
|
||||
<ul>New icons</ul>
|
||||
<ul>Translations updates</ul>
|
||||
<ul>Bug fixes and general improvements</ul>
|
||||
</description>
|
||||
</release>
|
||||
<release version="3.2.1" date="2022-10-01">
|
||||
<description>
|
||||
<ul>
|
||||
|
||||
@@ -12,9 +12,9 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
#Needed for calculator computation
|
||||
decimal: ^2.3.0
|
||||
decimal: ^2.3.2
|
||||
#Needed for the state management
|
||||
provider: ^6.0.3
|
||||
provider: ^6.0.5
|
||||
#Needed for app translation
|
||||
translations:
|
||||
path: ../translations
|
||||
@@ -23,7 +23,7 @@ dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
test: ^1.21.4
|
||||
flutter_lints: ^2.0.0
|
||||
flutter_lints: ^2.0.1
|
||||
|
||||
flutter:
|
||||
uses-material-design: true
|
||||
|
||||
@@ -8,10 +8,10 @@ environment:
|
||||
|
||||
dependencies:
|
||||
# Needed for downloading exchange rates from internet
|
||||
http: ^0.13.4
|
||||
http: ^0.13.5
|
||||
# Needed for DateFormat
|
||||
intl: ^0.17.0
|
||||
|
||||
dev_dependencies:
|
||||
lints: ^2.0.0
|
||||
lints: ^2.0.1
|
||||
test: ^1.16.0
|
||||
|
||||
@@ -2,7 +2,7 @@ name: converterpro
|
||||
description: Unit and currencies converter
|
||||
publish_to: none
|
||||
|
||||
version: 3.2.1+37
|
||||
version: 4.0.0+38
|
||||
|
||||
environment:
|
||||
sdk: ">=2.15.0 <3.0.0"
|
||||
@@ -13,27 +13,27 @@ dependencies:
|
||||
flutter_localizations:
|
||||
sdk: flutter
|
||||
# App dynamic color theme
|
||||
dynamic_color: ^1.5.4
|
||||
dynamic_color: ^1.6.2
|
||||
# Native splash screen on Android
|
||||
flutter_native_splash: ^2.2.16
|
||||
# For svg icons
|
||||
flutter_svg: ^2.0.0+1
|
||||
# App logo in drawer
|
||||
google_fonts: ^3.0.1
|
||||
google_fonts: ^4.0.3
|
||||
# Navigation
|
||||
go_router: ^5.2.4
|
||||
go_router: ^6.0.4
|
||||
# Translations
|
||||
intl: ^0.17.0
|
||||
# State management
|
||||
provider: ^6.0.3
|
||||
provider: ^6.0.5
|
||||
# Android app shortcuts
|
||||
quick_actions: ^1.0.0
|
||||
quick_actions: ^1.0.1
|
||||
# Store the customizations and the latest currencies convertions
|
||||
shared_preferences: ^2.0.15
|
||||
shared_preferences: ^2.0.17
|
||||
# Unit conversion
|
||||
units_converter: 2.0.1
|
||||
# Open external pages such as GitHub repo, Play Store, etc
|
||||
url_launcher: ^6.1.5
|
||||
url_launcher: ^6.1.9
|
||||
# Load optimized svg icons
|
||||
vector_graphics: ^1.0.1
|
||||
# Resize window during testing
|
||||
@@ -56,7 +56,7 @@ dependencies:
|
||||
dev_dependencies:
|
||||
test: ^1.21.4
|
||||
flutter_lints: ^2.0.1
|
||||
msix: ^3.6.3
|
||||
msix: ^3.7.0
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
integration_test:
|
||||
|
||||
|
After Width: | Height: | Size: 176 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 235 KiB |
|
Before Width: | Height: | Size: 69 KiB |
|
Before Width: | Height: | Size: 63 KiB |
@@ -1,5 +1 @@
|
||||
<svg width="512" height="512" version="1.1" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m512 256a256 256 0 0 1-256 256 256 256 0 0 1-256-256 256 256 0 0 1 256-256 256 256 0 0 1 256 256z" fill="#f00"/>
|
||||
<path d="m78.1 413 51.7-0.0266 160-159h-69.1l-90.2 104c0.283-11.2 0.567-22.3 1.17-29.9 0.603-7.55 1.53-11.5 2.65-15.2s2.44-7.34 4.04-10.9c1.59-3.52 3.46-6.96 5.5-10.2 2.03-3.28 4.23-6.4 6.41-9.17 2.18-2.77 4.35-5.2 7.09-7.78 2.74-2.58 6.05-5.31 9.41-7.72 3.36-2.41 6.77-4.49 10.3-6.34 3.52-1.85 7.16-3.48 10.6-4.77s6.58-2.25 10.3-3.12 8.03-1.66 11.4-2.09c3.36-0.432 5.77-0.509 56.1-0.512 50.3-3e-3 149 0.069 247 0.141l-2.41-51.9s-4.62-0.0866-4.62-0.0866-298-6e-3 -298-6e-3c-4.52 0.624-9.03 1.25-14.1 2.26-5.08 1.01-10.7 2.42-16.7 4.36s-12.2 4.41-17.4 6.77c-5.21 2.36-9.4 4.61-14 7.51-4.6 2.9-9.61 6.46-14.1 10.2-4.53 3.7-8.57 7.54-12.4 11.4-3.81 3.87-7.39 7.77-10.3 11.4-2.95 3.67-5.28 7.11-7.5 10.7-2.22 3.62-4.33 7.41-6.34 11.1-2.01 3.73-3.92 7.4-5.54 11.2-1.62 3.83-2.96 7.81-4.05 11.7-1.09 3.86-1.92 7.61-2.75 11.4-0.832 3.83-1.66 7.74-2.16 11.2-0.499 3.45-0.665 6.44-0.799 22-0.134 15.5-0.234 43.6-0.335 71.6l-5e-5 -2.7e-4z" fill="#fff"/>
|
||||
<path d="m273 194h76.9s85.9-86.1 85.9-86.1c0.441-1.09 0.881-2.19 1.16-3.42 0.277-1.24 0.39-2.61 0.14-4.04-0.251-1.43-0.866-2.91-1.5-4.16-0.633-1.26-1.28-2.3-2.4-3.19-1.12-0.895-2.7-1.65-5.31-1.97-2.61-0.32-6.25-0.206-10.6 0.107-4.32 0.313-9.33 0.826-17 1.79-7.65 0.969-17.9 2.39-27.5 3.86s-18.4 2.98-26.2 4.53c-7.83 1.56-14.6 3.17-20.9 4.79s-11.9 3.25-18 4.92c-6.1 1.67-12.6 3.39-18.5 5.21-5.85 1.83-11 3.77-16.8 5.98-5.76 2.21-12.1 4.69-18.6 7.35s-13.3 5.49-19.4 8.29-11.4 5.59-16.1 8.34c-4.66 2.75-8.64 5.47-12.6 8.2l9.62-0.692c5.75-0.155 11.5-0.31 17.2-0.384 5.7-0.074 11.4-0.0669 16.7-0.0928s10.2-0.0848 15.2-0.0862c4.98-1e-3 10 0.0548 14.8 0.236 4.83 0.182 9.46 0.489 13.9 0.782s8.7 0.572 10.6 0.949 1.54 0.853 1.15 1.33l-32 37.5v1e-5z" fill="#fff"/>
|
||||
</svg>
|
||||
<svg version="1.1" viewBox="0 0 512 512" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="m512 256a256 256 0 0 1-256 256 256 256 0 0 1-256-256 256 256 0 0 1 256-256 256 256 0 0 1 256 256z" fill="#f00"/><path d="m78.1 413 51.7-0.0266 160-159h-69.1l-90.2 104c-8.37-73.4 45.9-108 78.9-108 80.5-1.45 303 0 303 0-0.707-21.1-1.57-31-6.53-51.4h-298c-51.3 0-129 53.7-129 143z" fill="#fff"/><path d="m274 193h75.7l86-85.4c3.06-6.71 0.695-15.5-7.91-16.8-64.3 2.36-162 24.5-222 62.6 32.3-3 81.3-0.923 101 0.805l-33.1 38.8z" fill="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 549 B |
@@ -1,6 +1,6 @@
|
||||
name: converternow
|
||||
version: 3.2.1
|
||||
title: Unit Converter
|
||||
version: 4.0.0
|
||||
title: Converter NOW Unit Converter
|
||||
summary: Unit and currencies converter
|
||||
description: A Unit and Currencies Converter. Converter NOW is immediate, fast and easy to use!
|
||||
|
||||
|
||||