mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-23 08:30:21 +08:00
reuse++
This commit is contained in:
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -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/app/keystore.jks filter=git-crypt diff=git-crypt
|
||||||
android/fastlane/google-play-api-key.json 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
|
android/key.properties filter=git-crypt diff=git-crypt
|
||||||
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
*.class
|
*.class
|
||||||
*.log
|
*.log
|
||||||
|
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
[submodule ".flutter"]
|
[submodule ".flutter"]
|
||||||
path = .flutter
|
path = .flutter
|
||||||
url = https://github.com/flutter/flutter.git
|
url = https://github.com/flutter/flutter.git
|
||||||
|
@ -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/keys/* ios/Runner.xcodeproj/* ios/Runner/* ios/Runner.xcworkspace/* ios/Runner.xcworkspace/xcshareddata/*
|
||||||
ios/Flutter/* linux/flutter/* secrets/*
|
ios/Flutter/* linux/flutter/* secrets/*
|
||||||
macos/keys/* android/gradle/* android/app/src/main/res/* android/fastlane/metadata/*
|
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>
|
Copyright: Vishesh Handa <me@vhanda.in>
|
||||||
License: CC0-1.0
|
License: CC0-1.0
|
||||||
|
|
||||||
Files: *.png *.svg
|
Files: *.png *.svg
|
||||||
Copyright: Vishesh Handa <me@vhanda.in>
|
Copyright: Vishesh Handa <me@vhanda.in>
|
||||||
License: CC-BY-4.0
|
License: CC-BY-4.0
|
||||||
|
@ -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
|
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details
|
||||||
version: 1
|
version: 1
|
||||||
script:
|
script:
|
||||||
|
4
Makefile
4
Makefile
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
keys:
|
keys:
|
||||||
mkdir -p /tmp/codegen
|
mkdir -p /tmp/codegen
|
||||||
yq -o=json eval assets/langs/en.yaml -P > /tmp/codegen/en.json
|
yq -o=json eval assets/langs/en.yaml -P > /tmp/codegen/en.json
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
# Specify analysis options.
|
# Specify analysis options.
|
||||||
#
|
#
|
||||||
# Until there are meta linter rules, each desired lint must be explicitly enabled.
|
# Until there are meta linter rules, each desired lint must be explicitly enabled.
|
||||||
|
4
android/.gitignore
vendored
4
android/.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
*.iml
|
*.iml
|
||||||
*.class
|
*.class
|
||||||
.gradle
|
.gradle
|
||||||
|
@ -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"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">[dev] GitJournal</string>
|
<string name="app_name">[dev] GitJournal</string>
|
||||||
|
@ -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;
|
package io.gitjournal.gitjournal;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
@ -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;
|
package io.gitjournal.gitjournal;
|
||||||
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
4
ios/.gitignore
vendored
4
ios/.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
.vagrant/
|
.vagrant/
|
||||||
.sconsign.dblite
|
.sconsign.dblite
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
// SPDX-FileCopyrightText: 2019-2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
|
|
||||||
class Env {
|
class Env {
|
||||||
static final String analyticsUrl = "";
|
static final String analyticsUrl = "";
|
||||||
static final String sentry = "";
|
static final String sentry = "";
|
||||||
|
4
linux/.gitignore
vendored
4
linux/.gitignore
vendored
@ -1 +1,5 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
flutter/ephemeral
|
flutter/ephemeral
|
||||||
|
@ -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 "my_application.h"
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
|
@ -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 "my_application.h"
|
||||||
|
|
||||||
#include <flutter_linux/flutter_linux.h>
|
#include <flutter_linux/flutter_linux.h>
|
||||||
|
@ -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_
|
#ifndef FLUTTER_MY_APPLICATION_H_
|
||||||
#define FLUTTER_MY_APPLICATION_H_
|
#define FLUTTER_MY_APPLICATION_H_
|
||||||
|
|
||||||
|
4
macos/.gitignore
vendored
4
macos/.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
# Flutter-related
|
# Flutter-related
|
||||||
**/Flutter/ephemeral/
|
**/Flutter/ephemeral/
|
||||||
**/Pods/
|
**/Pods/
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# SPDX-FileCopyrightText: 2021 Vishesh Handa <me@vhanda.in>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
name: gitjournal
|
name: gitjournal
|
||||||
description: A Note Taking App Built on top of Git
|
description: A Note Taking App Built on top of Git
|
||||||
version: 1.80.1+10
|
version: 1.80.1+10
|
||||||
|
Reference in New Issue
Block a user