This commit is contained in:
Vishesh Handa
2021-09-16 15:27:25 +02:00
parent 3c396394fe
commit 807c048c89
19 changed files with 77 additions and 2 deletions

4
.gitattributes vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
android/app/keystore.jks filter=git-crypt diff=git-crypt
android/fastlane/google-play-api-key.json filter=git-crypt diff=git-crypt
android/key.properties filter=git-crypt diff=git-crypt

4
.gitignore vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
# Miscellaneous
*.class
*.log

4
.gitmodules vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
[submodule ".flutter"]
path = .flutter
url = https://github.com/flutter/flutter.git

View File

@ -7,10 +7,11 @@ Files: macos/Runner/* macos/Runner.xcodeproj/* macos/Runner.xcworkspace/* macos/
ios/keys/* ios/Runner.xcodeproj/* ios/Runner/* ios/Runner.xcworkspace/* ios/Runner.xcworkspace/xcshareddata/*
ios/Flutter/* linux/flutter/* secrets/*
macos/keys/* android/gradle/* android/app/src/main/res/* android/fastlane/metadata/*
scripts/secrets/* test/apis/data/* *.lock *.iml *.jks
scripts/secrets/* test/apis/data/*
*.lock *.iml *.jks *.metadata *.plist *.entitlements
Copyright: Vishesh Handa <me@vhanda.in>
License: CC0-1.0
Files: *.png *.svg
Copyright: Vishesh Handa <me@vhanda.in>
License: CC-BY-4.0
License: CC-BY-4.0

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
version: 1
script:

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
keys:
mkdir -p /tmp/codegen
yq -o=json eval assets/langs/en.yaml -P > /tmp/codegen/en.json

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
# Specify analysis options.
#
# Until there are meta linter rules, each desired lint must be explicitly enabled.

4
android/.gitignore vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
*.iml
*.class
.gradle

View File

@ -1,3 +1,9 @@
<!--
SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
SPDX-License-Identifier: CC-BY-4.0
-->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">[dev] GitJournal</string>

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
package io.gitjournal.gitjournal;
import androidx.annotation.NonNull;

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
package io.gitjournal.gitjournal;
import android.os.Bundle;

4
ios/.gitignore vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
.idea/
.vagrant/
.sconsign.dblite

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
class Env {
static final String analyticsUrl = "";
static final String sentry = "";

4
linux/.gitignore vendored
View File

@ -1 +1,5 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
flutter/ephemeral

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
#include "my_application.h"
int main(int argc, char** argv) {

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
#include "my_application.h"
#include <flutter_linux/flutter_linux.h>

View File

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
#ifndef FLUTTER_MY_APPLICATION_H_
#define FLUTTER_MY_APPLICATION_H_

4
macos/.gitignore vendored
View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
# Flutter-related
**/Flutter/ephemeral/
**/Pods/

View File

@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
#
# SPDX-License-Identifier: CC0-1.0
name: gitjournal
description: A Note Taking App Built on top of Git
version: 1.80.1+10