From efa1f56494e485c7f8d4f97cd64df4b01f7b5e07 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sun, 3 Mar 2019 17:43:15 +0200 Subject: [PATCH] update copyright notices --- .../mobileledger/ProfileListViewModel.java | 22 +++++++++---------- .../async/DescriptionSelectedCallback.java | 17 ++++++++++++++ .../ui/CrashReportDialogFragment.java | 17 ++++++++++++++ .../net/ktnx/mobileledger/ui/HueRing.java | 22 +++++++++---------- .../ktnx/mobileledger/ui/HueRingDialog.java | 22 +++++++++---------- .../ui/activity/CrashReportingActivity.java | 17 ++++++++++++++ .../ui/activity/ProfileThemedActivity.java | 22 +++++++++---------- .../ui/profiles/MoLeColoredTextView.java | 22 +++++++++---------- .../profiles/ProfilesRecyclerViewAdapter.java | 22 +++++++++---------- .../ui/profiles/dummy/DummyContent.java | 22 +++++++++---------- .../net/ktnx/mobileledger/utils/Colors.java | 17 ++++++++++++++ app/src/main/res/anim/fade_in.xml | 22 +++++++++---------- app/src/main/res/anim/layout_slide_down.xml | 22 +++++++++---------- app/src/main/res/anim/rotate_180.xml | 22 +++++++++---------- app/src/main/res/anim/rotate_180_back.xml | 22 +++++++++---------- app/src/main/res/anim/slide_down.xml | 22 +++++++++---------- app/src/main/res/anim/slide_in_down.xml | 22 +++++++++---------- app/src/main/res/anim/slide_up.xml | 22 +++++++++---------- .../ic_add_circle_white_24dp.xml | 6 +++-- .../ic_assignment_black_24dp.xml | 4 +++- .../ic_cancel_white_24dp.xml | 4 +++- .../ic_check_white_24dp.xml | 6 +++-- .../ic_clear_black_24dp.xml | 6 +++-- .../ic_delete_white_24dp.xml | 6 +++-- .../ic_event_note_black_24dp.xml | 6 +++-- .../ic_exit_to_app_black_24dp.xml | 6 +++-- .../ic_expand_more_black_24dp.xml | 2 ++ .../ic_filter_list_black_24dp.xml | 8 ++++--- .../ic_filter_list_white_24dp.xml | 6 +++-- .../ic_home_black_24dp.xml | 6 +++-- .../ic_info_black_24dp.xml | 6 +++-- .../ic_keyboard_arrow_down_black_24dp.xml | 2 ++ .../ic_launcher_background.xml | 4 +++- .../drawable-anydpi-v21/ic_menu_manage.xml | 6 +++-- .../res/drawable-anydpi-v21/ic_menu_send.xml | 6 +++-- .../res/drawable-anydpi-v21/ic_menu_share.xml | 6 +++-- .../ic_mode_edit_black_24dp.xml | 4 +++- .../ic_more_horiz_black_24dp.xml | 2 ++ .../ic_notifications_black_24dp.xml | 4 +++- .../ic_palette_black_24dp.xml | 2 ++ .../ic_refresh_white_24dp.xml | 4 +++- .../ic_save_white_24dp.xml | 4 +++- .../ic_settings_black_24dp.xml | 4 +++- .../ic_star_black_24dp.xml | 4 +++- .../ic_star_border_black_24dp.xml | 4 +++- .../ic_star_border_white_24dp.xml | 4 +++- .../ic_star_white_24dp.xml | 4 +++- .../ic_sync_black_24dp.xml | 4 +++- .../ic_thick_check_white.xml | 4 +++- .../ic_unfold_more_black_24dp.xml | 2 ++ .../ic_view_list_black_24dp.xml | 4 +++- app/src/main/res/layout/crash_dialog.xml | 17 ++++++++++++++ app/src/main/res/layout/date_picker_view.xml | 17 ++++++++++++++ app/src/main/res/layout/hue_dialog.xml | 22 +++++++++---------- app/src/main/res/layout/main_navigation.xml | 22 +++++++++---------- .../main/res/layout/nav_profile_list_head.xml | 22 +++++++++---------- .../nav_profile_list_new_profile_row.xml | 22 +++++++++---------- .../res/mipmap-anydpi-v26/ic_launcher.xml | 17 ++++++++++++++ .../mipmap-anydpi-v26/ic_launcher_round.xml | 17 ++++++++++++++ app/src/main/res/values/attr.xml | 17 ++++++++++++++ settings.gradle | 17 ++++++++++++++ 61 files changed, 476 insertions(+), 240 deletions(-) diff --git a/app/src/main/java/net/ktnx/mobileledger/ProfileListViewModel.java b/app/src/main/java/net/ktnx/mobileledger/ProfileListViewModel.java index 70c775e4..973634d2 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ProfileListViewModel.java +++ b/app/src/main/java/net/ktnx/mobileledger/ProfileListViewModel.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger; diff --git a/app/src/main/java/net/ktnx/mobileledger/async/DescriptionSelectedCallback.java b/app/src/main/java/net/ktnx/mobileledger/async/DescriptionSelectedCallback.java index 7f0ed4f5..992abd1f 100644 --- a/app/src/main/java/net/ktnx/mobileledger/async/DescriptionSelectedCallback.java +++ b/app/src/main/java/net/ktnx/mobileledger/async/DescriptionSelectedCallback.java @@ -1,3 +1,20 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + package net.ktnx.mobileledger.async; public interface DescriptionSelectedCallback { diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/CrashReportDialogFragment.java b/app/src/main/java/net/ktnx/mobileledger/ui/CrashReportDialogFragment.java index cc426863..b87268ee 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/CrashReportDialogFragment.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/CrashReportDialogFragment.java @@ -1,3 +1,20 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + package net.ktnx.mobileledger.ui; import android.app.AlertDialog; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/HueRing.java b/app/src/main/java/net/ktnx/mobileledger/ui/HueRing.java index 3f6dbb92..e6b4b58b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/HueRing.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/HueRing.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/HueRingDialog.java b/app/src/main/java/net/ktnx/mobileledger/ui/HueRingDialog.java index fc3d7dbd..f53c0429 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/HueRingDialog.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/HueRingDialog.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/activity/CrashReportingActivity.java b/app/src/main/java/net/ktnx/mobileledger/ui/activity/CrashReportingActivity.java index c8edc604..7a16730b 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/activity/CrashReportingActivity.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/activity/CrashReportingActivity.java @@ -1,3 +1,20 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + package net.ktnx.mobileledger.ui.activity; import android.os.Bundle; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java b/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java index 1301a85f..9e01f00c 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/activity/ProfileThemedActivity.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.activity; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/MoLeColoredTextView.java b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/MoLeColoredTextView.java index cfd78b05..e1479cfc 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/MoLeColoredTextView.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/MoLeColoredTextView.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.profiles; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfilesRecyclerViewAdapter.java b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfilesRecyclerViewAdapter.java index b0562051..10b67dbc 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfilesRecyclerViewAdapter.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/ProfilesRecyclerViewAdapter.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.profiles; diff --git a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/dummy/DummyContent.java b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/dummy/DummyContent.java index 4100c511..d0d1a6a1 100644 --- a/app/src/main/java/net/ktnx/mobileledger/ui/profiles/dummy/DummyContent.java +++ b/app/src/main/java/net/ktnx/mobileledger/ui/profiles/dummy/DummyContent.java @@ -1,18 +1,18 @@ /* * Copyright © 2019 Damyan Ivanov. - * This file is part of MoLe. - * MoLe is free software: you can distribute it and/or modify it - * under the term of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your opinion), any later version. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. * - * MoLe is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License terms for details. + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. * - * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.ui.profiles.dummy; diff --git a/app/src/main/java/net/ktnx/mobileledger/utils/Colors.java b/app/src/main/java/net/ktnx/mobileledger/utils/Colors.java index 73ad899b..5bd4ccd9 100644 --- a/app/src/main/java/net/ktnx/mobileledger/utils/Colors.java +++ b/app/src/main/java/net/ktnx/mobileledger/utils/Colors.java @@ -1,3 +1,20 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + package net.ktnx.mobileledger.utils; import android.app.Activity; diff --git a/app/src/main/res/anim/fade_in.xml b/app/src/main/res/anim/fade_in.xml index 6739ed1d..9e2c56ce 100644 --- a/app/src/main/res/anim/fade_in.xml +++ b/app/src/main/res/anim/fade_in.xml @@ -1,18 +1,18 @@ diff --git a/app/src/main/res/drawable-anydpi-v21/ic_clear_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_clear_black_24dp.xml index ed75dcf4..51c798a6 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_clear_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_clear_black_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - ~ See the License for the specific language governing permission sand + ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_expand_more_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_expand_more_black_24dp.xml index 809847ad..32441e4e 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_expand_more_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_expand_more_black_24dp.xml @@ -12,6 +12,8 @@ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_info_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_info_black_24dp.xml index 2316c4ba..09fd157e 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_info_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_info_black_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - ~ See the License for the specific language governing permissionsand + ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_keyboard_arrow_down_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_keyboard_arrow_down_black_24dp.xml index 7f0caed0..d52eacf3 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_keyboard_arrow_down_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_keyboard_arrow_down_black_24dp.xml @@ -12,6 +12,8 @@ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_mode_edit_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_mode_edit_black_24dp.xml index 75af037f..bb0a23a7 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_mode_edit_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_mode_edit_black_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_palette_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_palette_black_24dp.xml index ae7adca1..9f6ceae9 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_palette_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_palette_black_24dp.xml @@ -12,6 +12,8 @@ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_save_white_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_save_white_24dp.xml index b1af9a60..7429776a 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_save_white_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_save_white_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_star_white_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_star_white_24dp.xml index af3be89d..b3c879e6 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_star_white_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_star_white_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_sync_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_sync_black_24dp.xml index 849be565..24bde51b 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_sync_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_sync_black_24dp.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_thick_check_white.xml b/app/src/main/res/drawable-anydpi-v21/ic_thick_check_white.xml index 8321d91c..f427e079 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_thick_check_white.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_thick_check_white.xml @@ -5,13 +5,15 @@ ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the license at: ~ - ~ https://www.apache.org/licenses/LICENSE-2.0 + ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distribution under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> diff --git a/app/src/main/res/drawable-anydpi-v21/ic_unfold_more_black_24dp.xml b/app/src/main/res/drawable-anydpi-v21/ic_unfold_more_black_24dp.xml index 2d601d98..7d836a10 100644 --- a/app/src/main/res/drawable-anydpi-v21/ic_unfold_more_black_24dp.xml +++ b/app/src/main/res/drawable-anydpi-v21/ic_unfold_more_black_24dp.xml @@ -12,6 +12,8 @@ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. + ~ + ~ Modified/adapted by Damyan Ivanov for MoLe --> + + + + . + ~ You should have received a copy of the GNU General Public License + ~ along with MoLe. If not, see . --> + + diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml index eca70cfe..5c551390 100644 --- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -1,4 +1,21 @@ + + diff --git a/app/src/main/res/values/attr.xml b/app/src/main/res/values/attr.xml index 70b100f8..afb1fc06 100644 --- a/app/src/main/res/values/attr.xml +++ b/app/src/main/res/values/attr.xml @@ -1,4 +1,21 @@ + + diff --git a/settings.gradle b/settings.gradle index e7b4def4..5db383d4 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,18 @@ +/* + * Copyright © 2019 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it + * under the term of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your opinion), any later version. + * + * MoLe is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License terms for details. + * + * You should have received a copy of the GNU General Public License + * along with MoLe. If not, see . + */ + include ':app' -- 2.39.2