Skip to content

Commit 152f589

Browse files
committed
v0.1 Release
1 parent 5506e8e commit 152f589

26 files changed

+90
-747
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "bitcoin-pro"
33
description = "Professional bitcoin accounts & assets management"
4-
version = "0.1.0-beta.3"
4+
version = "0.1.0"
55
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
66
edition = "2018"
7-
license = "AGPL-3.0-only"
7+
license = "MIT"
88
readme = "README.md"
99
exclude = ["examples"]
1010

LICENSE

Lines changed: 21 additions & 661 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -66,20 +66,3 @@ $ bitcoin-pro
6666
### RGB-20 assets
6767

6868
![Asset creation](https://github.com/pandoracore/bitcoin-pro/raw/v0.1.0-beta.1/doc/ui/asset_creation.png)
69-
70-
## License
71-
72-
The application is dually-licensed under AGPL v0.3 for non-commercial use and
73-
under commercial license with enterprise support by Pandora Core for commercial
74-
usage.
75-
76-
For non-commercial use this program is free software: you can redistribute it
77-
and/or modify it under the terms of the GNU Affero General Public License as
78-
published by the Free Software Foundation, version 3.
79-
80-
This program is distributed in the hope that it will be useful, but WITHOUT ANY
81-
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
82-
PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
83-
84-
You should have received a copy of the GNU Affero General Public License along
85-
with this program. If not, see <https://www.gnu.org/licenses/>

bpro/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.

license_header.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.

src/controller/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.
1313

1414
pub mod utxo_lookup;

src/controller/utxo_lookup.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.
1313

1414
use gtk::prelude::GtkListStoreExtManual;
1515
use std::cell::RefCell;

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.
1313

1414
#![allow(dead_code)]
1515

src/model/descriptors.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Bitcoin Pro: Professional bitcoin accounts & assets management
2-
// Written in 2020 by
2+
// Written in 2020-2021 by
33
// Dr. Maxim Orlovsky <orlovsky@pandoracore.com>
44
//
55
// To the extent possible under law, the author(s) have dedicated all
66
// copyright and related and neighboring rights to this software to
77
// the public domain worldwide. This software is distributed without
88
// any warranty.
99
//
10-
// You should have received a copy of the AGPL License
10+
// You should have received a copy of the MIT License
1111
// along with this software.
12-
// If not, see <https://www.gnu.org/licenses/agpl-3.0-standalone.html>.
12+
// If not, see <https://opensource.org/licenses/MIT>.
1313

1414
use std::collections::HashMap;
1515

0 commit comments

Comments
 (0)