This commit is contained in:
Pearoo 2023-05-29 22:10:16 +02:00
commit 518932c260
35 changed files with 30 additions and 26 deletions

View File

@ -27,6 +27,10 @@ cd filcnaplo
flutter run
```
### Contribution
Az összes (ugyan azon verzióhoz tartozó) contribution meg fog jelenni a release-nél. Kérjük, írd le a Discord nevedet a Description-be, hogy adhassunk rangot.
-------
# Kudo

View File

@ -44,7 +44,7 @@ android {
}
defaultConfig {
applicationId "hu.filc.naplo"
applicationId "hu.refilc.naplo"
minSdkVersion 21
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode flutterVersionCode.toInteger()

View File

@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="hu.filc.naplo">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="hu.refilc.naplo">
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE" />

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" package="hu.filc.naplo">
xmlns:tools="http://schemas.android.com/tools" package="hu.refilc.naplo">
<application android:label="reFilc" tools:replace="android:label" android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true">
<activity android:exported="true" android:name=".MainActivity"

View File

@ -1,4 +1,4 @@
package hu.filc.naplo;
package hu.refilc.naplo;
import android.os.Bundle;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 844 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 450 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.8 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="hu.filc.naplo">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="hu.refilc.naplo">
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE" />

Binary file not shown.

Before

Width:  |  Height:  |  Size: 53 KiB

After

Width:  |  Height:  |  Size: 28 KiB

View File

@ -9,7 +9,7 @@ class Config {
factory Config.fromJson(Map json) {
return Config(
userAgent: json["user_agent"] ?? "hu.filc.naplo/\$0/\$1/\$2",
userAgent: json["user_agent"] ?? "hu.refilc.naplo/\$0/\$1/\$2",
json: json,
);
}

View File

@ -311,7 +311,7 @@ Color gradeColor(
switch (valueInt) {
case 5:
return Color(0xff3d7bf4);
return settings.gradeColors[4];
case 4:
return settings.gradeColors[3];
case 3:

View File

@ -146,9 +146,11 @@ flutter:
weight: 700
style: italic
flutter_icons:
flutter_launcher_icons:
image_path: assets/icons/ic_launcher.png
android: true
adaptive_icon_background: "#3D7BF4"
adaptive_icon_foreground: assets/icons/ic_launcher_foreground.png
ios: true
remove_alpha_ios: true

View File

@ -135,7 +135,7 @@ class NavigationScreenState extends State<NavigationScreen>
initPlatformState();
HomeWidget.setAppGroupId('hu.filc.naplo.group');
HomeWidget.setAppGroupId('hu.refilc.naplo.group');
_checkForWidgetLaunch();
HomeWidget.widgetClicked.listen(_launchedFromWidget);

View File

@ -44,7 +44,7 @@ Ha az adataiddal kapcsolatban bármilyen kérdésed van (törlés, módosítás,
Az alkalmazás használatával jelzed, hogy ezt a tájékoztatót tudomásul vetted.
Utolsó módosítás: 2021. 09. 25.
Utolsó módosítás: 2023. 05. 28.
""",
onOpen: (link) => launch(link.url,
customTabsOption: CustomTabsOption(

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.database;
package hu.refilc.naplo.database;
import android.content.ContentValues;
import android.content.Context;
@ -7,7 +7,7 @@ import android.database.sqlite.SQLiteDatabase;
import java.sql.SQLException;
import hu.filc.naplo.database.SQLiteHelper;
import hu.refilc.naplo.database.SQLiteHelper;
public class DBManager {
private Context context;

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.database;
package hu.refilc.naplo.database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;

View File

@ -1,2 +0,0 @@
sdk.dir=E:\\__asdks\\Android\\Sdk
flutter.sdk=E:\\__asdks\\flutter

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.utils;
package hu.refilc.naplo.utils;
import android.content.Context;
import android.net.ConnectivityManager;

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.utils;
package hu.refilc.naplo.utils;
import java.time.DayOfWeek;
import java.time.Duration;

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.widget_timetable;
package hu.refilc.naplo.widget_timetable;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
@ -27,11 +27,11 @@ import java.util.Comparator;
import java.util.List;
import java.util.Locale;
import hu.filc.naplo.database.DBManager;
import hu.filc.naplo.MainActivity;
import hu.filc.naplo.R;
import hu.refilc.naplo.database.DBManager;
import hu.refilc.naplo.MainActivity;
import hu.refilc.naplo.R;
import hu.filc.naplo.utils.Week;
import hu.refilc.naplo.utils.Week;
import static android.app.PendingIntent.FLAG_UPDATE_CURRENT;

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.widget_timetable;
package hu.refilc.naplo.widget_timetable;
import android.appwidget.AppWidgetManager;
import android.content.Context;
@ -20,8 +20,8 @@ import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import hu.filc.naplo.database.DBManager;
import hu.filc.naplo.R;
import hu.refilc.naplo.database.DBManager;
import hu.refilc.naplo.R;
public class WidgetTimetableDataProvider implements RemoteViewsService.RemoteViewsFactory {

View File

@ -1,4 +1,4 @@
package hu.filc.naplo.widget_timetable;
package hu.refilc.naplo.widget_timetable;
import android.content.Intent;
import android.os.Build;