Skip to content

Commit

Permalink
Update copyright, author information & urls
Browse files Browse the repository at this point in the history
  • Loading branch information
TechAurelian committed Apr 17, 2024
1 parent 29ca799 commit 3990a87
Show file tree
Hide file tree
Showing 15 changed files with 252 additions and 164 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2022 TechAurelian
Copyright (c) 2020-2024 Appliberated

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Easy counting. Multiple color counters. An open source, Hello World Flutter app.**

[Hello World Counters](https://techaurelian.com/helloworldcounters/) is an easy to use tally counter app for Android. It gives you a different counter for each of the unambiguous color terms in English: Black, White, Red, Green, Yellow, Blue, Brown, Purple, Pink, Orange, and Grey. This means you can count people, sheep, kisses, or smiles, and nobody will know what you are counting!
[Hello World Counters](https://appliberated.com/helloworldcounters/) is an easy to use tally counter app for Android. It gives you a different counter for each of the unambiguous color terms in English: Black, White, Red, Green, Yellow, Blue, Brown, Purple, Pink, Orange, and Grey. This means you can count people, sheep, kisses, or smiles, and nobody will know what you are counting!

You can increment or decrement the counter, reset its value back to zero, or share it by email, messengers, or in social networks.

Expand All @@ -19,8 +19,8 @@ What else could you count with this app?

| Platform | Options |
| ------------- | ------------- |
| Android | [Install from Google Play](https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters) <br> [Download APK from GitHub Releases](https://github.com/TechAurelian/hello_world_counters/releases)|
| Any | [Run the web app in your browser](https://helloworldcounters.techaurelian.com) |
| Android | [Install from Google Play](https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters) <br> [Download APK from GitHub Releases](https://github.com/Appliberated/hello_world_counters/releases)|
| Any | [Run the web app in your browser](https://helloworldcounters.appliberated.com) |

## Hello World

Expand Down
6 changes: 3 additions & 3 deletions lib/common/app_settings.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:shared_preferences/shared_preferences.dart';

Expand Down
10 changes: 5 additions & 5 deletions lib/common/app_strings.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import '../screens/home.dart';

Expand Down Expand Up @@ -32,9 +32,9 @@ class AppStrings {
static const String rateAppURL =
'https://play.google.com/store/apps/details?id=com.anaurelian.helloworldcounters';

static const String helpURL = 'https://techaurelian.com/helloworldcounters/';
static const String helpURL = 'https://appliberated.com/helloworldcounters/';

static const String viewSourceURL = 'https://techaurelian.com/helloworldcounters/view-source/';
static const String viewSourceURL = 'https://github.com/Appliberated/hello_world_counters';

// -----------------------------------------------------------------------------------------------
// Home Screen - Main
Expand Down
6 changes: 3 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
7 changes: 3 additions & 4 deletions lib/models/counter.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

// cSpell:ignore endregion

Expand Down Expand Up @@ -102,7 +102,6 @@ class Counter {
};

//#endregion

}

/// Provides a map of counters for each counter type, and keeps a reference to the current counter.
Expand Down
6 changes: 3 additions & 3 deletions lib/screens/home.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/screens/settings_screen.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/utils/utils.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/widgets/accept_cancel_dialog.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/widgets/color_list_tile.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/widgets/counter_display.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
6 changes: 3 additions & 3 deletions lib/widgets/counters_drawer.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2022 TechAurelian. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.
// Copyright 2020-2024 Appliberated (https://appliberated.com). All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// @author TechAurelian <[email protected]> (https://techaurelian.com)

import 'package:flutter/material.dart';

Expand Down
Loading

0 comments on commit 3990a87

Please sign in to comment.