Skip to content

Commit 0db3018

Browse files
committed
Adding LICENCE
1 parent 034d293 commit 0db3018

17 files changed

+941
-4
lines changed

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

LICENCE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

src/app/app.component.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2020 Danijel Askov
3+
*
4+
* This file is part of MicroJava Disassembler.
5+
*
6+
* MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* MicroJava Disassembler is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
120
div {
221
margin-top: 10px;
322
margin-bottom: 10px;

src/app/app.component.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<!--
2+
Copyright (C) 2020 Danijel Askov
3+
4+
This file is part of MicroJava Disassembler.
5+
6+
MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
MicroJava Disassembler is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
-->
19+
120
<div class="container">
221
<div class="row">
322
<bytecode-reader-component (bytecode)="setBytecode($event)" class="w-100"></bytecode-reader-component>

src/app/app.component.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2020 Danijel Askov
3+
*
4+
* This file is part of MicroJava Disassembler.
5+
*
6+
* MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* MicroJava Disassembler is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
120
import { Component } from '@angular/core';
221
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
322
import { faInfoCircle } from '@fortawesome/free-solid-svg-icons';

src/app/bytecode-reader/bytecode-reader.component.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2020 Danijel Askov
3+
*
4+
* This file is part of MicroJava Disassembler.
5+
*
6+
* MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* MicroJava Disassembler is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
120
input[type="file"] {
221
display: none;
322
}

src/app/bytecode-reader/bytecode-reader.component.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<!--
2+
Copyright (C) 2020 Danijel Askov
3+
4+
This file is part of MicroJava Disassembler.
5+
6+
MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
MicroJava Disassembler is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
-->
19+
120
<div class="col-12">
221
<div class="input-group">
322
<input type="text" class="form-control file-name" [placeholder]="!uploadedFileName ? '' : uploadedFileName" readonly />

src/app/bytecode-reader/bytecode-reader.component.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2020 Danijel Askov
3+
*
4+
* This file is part of MicroJava Disassembler.
5+
*
6+
* MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* MicroJava Disassembler is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
120
import { Component, OnInit, Output, EventEmitter } from '@angular/core';
221
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
322
import { faFolderOpen } from '@fortawesome/free-solid-svg-icons';

src/app/bytecode-viewer/bytecode-viewer.component.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
/*
2+
* Copyright (C) 2020 Danijel Askov
3+
*
4+
* This file is part of MicroJava Disassembler.
5+
*
6+
* MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation, either version 3 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* MicroJava Disassembler is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*
16+
* You should have received a copy of the GNU General Public License
17+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
*/
19+
120
code, .code {
221
font-family: Consolas, 'Courier New', Courier, monospace;
322
}

src/app/bytecode-viewer/bytecode-viewer.component.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
<!--
2+
Copyright (C) 2020 Danijel Askov
3+
4+
This file is part of MicroJava Disassembler.
5+
6+
MicroJava Disassembler is free software: you can redistribute it and/or modify
7+
it under the terms of the GNU General Public License as published by
8+
the Free Software Foundation, either version 3 of the License, or
9+
(at your option) any later version.
10+
11+
MicroJava Disassembler is distributed in the hope that it will be useful,
12+
but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
GNU General Public License for more details.
15+
16+
You should have received a copy of the GNU General Public License
17+
along with this program. If not, see <https://www.gnu.org/licenses/>.
18+
-->
19+
120
<div class="col-12">
221
<nav>
322
<div class="nav nav-tabs" id="nav-tab" role="tablist">

0 commit comments

Comments
 (0)