Skip to content

Commit 6834f4e

Browse files
committed
fix: licence text
1 parent 0cd2445 commit 6834f4e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+878
-12
lines changed

LICENSE

Lines changed: 582 additions & 11 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,4 @@ Usage: ./bin/log.sh [-c] [service1, ...serviceN]
211211
## License
212212

213213
This project is licensed under the GNU General Public License v3.0.
214-
See the [LICENSE](https://www.gnu.org/licenses/gpl-3.0.txt)
214+
See the [LICENSE](LICENSE)

bin/ctl.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
# I'm Queue Software Project
23
# Copyright (C) 2025 imqueue.com <[email protected]>
34
#
45
# This program is free software: you can redistribute it and/or modify
@@ -13,6 +14,10 @@
1314
#
1415
# You should have received a copy of the GNU General Public License
1516
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
#
18+
# If you want to use this code in a closed source (commercial) project, you can
19+
# purchase a proprietary commercial license. Please contact us at
20+
# <[email protected]> to get commercial licensing options.
1621
program="$0 $*"
1722
cwd=$(pwd)
1823
workdir="$HOME/.imq/var"

bin/log.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
# I'm Queue Software Project
23
# Copyright (C) 2025 imqueue.com <[email protected]>
34
#
45
# This program is free software: you can redistribute it and/or modify
@@ -13,6 +14,10 @@
1314
#
1415
# You should have received a copy of the GNU General Public License
1516
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
#
18+
# If you want to use this code in a closed source (commercial) project, you can
19+
# purchase a proprietary commercial license. Please contact us at
20+
# <[email protected]> to get commercial licensing options.
1621
workdir="$HOME/.imq/var"
1722
argv=()
1823

bin/updep.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
# I'm Queue Software Project
23
# Copyright (C) 2025 imqueue.com <[email protected]>
34
#
45
# This program is free software: you can redistribute it and/or modify
@@ -13,6 +14,10 @@
1314
#
1415
# You should have received a copy of the GNU General Public License
1516
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
#
18+
# If you want to use this code in a closed source (commercial) project, you can
19+
# purchase a proprietary commercial license. Please contact us at
20+
# <[email protected]> to get commercial licensing options.
1621
argv=()
1722
services=()
1823
path="."

index.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/*!
33
* I Message Queue Command Line Interface
44
*
5+
* I'm Queue Software Project
56
* Copyright (C) 2025 imqueue.com <[email protected]>
67
*
78
* This program is free software: you can redistribute it and/or modify
@@ -16,6 +17,10 @@
1617
*
1718
* You should have received a copy of the GNU General Public License
1819
* along with this program. If not, see <https://www.gnu.org/licenses/>.
20+
*
21+
* If you want to use this code in a closed source (commercial) project, you can
22+
* purchase a proprietary commercial license. Please contact us at
23+
* <[email protected]> to get commercial licensing options.
1924
*/
2025
import yargs from 'yargs';
2126
import { hideBin } from 'yargs/helpers';

lib/autoupdate.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*!
22
* I Message Queue Command Line Interface
33
*
4+
* I'm Queue Software Project
45
* Copyright (C) 2025 imqueue.com <[email protected]>
56
*
67
* This program is free software: you can redistribute it and/or modify
@@ -15,6 +16,10 @@
1516
*
1617
* You should have received a copy of the GNU General Public License
1718
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*
20+
* If you want to use this code in a closed source (commercial) project, you can
21+
* purchase a proprietary commercial license. Please contact us at
22+
* <[email protected]> to get commercial licensing options.
1823
*/
1924
import { execSync } from 'child_process';
2025
import * as inquirer from 'inquirer';

lib/config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*!
22
* IMQ-CLI library: config
33
*
4+
* I'm Queue Software Project
45
* Copyright (C) 2025 imqueue.com <[email protected]>
56
*
67
* This program is free software: you can redistribute it and/or modify
@@ -15,6 +16,10 @@
1516
*
1617
* You should have received a copy of the GNU General Public License
1718
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*
20+
* If you want to use this code in a closed source (commercial) project, you can
21+
* purchase a proprietary commercial license. Please contact us at
22+
* <[email protected]> to get commercial licensing options.
1823
*/
1924
import {
2025
readFileSync as read,

lib/constants.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*!
22
* IMQ-CLI library: constants
33
*
4+
* I'm Queue Software Project
45
* Copyright (C) 2025 imqueue.com <[email protected]>
56
*
67
* This program is free software: you can redistribute it and/or modify
@@ -15,6 +16,10 @@
1516
*
1617
* You should have received a copy of the GNU General Public License
1718
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*
20+
* If you want to use this code in a closed source (commercial) project, you can
21+
* purchase a proprietary commercial license. Please contact us at
22+
* <[email protected]> to get commercial licensing options.
1823
*/
1924
import * as os from 'os';
2025
import { resolve } from './path';

lib/error.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/*!
22
* IMQ-CLI library: error
33
*
4+
* I'm Queue Software Project
45
* Copyright (C) 2025 imqueue.com <[email protected]>
56
*
67
* This program is free software: you can redistribute it and/or modify
@@ -15,6 +16,10 @@
1516
*
1617
* You should have received a copy of the GNU General Public License
1718
* along with this program. If not, see <https://www.gnu.org/licenses/>.
19+
*
20+
* If you want to use this code in a closed source (commercial) project, you can
21+
* purchase a proprietary commercial license. Please contact us at
22+
* <[email protected]> to get commercial licensing options.
1823
*/
1924
import * as chalk from 'chalk';
2025

0 commit comments

Comments
 (0)