Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian Bitter authored and Fabian Bitter committed Aug 22, 2023
1 parent c13a006 commit f44497b
Show file tree
Hide file tree
Showing 14 changed files with 2,417 additions and 359 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
release/

##### Windows
# Windows thumbnail cache files
Thumbs.db
Expand Down
6 changes: 5 additions & 1 deletion .idea/app_icon.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 2.5.0
==================================================
- V9 compatible

Version 2.0.0
==================================================
- Integrate new support system dialog + clean up code
Expand Down
17 changes: 3 additions & 14 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ module.exports = function (grunt) {
{src: ['controllers/**'], dest: "dist/"},
{src: ['views/**'], dest: "dist/"},
{src: ['elements/**'], dest: "dist/"},
{src: ['routes/**'], dest: "dist/"},
{src: ['single_pages/**'], dest: "dist/"},
{src: ['src/**'], dest: "dist/"},
{src: ['languages/**'], dest: "dist/"},
Expand All @@ -69,7 +70,7 @@ module.exports = function (grunt) {
compress: {
main: {
options: {
archive: 'build/' + packageName + '.zip'
archive: 'release/' + packageName + '.zip'
},
files: [
{src: ['**'], dest: packageName, expand: true, cwd: 'dist/'}
Expand All @@ -79,25 +80,13 @@ module.exports = function (grunt) {
clean: {
dist: ['dist'],
composer: ['vendor', 'composer.lock']
},
phpcsfixer: {
app: {
dir: 'dist'
},
options: {
bin: './vendor/friendsofphp/php-cs-fixer/php-cs-fixer',
usingCache: "no",
quiet: true
}
}
});

grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-composer');
grunt.loadNpmTasks('grunt-php-cs-fixer');
grunt.loadNpmTasks('grunt-version');
grunt.loadNpmTasks('grunt-contrib-copy');

grunt.registerTask('default', ['clean:composer', 'composer:release:install', 'clean:dist', 'copy', 'version', 'clean:composer', 'composer:dev:install', 'phpcsfixer', 'compress:main', 'clean:dist']);
grunt.registerTask('default', ['clean:dist', 'copy', 'version', 'compress:main', 'clean:dist']);
};
6 changes: 2 additions & 4 deletions controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@

namespace Concrete\Package\AppIcon;

defined('C5_EXECUTE') or die('Access denied');

use Bitter\AppIcon\Provider\ServiceProvider;
use Concrete\Core\Package\Package;

class Controller extends Package
{
protected $pkgHandle = 'app_icon';
protected $pkgVersion = '2.0.0';
protected $appVersionRequired = '8.0.0';
protected $pkgVersion = '2.5.0';
protected $appVersionRequired = '9.0.0';
protected $pkgAutoloaderRegistries = [
'src/Bitter/AppIcon' => 'Bitter\AppIcon',
];
Expand Down
148 changes: 0 additions & 148 deletions elements/dashboard/did_you_know.php

This file was deleted.

49 changes: 0 additions & 49 deletions elements/dashboard/help.php

This file was deleted.

40 changes: 0 additions & 40 deletions elements/dashboard/install_post.php

This file was deleted.

45 changes: 0 additions & 45 deletions elements/dashboard/license_check.php

This file was deleted.

Loading

0 comments on commit f44497b

Please sign in to comment.