Skip to content
This repository has been archived by the owner on Jan 31, 2021. It is now read-only.

Commit

Permalink
idk
Browse files Browse the repository at this point in the history
  • Loading branch information
rubentalstra committed Jun 16, 2019
1 parent 848e835 commit b4853f3
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 39 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ if (flutterRoot == null) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '45'
throw new GradleException("versionCode not found. Define flutter.versionCode in the local.properties file.")
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
throw new GradleException("versionName not found. Define flutter.versionName in the local.properties file.")
}

apply plugin: 'com.android.application'
Expand Down
41 changes: 41 additions & 0 deletions lib/page/auth/partnerlist.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
* Copyright 2018 Ruben Talstra and Yvan Watchman
*
* Licensed under the GNU General Public License v3.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.gnu.org/licenses/gpl-3.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed 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.
*/
class PartnerList {
final String name;
final String url;
final String logo.dark;
final String logo.light;
final String colors.primary;
final String colors.secondary;

PartnerList(
{this.name, this.url, this.logo.dark, this.logo.light, this.colors.primary, this.colors.secondary});

static final List<PartnerList> partnerList = [
PartnerList(
name: "",
url: "",
logo: {
dark: "",
light: ""
},
colors: {
primary: "",
secondary: ""
},
),
];
}
18 changes: 9 additions & 9 deletions partners.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"name": "Deploys.io",
"url": "https://deploys.io",
"logo": {
"dark": "https://deploys.io/img/deploys.io/logo/text/dark.png",
"light": "https://deploys.io/img/deploys.io/logo/text/light.png"
"dark": "https://deploys.io/img/deploys.io/logo/text/light.png",
"light": "https://deploys.io/img/deploys.io/logo/text/dark.png"
}
},
{
"name": "CodersLight LLC",
"url": "https://coderslight.com/",
"logo": {
"dark": "",
"light": ""
"dark": "https://avatars2.githubusercontent.com/u/35084758?s=280&v=4",
"light": "https://pbs.twimg.com/profile_images/1041472632984616961/uIjCN238.jpg"
}
},
{
Expand All @@ -28,16 +28,16 @@
"name": "PlanetNode",
"url": "https://planetnode.net/",
"logo": {
"dark": "",
"light": ""
"dark": "https://planetnode.net/templates/planetnode/img/header/logo-b.png",
"light": "https://planetnode.net/templates/planetnode/img/header/logo-b.png"
}
},
{
"name": "Revivenode Hosting",
"url": "",
"url": "https://revivenode.com/",
"logo": {
"dark": "",
"light": ""
"dark": "https://cdn.discordapp.com/attachments/582365380798971934/589519836997222420/RLogo.png",
"light": "https://cdn.discordapp.com/attachments/582365380798971934/589519836997222420/RLogo.png"
}
}
]
Expand Down
29 changes: 1 addition & 28 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: A Pterodactyl Mobile App.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 3.3.5+45
version: 3.3.6+48
authors:
- Ruben Talstra <rubentalstra1211@outlook.com>
- Yvan Watchman <ywatchman@cyberfusion.nl>
Expand All @@ -26,8 +26,6 @@ dependencies:
flutter_localizations:
sdk: flutter

# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.2
http: any
convert: ^2.1.1
Expand All @@ -51,18 +49,10 @@ dev_dependencies:
flutter_test:
sdk: flutter

# For information on the generic Dart part of this file, see the
# following page: https://www.dartlang.org/tools/pub/pubspec

# The following section is specific to Flutter.
flutter:

# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true

# To add assets to your application, add an assets section, like this:
assets:
- assets/images/pterodactyl_icon.png
- assets/lang/en_US.json
Expand All @@ -85,26 +75,9 @@ flutter:

# An image asset can refer to one or more resolution-specific "variants", see
# https://flutter.io/assets-and-images/#resolution-aware.

# For details regarding adding assets from package dependencies, see
# https://flutter.io/assets-and-images/#from-packages

# To add custom fonts to your application, add a fonts section here,
# in this "flutter" section. Each entry in this list should have a
# "family" key with the font family name, and a "fonts" key with a
# list giving the asset and other descriptors for the font. For
# example:
fonts:
- family: Cairo
fonts:
- asset: assets/fonts/Cairo-Regular.ttf
- asset: assets/fonts/Cairo-Bold.ttf
weight: 700
# - family: Trajan Pro
# fonts:
# - asset: fonts/TrajanPro.ttf
# - asset: fonts/TrajanPro_Bold.ttf
# weight: 700
#
# For details regarding fonts from package dependencies,
# see https://flutter.io/custom-fonts/#from-packages

0 comments on commit b4853f3

Please sign in to comment.