Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
chore: license code under CC-BY-NC-ND-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tricked-dev committed Feb 24, 2022
1 parent f4c6711 commit 2f2410f
Show file tree
Hide file tree
Showing 24 changed files with 484 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"licenser.license": "CC-BY-NC-ND-3",
"licenser.projectName": "TMOD Installer",
"licenser.author": "Tricked-dev <tricked@tricked.pro>"
}
308 changes: 308 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions lib/config.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'package:flutter/foundation.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'package:tmodinstaller/src/utils.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'package:shared_preferences/shared_preferences.dart';
import 'package:tmodinstaller/config.dart';
import 'package:tmodinstaller/src/models/models.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/models/models.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

/// DATA MODEL INSPIRED BY: https://github.com/nacrt/SkyblockClient-REPO/blob/main/files/mods.json
///
import 'package:json_annotation/json_annotation.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/models/models.g.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

// GENERATED CODE - DO NOT MODIFY BY HAND

part of 'models.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/screens/modlist.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'dart:convert';
import 'package:fluent_ui/fluent_ui.dart';
import 'package:flutter/foundation.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/screens/settings.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'package:filesystem_picker/filesystem_picker.dart';
import 'package:flutter/foundation.dart';
import 'package:fluent_ui/fluent_ui.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/screens/updater.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'dart:convert';
import 'package:filesystem_picker/filesystem_picker.dart';
import 'package:flutter/foundation.dart';
Expand Down
8 changes: 8 additions & 0 deletions lib/src/utils.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'dart:convert';
import 'dart:io';

Expand Down
8 changes: 8 additions & 0 deletions lib/theme.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

import 'package:fluent_ui/fluent_ui.dart';
import 'package:flutter/foundation.dart';
import 'package:system_theme/system_theme.dart';
Expand Down
2 changes: 1 addition & 1 deletion linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10)
project(runner LANGUAGES CXX)

set(BINARY_NAME "tmodinstaller")
set(APPLICATION_ID "com.example.tmodinstaller")
set(APPLICATION_ID "pro.tricked.tmodinstaller")

cmake_policy(SET CMP0063 NEW)

Expand Down
8 changes: 8 additions & 0 deletions linux/main.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include "my_application.h"

int main(int argc, char** argv) {
Expand Down
8 changes: 8 additions & 0 deletions linux/my_application.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include "my_application.h"

#include <flutter_linux/flutter_linux.h>
Expand Down
8 changes: 8 additions & 0 deletions linux/my_application.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#ifndef FLUTTER_MY_APPLICATION_H_
#define FLUTTER_MY_APPLICATION_H_

Expand Down
12 changes: 10 additions & 2 deletions windows/runner/Runner.rc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

// Microsoft Visual C++ generated resource script.
//
#pragma code_page(65001)
Expand Down Expand Up @@ -89,11 +97,11 @@ BEGIN
BEGIN
BLOCK "040904e4"
BEGIN
VALUE "CompanyName", "com.example" "\0"
VALUE "CompanyName", "pro.tricked" "\0"
VALUE "FileDescription", "tmodinstaller" "\0"
VALUE "FileVersion", VERSION_AS_STRING "\0"
VALUE "InternalName", "tmodinstaller" "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 com.example. All rights reserved." "\0"
VALUE "LegalCopyright", "Copyright (C) 2022 pro.tricked. All rights reserved." "\0"
VALUE "OriginalFilename", "tmodinstaller.exe" "\0"
VALUE "ProductName", "tmodinstaller" "\0"
VALUE "ProductVersion", VERSION_AS_STRING "\0"
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/flutter_window.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include "flutter_window.h"

#include <optional>
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/flutter_window.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#ifndef RUNNER_FLUTTER_WINDOW_H_
#define RUNNER_FLUTTER_WINDOW_H_

Expand Down
8 changes: 8 additions & 0 deletions windows/runner/main.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/resource.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ generated include file.
// Used by Runner.rc
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/utils.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include "utils.h"

#include <flutter_windows.h>
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/utils.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#ifndef RUNNER_UTILS_H_
#define RUNNER_UTILS_H_

Expand Down
8 changes: 8 additions & 0 deletions windows/runner/win32_window.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#include "win32_window.h"

#include <flutter_windows.h>
Expand Down
8 changes: 8 additions & 0 deletions windows/runner/win32_window.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// TMOD Installer (c) by tricked
//
// TMOD Installer is licensed under a
// Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
//
// You should have received a copy of the license along with this
// work. If not, see <http://creativecommons.org/licenses/by-nc-nd/3.0/>.

#ifndef RUNNER_WIN32_WINDOW_H_
#define RUNNER_WIN32_WINDOW_H_

Expand Down

0 comments on commit 2f2410f

Please sign in to comment.