author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
234,915
09.11.2022 20:21:49
-19,620
f5deb100541b61422e7de04915d9b5c099956e47
Implemented `formats.ExcelControl.stringified` * Fixed casting int to string * Converts cell data to string while reading as done by csv reader * Added stringified param to excel parser Revised the code adding stringified param Fixed the test accordingly'
[ { "change_type": "ADD", "old_path": "data/cast-int-to-string-issue-1251.xls", "new_path": "data/cast-int-to-string-issue-1251.xls", "diff": "Binary files /dev/null and b/data/cast-int-to-string-issue-1251.xls differ\n" }, { "change_type": "ADD", "old_path": "data/cast-int-to-string-issue...
Python
MIT License
frictionlessdata/frictionless-py
Implemented `formats.ExcelControl.stringified` (#1259) * Fixed casting int to string * Converts cell data to string while reading as done by csv reader * Added stringified param to excel parser Revised the code adding stringified param Fixed the test accordingly'
234,915
09.11.2022 21:04:33
-19,620
6182dbae2d6549dee2b97f130f042a538892fabd
Fixes compatability of tabular data profile * Fixed serialization error of descriptor with profile * Changed resource.py file * Fixed the flow based on the feedback Ignore "data-package" Set resource type="table" if profile is "tabular-data-package" * Temporary fix for type error
[ { "change_type": "MODIFY", "old_path": "frictionless/package/package.py", "new_path": "frictionless/package/package.py", "diff": "@@ -832,10 +832,12 @@ class Package(Metadata):\n# Profiles\nprofiles = descriptor.get(\"profiles\", [])\nfor profile in profiles:\n+ if profile in [\"data-package\", \"ta...
Python
MIT License
frictionlessdata/frictionless-py
Fixes compatability of tabular data profile (#1275) * Fixed serialization error of descriptor with profile * Changed resource.py file * Fixed the flow based on the feedback Ignore "data-package" Set resource type="table" if profile is "tabular-data-package" * Temporary fix for type error Co-authored-by: roll <roll@users.noreply.github.com>
234,904
14.11.2022 04:41:47
10,800
de095a6984eb544545172f6c8d409bc4cf96c596
Link top bar to v4 docs directly fix
[ { "change_type": "MODIFY", "old_path": "livemark.yaml", "new_path": "livemark.yaml", "diff": "@@ -17,7 +17,7 @@ topics:\nnews:\ntext: |\nIt's a beta version of Frictionless Framework (v5).\n- Read <a href=\"https://v4.framework.frictionlessdata.io/\">Frictionless Framework (v4)</a>\n+ Read <a href=\...
Python
MIT License
frictionlessdata/frictionless-py
Link top bar to v4 docs directly (#1295) fix #1294
234,915
17.11.2022 12:02:20
-19,620
a935d27fe5f210f0024fc102a74971e2a520fcc2
Added api endpoints for move file feature Added function to list folders, create directory and move file
[ { "change_type": "MODIFY", "old_path": "frictionless/server/project.py", "new_path": "frictionless/server/project.py", "diff": "@@ -79,6 +79,11 @@ class Project:\nhelpers.write_file(path, body, mode=\"wb\")\nreturn file.filename\n+ def create_directory(self, path: str):\n+ path = str(self.public / p...
Python
MIT License
frictionlessdata/frictionless-py
Added api endpoints for move file feature (#1300) Added function to list folders, create directory and move file
234,915
18.11.2022 12:41:01
-19,620
96897016ccd08305109eb9ab1d14993bdee4511f
Updated documentation for sample_size and buffer_size
[ { "change_type": "MODIFY", "old_path": "docs/framework/detector.md", "new_path": "docs/framework/detector.md", "diff": "@@ -38,7 +38,7 @@ You just need to create a Detector instance using desired options and pass to th\n## Buffer Size\n-By default, Frictionless will use the first 10000 bytes to dete...
Python
MIT License
frictionlessdata/frictionless-py
Updated documentation for sample_size and buffer_size (#1303)
234,915
18.11.2022 14:15:34
-19,620
fe8c1ee5121ba5f88ebe598bfd1e63143c983945
Replaced pandas' deprecated iteritems with items
[ { "change_type": "MODIFY", "old_path": "frictionless/formats/pandas/parser.py", "new_path": "frictionless/formats/pandas/parser.py", "diff": "@@ -63,7 +63,7 @@ class PandasParser(Parser):\nschema.primary_key.append(name)\n# Fields\n- for name, dtype in dataframe.dtypes.iteritems(): # type: ignore\n+...
Python
MIT License
frictionlessdata/frictionless-py
Replaced pandas' deprecated iteritems with items (#1301)
234,912
22.11.2022 16:52:03
-10,800
5abb635bb8f355643eeb80e0ca1be814d935ab37
Moved erd format to its own module
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/formats/erd.md", "diff": "+# Erd Format\n+\n+```markdown remark type=warning\n+This documentation page is work-in-progress\n+```\n+\n+Frictionless supports exporting a data package as an ER-diagram `dot` file. For example:\n+\n+```python\n+...
Python
MIT License
frictionlessdata/frictionless-py
Moved erd format to its own module (#1326)
234,912
22.11.2022 17:24:14
-10,800
f1d2f0405b481efd9d340e657c2d90d7dde6314a
Moved jsonschema to its own module
[ { "change_type": "ADD", "old_path": null, "new_path": "docs/formats/jsonschema.md", "diff": "+# JsonSchema Format\n+\n+```markdown remark type=warning\n+This documentation page is work-in-progress\n+```\n+\n+Frictionless supports importing a JsonSchema profile as a Table Schema. For example:\n+\n+``...
Python
MIT License
frictionlessdata/frictionless-py
Moved jsonschema to its own module (#1327)
234,912
24.11.2022 17:32:51
-10,800
2adee7f18f45a2a36274808c59da4d3b6624fc87
Stricter "package.licenses" validation
[ { "change_type": "MODIFY", "old_path": "frictionless/package/package.py", "new_path": "frictionless/package/package.py", "diff": "@@ -529,6 +529,12 @@ class Package(Metadata):\nnote = 'property \"created\" is not valid \"datetime\"'\nyield errors.PackageError(note=note)\n+ # Licenses\n+ for item in ...
Python
MIT License
frictionlessdata/frictionless-py
Stricter "package.licenses" validation (#1333)
234,912
24.11.2022 18:06:40
-10,800
775b753aec2cd3788273abe187833aa7b1bac01c
Fixed BooleanField bug while reading an array
[ { "change_type": "ADD", "old_path": null, "new_path": "data/issue-1293/datapackage.json", "diff": "+{\n+ \"name\": \"sample\",\n+ \"resources\": [\n+ {\n+ \"name\": \"sample\",\n+ \"path\": \"sample.json\",\n+ \"format\": \"json\",\n+ \"schema\": {\n+ \"fields\": [\n+ {\n+ \"name\": \"field\",\n+ \"...
Python
MIT License
frictionlessdata/frictionless-py
Fixed BooleanField bug while reading an array (#1334)
234,915
01.12.2022 17:59:03
-19,620
88d83a21c656a595c6f78d7d20c58bdfd974290e
Formatting error in resource file due to version mismatch
[ { "change_type": "MODIFY", "old_path": "frictionless/formats/pandas/parser.py", "new_path": "frictionless/formats/pandas/parser.py", "diff": "@@ -198,12 +198,12 @@ class PandasParser(Parser):\n# Mapping\nmapping = {\n- \"array\": np.dtype(list),\n+ \"array\": np.dtype(list), # type: ignore\n\"boolea...
Python
MIT License
frictionlessdata/frictionless-py
Formatting error in resource file due to version mismatch (#1340)
234,915
01.12.2022 18:01:57
-19,620
9e8cd3815b05da7e817b51b1108764e0aea3be22
Added sheet param to describe command Added tests
[ { "change_type": "MODIFY", "old_path": "frictionless/program/describe.py", "new_path": "frictionless/program/describe.py", "diff": "@@ -7,6 +7,7 @@ from ..actions import describe\nfrom ..dialect import Dialect\nfrom ..system import system\nfrom .program import program\n+from .. import formats\nfrom ...
Python
MIT License
frictionlessdata/frictionless-py
Added sheet param to describe command (#1337) Added tests
234,912
12.01.2023 10:20:14
0
b515147789ffade6533b187835c9e57549a326e9
Allow leading zeroes to `fields.Integer/NumberField`
[ { "change_type": "MODIFY", "old_path": "frictionless/fields/integer.py", "new_path": "frictionless/fields/integer.py", "diff": "@@ -44,11 +44,6 @@ class IntegerField(Field):\nif pattern:\ncell = pattern.sub(\"\", cell)\n- # Forbid leading zeroes (e.g. 001, 00, 01)\n- if self.bare_number:\n- if len(c...
Python
MIT License
frictionlessdata/frictionless-py
Allow leading zeroes to `fields.Integer/NumberField` (#1377)
234,916
23.01.2023 12:42:25
-3,600
d8206e6184b7b8fe6fab3e4486de71f451f4df25
Typos on parquet doc
[ { "change_type": "MODIFY", "old_path": "docs/formats/parquet.md", "new_path": "docs/formats/parquet.md", "diff": "@@ -14,7 +14,7 @@ pip install 'frictionless[parquet]' # for zsh shell\n## Reading Data\n-You can read a Pandas dataframe:\n+You can read a Parquet file:\n```python script tabs=Python\nfr...
Python
MIT License
frictionlessdata/frictionless-py
Typos on parquet doc (#1391)
234,893
30.01.2023 13:06:06
-3,600
82b7162210d25a83e8e2cd10587be194f5c8614a
Update a CKAN dataset using the package name
[ { "change_type": "MODIFY", "old_path": "frictionless/portals/ckan/adapter.py", "new_path": "frictionless/portals/ckan/adapter.py", "diff": "@@ -142,11 +142,16 @@ class CkanAdapter(Adapter):\n# Assure that the package has a name\nif \"name\" not in package_data:\n- note = \"Your package has no name. ...
Python
MIT License
frictionlessdata/frictionless-py
Update a CKAN dataset using the package name (#1403)
234,915
03.02.2023 22:24:56
-19,620
c95ce156ef776962d13bbbbb9beed9d1548ccebe
Skip test for index feature
[ { "change_type": "MODIFY", "old_path": "tests/resource/index/test_general.py", "new_path": "tests/resource/index/test_general.py", "diff": "@@ -26,6 +26,7 @@ def test_resource_index_sqlite(database_url):\n# Fast\n+@pytest.mark.skip(reason=\"issue-1408\")\n@pytest.mark.parametrize(\"database_url\", d...
Python
MIT License
frictionlessdata/frictionless-py
Skip test for index feature (#1409)
234,915
03.02.2023 22:27:44
-19,620
a04c710de0d252a91ecb0e6fe7a88d9849d7700b
Replace to_sql with publish in documentation
[ { "change_type": "MODIFY", "old_path": "docs/formats/sql.md", "new_path": "docs/formats/sql.md", "diff": "@@ -41,7 +41,7 @@ You can write SQL databases:\nfrom frictionless import Package\npackage = Package('path/to/datapackage.json')\n-package.to_sql('postgresql://database')\n+package.publish('postg...
Python
MIT License
frictionlessdata/frictionless-py
Replace to_sql with publish in documentation (#1412)
234,915
07.02.2023 23:48:05
-19,620
bcc8a1f9c64743b65e7a104556dd52648342927b
Update contributing document * Update contributing document Add info about reproducing the cassettes locally * Added steps to reproduce cassettes
[ { "change_type": "MODIFY", "old_path": "CONTRIBUTING.md", "new_path": "CONTRIBUTING.md", "diff": "@@ -90,3 +90,57 @@ To release a new version:\n- add changes to `CHANGELOG.md` if it's not a patch release (major or micro)\n- run `make release` which create a release commit and tag and push it to Gith...
Python
MIT License
frictionlessdata/frictionless-py
Update contributing document (#1415) * Update contributing document Add info about reproducing the cassettes locally * Added steps to reproduce cassettes
714,133
15.04.2017 20:22:08
14,400
5f4f23167240f6323b51133dc4f777cb65759892
added some checkpoints.
[ { "change_type": "MODIFY", "old_path": "src/checkpoints.cpp", "new_path": "src/checkpoints.cpp", "diff": "@@ -37,6 +37,14 @@ namespace Checkpoints\n( 219912, uint256(\"0x00000000010751365b77b28dc6af3c33e6c620e45a166c659a2056dc7cb3af0a\"))\n( 222222, uint256(\"0x00000000003c92cf2938d35cf4006fc21a251d...
C++
MIT License
vergecurrency/verge
added some checkpoints.
714,098
17.04.2017 03:09:25
14,400
b95e156812ed9f3840860537f47dface7c8f19af
mac updates for travis build c/o
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -19,7 +19,7 @@ matrix:\nfile: 'release_windows.zip'\n- os: osx\n- osx_image: xcode7.2\n+ osx_image: xcode7.3\nenv: VERGE_PLATFORM='mac'\ncompiler: clang\nfile: 'release_mac.zip'\n" }, { "change_type"...
C++
MIT License
vergecurrency/verge
mac updates for travis build c/o @mkinney
714,098
23.04.2017 21:34:35
14,400
8d61a73cac6cb129786987130c86e7e82ff4a6e3
cleaned up wasn't accurate.
[ { "change_type": "MODIFY", "old_path": "src/main.h", "new_path": "src/main.h", "diff": "@@ -36,7 +36,7 @@ static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;\nstatic const unsigned int MAX_INV_SZ = 50000;\nstatic const int64 MIN_TX_FEE = 10 * CENT;\nstatic const int64 MIN_RELAY_T...
C++
MIT License
vergecurrency/verge
cleaned up wasn't accurate.
714,098
30.04.2017 22:59:32
14,400
696201614acccf8fe84404552e36ed8e7cf3c2bb
add swap file info
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -42,7 +42,7 @@ Binary (pre-compiled) wallets are available on all platforms at [http://vergecur\nCompiling Linux Wallet on Ubuntu/Debian\n----------------------\n-Step 1. Install the depencies.\n+Step 1. Install...
C++
MIT License
vergecurrency/verge
add swap file info
714,098
06.05.2017 19:15:17
14,400
6319fe1796b19dcfda8a00d0e86e14c8a684025c
added blockchain download link
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -179,6 +179,9 @@ Want to use Docker?\nCheck out the [readme](https://github.com/vergecurrency/VERGE/tree/master/contrib/docker) for more information. [Official VERGE docker images](https://hub.docker.com/r/verge...
C++
MIT License
vergecurrency/verge
added blockchain download link
714,098
01.06.2017 01:37:17
14,400
ad111d0530174d536326308572edff52361f40df
some ui tweaks for next release
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/addressbookpage.ui", "new_path": "src/qt/forms/addressbookpage.ui", "diff": "<property name=\"toolTip\">\n<string>Double-click to edit address or label</string>\n</property>\n+ <property name=\"styleSheet\">\n+ <string notr=\"true\">\n+border-top-...
C++
MIT License
vergecurrency/verge
some ui tweaks for next release
714,133
17.06.2017 20:48:25
14,400
042ebaee6e6e1917c0c09a7e34bd7642c73f2203
edit edit and test for discord repository announcements
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -34,7 +34,7 @@ Specifications:\nTotal Supply\n------------\n-Approximately total reward: 16.5 Billion\n+Approximately total reward cap: 16.5 Billion\nBinary (pre-compiled) wallets are available on all platforms ...
C++
MIT License
vergecurrency/verge
edit edit and test for discord repository announcements
714,133
18.06.2017 21:49:30
14,400
1372f52dd7c0f63c8af095001c16e83952e50d1c
added vergecurrency.de
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -181,7 +181,9 @@ Check out the [readme](https://github.com/vergecurrency/VERGE/tree/master/contri\nWant to to download the blockchain instead of waiting/syncing? (quicker)\n------------\n-download this .zip file...
C++
MIT License
vergecurrency/verge
added vergecurrency.de
714,133
20.06.2017 02:14:35
14,400
84aa905631edb133143bb56f3e6deb17f782f71f
update binary locations.
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -36,7 +36,7 @@ Total Supply\nApproximately total reward cap: 16.5 Billion\n-Binary (pre-compiled) wallets are available on all platforms at [http://vergecurrency.com](http://vergecurrency.com/#wallets-top)\n+Bin...
C++
MIT License
vergecurrency/verge
update binary locations.
714,108
21.07.2017 07:32:35
14,400
f2f84091273119e799d8e89a26f8e0bbbd2d942c
Create go.sh same deployement than raspi but adapted for linux desktop
[ { "change_type": "ADD", "old_path": null, "new_path": "go.sh", "diff": "+#// full deployement : run sh go.sh\n+cd ~\n+sudo dd if=/dev/zero of=/swapfile1 bs=1024 count=524288\n+sudo mkswap /swapfile1\n+sudo chown root:root /swapfile1\n+sudo chmod 0600 /swapfile1\n+sudo swapon /swapfile1\n+\n+sudo apt...
C++
MIT License
vergecurrency/verge
Create go.sh same deployement than raspi but adapted for linux desktop
714,098
23.07.2017 21:34:16
14,400
3fa1d1a535da178b38fc0171379cef6f02f68f48
update clearnet seeds
[ { "change_type": "MODIFY", "old_path": "src/net.cpp", "new_path": "src/net.cpp", "diff": "@@ -1151,8 +1151,11 @@ void MapPort()\n// The first name is used as information source for addrman.\n// The second name should resolve to a list of seed addresses.\nstatic const char *strDNSSeed[][2] = {\n- {\"...
C++
MIT License
vergecurrency/verge
update clearnet seeds
714,098
26.07.2017 15:32:16
14,400
734a50ccb6bfce0d46d475829c8e6776db07aaab
update radio source
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/radio.ui", "new_path": "src/qt/forms/radio.ui", "diff": "<widget class=\"QWebView\" name=\"webView\" native=\"true\">\n<property name=\"url\" stdset=\"0\">\n<url>\n- <string>http://vergecurrency.com/radio/wallet.html</string>\n+ <string>http://rad...
C++
MIT License
vergecurrency/verge
update radio source
714,098
27.07.2017 15:03:15
14,400
79ab62c2de731c05457ea49de6151099d9b79874
faster syncing
[ { "change_type": "MODIFY", "old_path": "src/main.cpp", "new_path": "src/main.cpp", "diff": "@@ -283,10 +283,7 @@ bool CTransaction::ReadFromDisk(CTxDB& txdb, const uint256& hash, CTxIndex& txin\nbool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)\n{\n- SetNull();\n-...
C++
MIT License
vergecurrency/verge
faster syncing
714,098
13.10.2017 01:54:13
14,400
6e9620a84957d5d2909dcd32f1f609bb64a5b82f
updates to leveldb
[ { "change_type": "MODIFY", "old_path": "src/Makefile.am", "new_path": "src/Makefile.am", "diff": "@@ -137,6 +137,8 @@ libbitcoin_server_a_SOURCES = \\\nalert.cpp \\\ncheckpoints.cpp \\\ninit.cpp \\\n+ db.cpp \\\n+ txdb-leveldb \\\nbitcoinrpc.cpp \\\nkeystore.cpp \\\nmain.cpp \\\n@@ -153,8 +155,6 @@ ...
C++
MIT License
vergecurrency/verge
updates to leveldb
714,098
13.10.2017 01:57:06
14,400
6bc7f45aa769a665dbdae52d12c9f91323284d91
was missing stake modifier checksum calculation
[ { "change_type": "MODIFY", "old_path": "src/main.cpp", "new_path": "src/main.cpp", "diff": "@@ -2156,14 +2156,14 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c\nif (vtx[i].IsCoinStake())\nreturn DoS(100, error(\"CheckBlock() : coinstake in wrong position\"));\n- ...
C++
MIT License
vergecurrency/verge
was missing stake modifier checksum calculation
714,098
13.10.2017 02:18:50
14,400
150c7a90c0bcba4f29b45aeb8a166976c0a6bcf5
forgot a milli a milli a milli a milli milli
[ { "change_type": "MODIFY", "old_path": "src/main.cpp", "new_path": "src/main.cpp", "diff": "@@ -4661,7 +4661,7 @@ void GenerateBitcoins(bool fGenerate, CWallet* pwallet)\n{\nif (!NewThread(ThreadVERGEMiner, pwallet))\nprintf(\"Error: NewThread(ThreadVERGEMiner) failed\\n\");\n- Sleep(10);\n+ MilliSl...
C++
MIT License
vergecurrency/verge
forgot a milli a milli a milli a milli milli
714,098
13.10.2017 02:58:13
14,400
73a3618c9046ab59feeb93e300edab11ce352e44
relay tx update
[ { "change_type": "MODIFY", "old_path": "src/db.h", "new_path": "src/db.h", "diff": "@@ -24,7 +24,7 @@ class CWallet;\nextern unsigned int nWalletDBUpdated;\n-void ThreadFlushWalletDB(const std::string& strWalletFile);\n+void ThreadFlushWalletDB(void* parg);\nbool BackupWallet(const CWallet& wallet, ...
C++
MIT License
vergecurrency/verge
relay tx update
714,098
13.10.2017 22:00:27
14,400
3e6867f332926f46404516535ecd88d192469d46
multisig 2/2
[ { "change_type": "MODIFY", "old_path": "src/Makefile.am", "new_path": "src/Makefile.am", "diff": "@@ -91,6 +91,7 @@ BITCOIN_CORE_H = \\\nblake2.h \\\nblake2-impl.h \\\ndb.h \\\n+ txdb.h \\\ntxdb-leveldb.h \\\ninit.h \\\nkernel.h \\\n" }, { "change_type": "MODIFY", "old_path": "src/Makefi...
C++
MIT License
vergecurrency/verge
multisig 2/2
714,098
14.10.2017 01:20:50
14,400
9ff2fb8f2807fe4f1a04be12bd60e0019804447a
remove ip validation
[ { "change_type": "MODIFY", "old_path": "src/net.cpp", "new_path": "src/net.cpp", "diff": "@@ -356,7 +356,7 @@ bool GetMyExternalIP(CNetAddr& ipRet)\nconst char* pszKeyword;\nfor (int nLookup = 0; nLookup <= 1; nLookup++)\n- for (int nHost = 1; nHost <= 2; nHost++)\n+ for (int nHost = 1; nHost <= 1; ...
C++
MIT License
vergecurrency/verge
remove ip validation
714,098
14.10.2017 01:34:55
14,400
cb514b52c8935a9e0e3608aeed4e6d2f4672725a
remove git heads from wallet model header
[ { "change_type": "MODIFY", "old_path": "src/qt/walletmodel.h", "new_path": "src/qt/walletmodel.h", "diff": "@@ -9,22 +9,14 @@ class OptionsModel;\nclass AddressTableModel;\nclass TransactionTableModel;\nclass CWallet;\n-<<<<<<< HEAD\n-<<<<<<< HEAD\nclass CKeyID;\nclass CPubKey;\nclass COutput;\nclas...
C++
MIT License
vergecurrency/verge
remove git heads from wallet model header
714,098
14.10.2017 01:38:54
14,400
29fd5c10af8145eb1ba180f9b7ea370886cd07c7
remove overloading
[ { "change_type": "MODIFY", "old_path": "src/qt/walletmodel.h", "new_path": "src/qt/walletmodel.h", "diff": "@@ -127,9 +127,6 @@ public:\nvoid listLockedCoins(std::vector<COutPoint>& vOutpts);\nCWallet * getWallet();\n- bool getPubKey(const CKeyID &address, CPubKey& vchPubKeyOut) const;\n- CWallet * ...
C++
MIT License
vergecurrency/verge
remove overloading
714,098
14.10.2017 01:41:56
14,400
7a0287bc4758c50f432dedbca731a1e6671ac469
remove git headers from wallet model
[ { "change_type": "MODIFY", "old_path": "src/qt/walletmodel.cpp", "new_path": "src/qt/walletmodel.cpp", "diff": "@@ -377,18 +377,13 @@ void WalletModel::UnlockContext::CopyFrom(const UnlockContext& rhs)\n*this = rhs;\nrhs.relock = false;\n}\n-<<<<<<< HEAD\n-<<<<<<< HEAD\n+\nbool WalletModel::getPubKe...
C++
MIT License
vergecurrency/verge
remove git headers from wallet model
714,098
16.10.2017 20:41:10
14,400
e973c74eee1e89a6739ed0984d89b564a8605485
better boost detection
[ { "change_type": "MODIFY", "old_path": "src/m4/ax_boost_base.m4", "new_path": "src/m4/ax_boost_base.m4", "diff": "@@ -112,6 +112,12 @@ if test \"x$want_boost\" = \"xyes\"; then\n;;\nesac\n+ dnl some arches may advertise a cpu type that doesn't line up with their\n+ dnl prefix's cpu type. For example...
C++
MIT License
vergecurrency/verge
better boost detection
714,098
16.10.2017 20:58:46
14,400
e6af7408fb536ce21f9c91aeeac0d40804035c12
prevent invalid memory access on crafted sig
[ { "change_type": "MODIFY", "old_path": "src/key.cpp", "new_path": "src/key.cpp", "diff": "@@ -378,6 +378,10 @@ bool CKey::Verify(uint256 hash, const std::vector<unsigned char>& vchSigParam)\nif (vchSig.size() > 1 && vchSig[1] & 0x80)\n{\nunsigned char nLengthBytes = vchSig[1] & 0x7f;\n+\n+ if (vchSi...
C++
MIT License
vergecurrency/verge
prevent invalid memory access on crafted sig
714,098
16.10.2017 21:28:24
14,400
3de5ea95f254a3c1d37d73067fa95632982592fc
normalize sig lengths for openssl 32/64 compat
[ { "change_type": "MODIFY", "old_path": "src/key.cpp", "new_path": "src/key.cpp", "diff": "@@ -370,29 +370,90 @@ bool CKey::SetCompactSignature(uint256 hash, const std::vector<unsigned char>& v\nreturn false;\n}\n-bool CKey::Verify(uint256 hash, const std::vector<unsigned char>& vchSigParam)\n+static...
C++
MIT License
vergecurrency/verge
normalize sig lengths for openssl 32/64 compat
714,098
18.10.2017 21:22:48
14,400
d6f971c5073c11eec5f2979f7768ed5a9e649b1d
set minimum size of qt
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -80,7 +80,8 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nnotificator(0),\nrpcConsole(0)\n{\n- resize(900, 450);\n+ setMinimumSize(970,500);\n+ resize(970, 500);\nsetWindowTitle(tr(\"VERGE...
C++
MIT License
vergecurrency/verge
set minimum size of qt
714,116
10.11.2017 09:18:13
-3,600
0a3153a9e2cace0b21292d52bd1246231798042b
README.md change domain blockchain-zip
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -189,7 +189,7 @@ Check out the [readme](https://github.com/vergecurrency/VERGE/tree/master/contri\nWant to to download the blockchain instead of waiting/syncing? (quicker)\n------------\ndownload this .zip file,...
C++
MIT License
vergecurrency/verge
README.md change domain blockchain-zip
714,116
10.11.2017 10:17:05
-3,600
cbfabd7eccb40f34b585be14d0063f82c2c4ba70
simplify go.sh by using static download link verge-blockchain.com provides a static link now to download the latest Blockchain
[ { "change_type": "MODIFY", "old_path": "go.sh", "new_path": "go.sh", "diff": "@@ -214,19 +214,14 @@ echo \"rpcuser=\"$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 26 ; echo '') '\\\necho -n \"Do you wish to download the complete VERGE Blockchain (y/n)?\"\nread answer\nif echo \"$answer\" | grep -...
C++
MIT License
vergecurrency/verge
simplify go.sh by using static download link verge-blockchain.com provides a static link now to download the latest Blockchain
714,113
15.12.2017 20:53:19
-7,200
aa94cb083854f063660d01d69593c2df66d60a82
ubuntu14_container - working for windows (dec 2017), with compose example and config files
[ { "change_type": "ADD", "old_path": null, "new_path": "contrib/docker/ubuntu14_container/Dockerfile", "diff": "+FROM ubuntu:14.04\n+\n+RUN apt-get update\n+\n+RUN apt-get install -y build-essential\n+RUN apt-get install -y git\n+RUN apt-get install -y software-properties-common python-software-prope...
C++
MIT License
vergecurrency/verge
ubuntu14_container - working for windows (dec 2017), with compose example and config files
714,113
15.12.2017 21:03:45
-7,200
d01e862ca9eb0f0b8dbd162460bfe50cd0278e63
centos7/Dockerfile updated (working now)
[ { "change_type": "MODIFY", "old_path": "contrib/docker/centos7/Dockerfile", "new_path": "contrib/docker/centos7/Dockerfile", "diff": "@@ -4,14 +4,13 @@ MAINTAINER Mike Kinney <mike.kinney@gmail.com>\nRUN yum upgrade -y\nRUN yum install -y wget\n-RUN wget http://dl.fedoraproject.org/pub/epel/7/x86_64...
C++
MIT License
vergecurrency/verge
centos7/Dockerfile updated (working now)
714,113
15.12.2017 22:31:38
-7,200
6d5f55266f173030b985efa345c0a2a1c5cf672f
added nodes to conf
[ { "change_type": "MODIFY", "old_path": "contrib/docker/centos7/Dockerfile", "new_path": "contrib/docker/centos7/Dockerfile", "diff": "@@ -29,6 +29,8 @@ WORKDIR /coin/git\nRUN ./autogen.sh && ./configure --with-gui=qt5 && make && mv src/VERGEd /coin/VERGEd\n+ADD ./conf/VERGE.conf /root/.VERGE/VERGE.c...
C++
MIT License
vergecurrency/verge
added nodes to conf https://bitcointalk.org/index.php?topic=1365894.6700
714,127
20.12.2017 13:08:49
25,200
0ba9b24928d371dffb9a87a11507ac0f1177dc86
Updated icons Moved new icons on to branch. Removed unused icons
[ { "change_type": "MODIFY", "old_path": "src/qt/res/icons/address-book.png", "new_path": "src/qt/res/icons/address-book.png", "diff": "Binary files a/src/qt/res/icons/address-book.png and b/src/qt/res/icons/address-book.png differ\n" }, { "change_type": "MODIFY", "old_path": "src/qt/res/i...
C++
MIT License
vergecurrency/verge
Updated icons Moved new icons on to branch. Removed unused icons
714,127
20.12.2017 13:24:12
25,200
b851f2a18b7f8b71ba73570e3bfaf4df92eda69d
updated stylesheet Updated styles to match comps. Removed gradient hovers and selected states for now. More exploration is needed if that is a pattern to use going forward with the QT wallet. Removed button labels. Will only be using icons.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
updated stylesheet Updated styles to match comps. Removed gradient hovers and selected states for now. More exploration is needed if that is a pattern to use going forward with the QT wallet. Removed button labels. Will only be using icons.
714,127
20.12.2017 13:38:13
25,200
7b83094447ffdb1b9297e424b9f1dac4feef96f9
Removed button labels For this release the nav will only use icons and not have associating labels next to them.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -211,53 +211,42 @@ void BitcoinGUI::createActions()\n{\nQActionGroup *tabGroup = new QActionGroup(this);\n- overviewAction = new QAction(QIcon(\":/icons/overview\"), tr(\"&Overview\"), th...
C++
MIT License
vergecurrency/verge
Removed button labels For this release the nav will only use icons and not have associating labels next to them.
714,127
23.12.2017 08:17:33
25,200
2babe69c132f1f33014bc03d0a86400c6f3c8300
updated splash screen new clock icons
[ { "change_type": "MODIFY", "old_path": "src/qt/res/icons/clock1.png", "new_path": "src/qt/res/icons/clock1.png", "diff": "Binary files a/src/qt/res/icons/clock1.png and b/src/qt/res/icons/clock1.png differ\n" }, { "change_type": "MODIFY", "old_path": "src/qt/res/icons/clock2.png", "n...
C++
MIT License
vergecurrency/verge
updated splash screen new clock icons
714,127
23.12.2017 08:37:08
25,200
bf935e0ffa80684eb7b5169a67e16206e9dcfe4a
updated CSS Blockbrowser / block explorer
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/blockbrowser.ui", "new_path": "src/qt/forms/blockbrowser.ui", "diff": "</font>\n</property>\n<property name=\"text\">\n- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:20px; font-weight:600; color:#000000;&qu...
C++
MIT License
vergecurrency/verge
updated CSS Blockbrowser / block explorer
714,127
23.12.2017 08:52:44
25,200
be4ee49304a660d8df6d2afee1602d1772bad120
updated CSS changed border px width and color
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/rpcconsole.ui", "new_path": "src/qt/forms/rpcconsole.ui", "diff": "border-top-right-radius: 5px;\nborder-bottom-left-radius: 5px;\nborder-bottom-right-radius: 5px;\n-border: 2px solid #000000;\n+border: 1px solid #0b3b47;\nmin-height: 25px;\nmax-h...
C++
MIT License
vergecurrency/verge
updated CSS changed border px width and color
714,127
23.12.2017 08:54:15
25,200
19755d8d2e698e0e440547ed02f874351b52c29e
updated CSS changed border width and color
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/aboutdialog.ui", "new_path": "src/qt/forms/aboutdialog.ui", "diff": "@@ -146,7 +146,7 @@ border-top-left-radius: 5px;\nborder-top-right-radius: 5px;\nborder-bottom-left-radius: 5px;\nborder-bottom-right-radius: 5px;\n-border: 2px solid #000000;\n+...
C++
MIT License
vergecurrency/verge
updated CSS changed border width and color
714,127
23.12.2017 13:57:38
25,200
67940e8ec7b982d74f3d884e43ac68e09f583a93
made boxes on overview white needs to be reviewed
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/overviewpage.ui", "new_path": "src/qt/forms/overviewpage.ui", "diff": "<string>Form</string>\n</property>\n<layout class=\"QHBoxLayout\" name=\"horizontalLayout\" stretch=\"1,1\">\n+border: 1px solid #ffffff;\n<item>\n<layout class=\"QVBoxLayout\"...
C++
MIT License
vergecurrency/verge
made boxes on overview white needs to be reviewed
714,128
23.12.2017 22:37:28
0
734a90c9b577179fbfe4aa33778bfb572878b87c
Add Stealth and SMessage RPC Files
[ { "change_type": "MODIFY", "old_path": "src/Makefile.am", "new_path": "src/Makefile.am", "diff": "@@ -156,6 +156,7 @@ libbitcoin_server_a_SOURCES = \\\nrpcmining.cpp \\\nrpcnet.cpp \\\nrpcrawtransaction.cpp \\\n+ rpcsmessage.cpp \\\n$(JSON_H) \\\n$(BITCOIN_CORE_H)\n@@ -166,6 +167,7 @@ libbitcoin_wal...
C++
MIT License
vergecurrency/verge
Add Stealth and SMessage RPC Files
714,128
24.12.2017 00:05:58
0
b28d3a69a04dd81321f705ee547b8bfe9ab12b1f
Swap back to int64
[ { "change_type": "MODIFY", "old_path": "src/rpcwallet.cpp", "new_path": "src/rpcwallet.cpp", "diff": "@@ -766,6 +766,7 @@ Value sendmany(const Array& params, bool fHelp)\nCReserveKey keyChange(pwalletMain);\nint64 nFeeRequired = 0;\nint nChangePos;\n+\nbool fCreated = pwalletMain->CreateTransaction(...
C++
MIT License
vergecurrency/verge
Swap back to int64
714,128
24.12.2017 00:44:15
0
707f925e5b356aee704441f69a77c852dc5d01b8
Switch to int64
[ { "change_type": "MODIFY", "old_path": "src/rpcsmessage.cpp", "new_path": "src/rpcsmessage.cpp", "diff": "@@ -795,7 +795,7 @@ Value smsgbuckets(const Array& params, bool fHelp)\nuint64_t nBytes = 0;\n{\nLOCK(cs_smsg);\n- std::map<int64_t, SecMsgBucket>::iterator it;\n+ std::map<int64, SecMsgBucket>:...
C++
MIT License
vergecurrency/verge
Switch to int64
714,128
24.12.2017 21:06:29
0
8104bc1d4f7a4f7d1e11799cef3e870048a9adbb
Fix Var types to fix linux compiling
[ { "change_type": "MODIFY", "old_path": "src/rpcwallet.cpp", "new_path": "src/rpcwallet.cpp", "diff": "@@ -765,7 +765,7 @@ Value sendmany(const Array& params, bool fHelp)\n// Send\nCReserveKey keyChange(pwalletMain);\nint64 nFeeRequired = 0;\n- int nChangePos;\n+ int32_t nChangePos;\nbool fCreated = ...
C++
MIT License
vergecurrency/verge
Fix Var types to fix linux compiling
714,103
24.12.2017 23:27:40
14,400
be6f5662697abb18445cead83d13dd2fabf7f2b7
Fix for invalid constructor method arguments for QIcon, just added blank strings.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -211,37 +211,37 @@ void BitcoinGUI::createActions()\n{\nQActionGroup *tabGroup = new QActionGroup(this);\n- overviewAction = new QAction(QIcon(\":/icons/overview\"), this);\n+ overviewAct...
C++
MIT License
vergecurrency/verge
Fix for invalid constructor method arguments for QIcon, just added blank strings.
714,103
25.12.2017 00:03:48
14,400
1650016549302cabfaafb2db7b1f63db28af6965
Add missing enum, fix undefined var references and some syntax errors to get this working with C++11
[ { "change_type": "MODIFY", "old_path": "src/qt/addresstablemodel.h", "new_path": "src/qt/addresstablemodel.h", "diff": "@@ -18,6 +18,14 @@ public:\nexplicit AddressTableModel(CWallet *wallet, WalletModel *parent = 0);\n~AddressTableModel();\n+ enum EAddressType {\n+ AT_Unknown = 0, /**< User specifi...
C++
MIT License
vergecurrency/verge
Add missing enum, fix undefined var references and some syntax errors to get this working with C++11
714,103
25.12.2017 01:17:48
14,400
efa30d90f24b293d2b6f2eb7f48fcad78dd2c52a
chatAction and radioAction are not set, and causing segfaults.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -250,7 +250,7 @@ void BitcoinGUI::createActions()\nconnect(blockAction, SIGNAL(triggered()), this, SLOT(gotoBlockBrowser()));\nconnect(overviewAction, SIGNAL(triggered()), this, SLOT(show...
C++
MIT License
vergecurrency/verge
chatAction and radioAction are not set, and causing segfaults.
714,096
26.12.2017 18:59:13
-3,600
6b2fb961c6fc6ed39228e918c3a6da35d21743a3
Fix typos in stealth.cpp
[ { "change_type": "MODIFY", "old_path": "src/stealth.cpp", "new_path": "src/stealth.cpp", "diff": "@@ -22,14 +22,14 @@ bool CStealthAddress::SetEncoded(const std::string& encodedAddress)\nif (!DecodeBase58(encodedAddress, raw))\n{\nif (fDebug)\n- printf(\"CStealthAddress::SetEncoded DecodeBase58 fali...
C++
MIT License
vergecurrency/verge
Fix typos in stealth.cpp
714,106
27.12.2017 01:49:22
0
d60a55e25cc460584750ad0f2c66da2adfd63c93
Removed all instances of radio.png and chat.png from project
[ { "change_type": "MODIFY", "old_path": "src/Makefile.qt.include", "new_path": "src/Makefile.qt.include", "diff": "@@ -113,9 +113,7 @@ BITCOIN_QT_H = \\\nRES_ICONS = \\\nqt/res/icons/add.png \\\n- qt/res/icons/chat.png \\\nqt/res/icons/social.png \\\n- qt/res/icons/radio.png \\\nqt/res/icons/block.pn...
C++
MIT License
vergecurrency/verge
Removed all instances of radio.png and chat.png from project
714,106
27.12.2017 01:50:25
0
c986cf5049827d694be9fe8d4db409a52bbc4d56
Removed CWallet::Lock() prototype declaration
[ { "change_type": "MODIFY", "old_path": "src/wallet.h", "new_path": "src/wallet.h", "diff": "@@ -151,7 +151,7 @@ public:\nbool AddCScript(const CScript& redeemScript);\nbool LoadCScript(const CScript& redeemScript) { return CCryptoKeyStore::AddCScript(redeemScript); }\n- bool Lock();\n+ // bool Lock(...
C++
MIT License
vergecurrency/verge
Removed CWallet::Lock() prototype declaration
714,106
27.12.2017 01:51:13
0
38744245bc060b00391bd5a1877717a8ae639ee7
Added creation of Desktop directory to go.sh in case it doesn't exist
[ { "change_type": "MODIFY", "old_path": "go.sh", "new_path": "go.sh", "diff": "@@ -237,7 +237,7 @@ else\nfi\n# Create Icon on Desktop and in menu\n-\n+mkdir -p ~/Desktop/\nsudo cp ~/VERGE/src/qt/res/icons/verge.png /usr/share/icons/\necho '#!/usr/bin/env xdg-open''\\n'\"[Desktop Entry]\"'\\n'\"Versio...
C++
MIT License
vergecurrency/verge
Added creation of Desktop directory to go.sh in case it doesn't exist
714,106
27.12.2017 02:08:16
0
0b6ec38a0e2384bbe885feede0ae6a8d533e50b3
Added check for file exist before backup
[ { "change_type": "MODIFY", "old_path": "go.sh", "new_path": "go.sh", "diff": "@@ -205,8 +205,10 @@ cd ~\n#// Create the config file with random user and password\n-mkdir ~/.VERGE\n-cp ~/.VERGE/VERGE.conf ~/.VERGE/VERGE.bak\n+mkdir -p ~/.VERGE\n+if [ -e ~/.VERGE/VERGE.conf ]; then\n+ cp -a ~/.VERGE/V...
C++
MIT License
vergecurrency/verge
Added check for file exist before backup
714,101
26.12.2017 16:51:49
18,000
7f003d018c1aca9a3c67912f832cf495d907cb1a
tidy up the readme Just cleaned up the snippets to make the markdown consistant. Fan of the project. Cheers!
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -41,9 +41,10 @@ Binary (pre-compiled) wallets are available on all platforms at [https://vergecu\nCompiling Linux Wallet on Ubuntu/Debian (faster)\n----------------------\n-```sudo rm -Rf ~/VERGE #(if you alread...
C++
MIT License
vergecurrency/verge
tidy up the readme Just cleaned up the snippets to make the markdown consistant. Fan of the project. Cheers!
714,131
29.12.2017 22:03:03
-3,600
bbcbffc089a68f40eae71bae36ec291777d2e3a6
initial support for openssl1.1
[ { "change_type": "MODIFY", "old_path": "contrib/easywinbuilder/set_vars.bat", "new_path": "contrib/easywinbuilder/set_vars.bat", "diff": "@set LANG=en_US.UTF8\n@set LC_ALL=en_US.UTF8\n-@set OPENSSL=openssl-1.0.1e\n+@set OPENSSL=openssl-1.1.0g\n@set BERKELEYDB=db-4.8.30.NC\n@set BOOST=boost_1_54_0\n@...
C++
MIT License
vergecurrency/verge
initial support for openssl1.1
714,127
29.12.2017 22:32:04
25,200
da918fa8ee7db34b3ce91b572a8c444b8f0b4262
Update to QLabel on Overview and revised background image 1. Changed Qlabel to be white from the default red. 2. Updated background image to show more the mountain
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/overviewpage.ui", "new_path": "src/qt/forms/overviewpage.ui", "diff": "@@ -50,7 +50,7 @@ border: 1px solid #ffffff;\n<string>The displayed information may be out of date. Your wallet automatically synchronizes with the VERGE network after a connec...
C++
MIT License
vergecurrency/verge
Update to QLabel on Overview and revised background image 1. Changed Qlabel to be white from the default red. 2. Updated background image to show more the mountain
714,127
29.12.2017 22:41:16
25,200
af053f9a6ef088e98e3876b5c374457e7ff1735c
Updated toolbar to center align icons Icons in the toolbar should now be centered and the background is transparent
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
Updated toolbar to center align icons Icons in the toolbar should now be centered and the background is transparent
714,127
29.12.2017 23:18:55
25,200
f04cebb7c30cc6fca147058e0267e8b60cd84a9d
Update to text color on Block Explorer Changed to white
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/blockbrowser.ui", "new_path": "src/qt/forms/blockbrowser.ui", "diff": "</font>\n</property>\n<property name=\"text\">\n- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:20px; font-weight:400; color:#0b3b47;&qu...
C++
MIT License
vergecurrency/verge
Update to text color on Block Explorer Changed to white
714,127
29.12.2017 23:23:40
25,200
a56e01bc44625077632b8228163ef7cb8d465e93
Update to text color on Overview Changed to white
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/overviewpage.ui", "new_path": "src/qt/forms/overviewpage.ui", "diff": "@@ -40,7 +40,7 @@ border: 1px solid #ffffff;\n</font>\n</property>\n<property name=\"text\">\n- <string>Wallet</string>\n+ <string>color:#ffffff; Wallet</string>\n</property>\n...
C++
MIT License
vergecurrency/verge
Update to text color on Overview Changed to white
714,127
30.12.2017 06:31:32
25,200
426ff938704a3f6648410c6fd7b838a4b669c4dc
Update to text color on Address Book Updates. 1. Changed text color to white 2. Removed icon in buttona 3. Mad buttons flat with branded Verge colors
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/addressbookpage.ui", "new_path": "src/qt/forms/addressbookpage.ui", "diff": "<item>\n<widget class=\"QLabel\" name=\"labelExplanation\">\n<property name=\"text\">\n- <string>These are your VERGE addresses for receiving payments. You may want to gi...
C++
MIT License
vergecurrency/verge
Update to text color on Address Book Updates. 1. Changed text color to white 2. Removed icon in buttona 3. Mad buttons flat with branded Verge colors
714,127
30.12.2017 07:16:44
25,200
3eb28c992c00d17e1d496c4189c29275fd38f3a6
final ui updates
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
final ui updates
714,127
30.12.2017 07:29:02
25,200
361762d4664f977c1fa3ecc80b1b57e5fa7732dc
Cleanup on Send
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/sendcoinsentry.ui", "new_path": "src/qt/forms/sendcoinsentry.ui", "diff": "</property>\n<property name=\"icon\">\n<iconset resource=\"../bitcoin.qrc\">\n- <normaloff>:/icons/address-book</normaloff>:/icons/address-book</iconset>\n+ <normaloff>:/ic...
C++
MIT License
vergecurrency/verge
Cleanup on Send
714,127
30.12.2017 13:21:39
25,200
50a48222381e09f9523a1a861ca8ce79ddbcd8c5
update width&height button
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/addressbookpage.ui", "new_path": "src/qt/forms/addressbookpage.ui", "diff": "@@ -78,10 +78,10 @@ border-bottom-right-radius: 5px;\nborder: 1px solid #00CBFF;\ncolor: #266779;\nbackground: #00CBFF;\n-min-width: 40px;\n-max-width: 40px;\n-min-height...
C++
MIT License
vergecurrency/verge
update width&height button
714,127
30.12.2017 21:02:07
25,200
ee1f5b33d587a9198dd8af978536b097b99a957e
block exploerer update
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/blockbrowser.ui", "new_path": "src/qt/forms/blockbrowser.ui", "diff": "@@ -127,11 +127,12 @@ border-top-right-radius: 5px;\nborder-bottom-left-radius: 5px;\nborder-bottom-right-radius: 5px;\nborder: 1px solid #ffffff;\n+color: #ffffff;\nmin-height...
C++
MIT License
vergecurrency/verge
block exploerer update
714,127
30.12.2017 23:01:25
25,200
7e0646a57f73423b68497700a618f58c1432ba8c
address book/send updates
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/addressbookpage.ui", "new_path": "src/qt/forms/addressbookpage.ui", "diff": "<layout class=\"QVBoxLayout\" name=\"verticalLayout\">\n<item>\n<widget class=\"QLabel\" name=\"labelExplanation\">\n+ <property name=\"styleSheet\">\n+ <string notr=\"tr...
C++
MIT License
vergecurrency/verge
address book/send updates
714,129
31.12.2017 01:56:05
28,800
26cdb2cc72c380da9675adb3f6730c358a868f64
fix for issue fix mac qt download link update qt version to match version in build.sh remove extra trailing whitespaces
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -134,19 +134,19 @@ To compile on Mac (OSX El Capitan, but test compiled on Mountain Lion v10.8):\n`brew uninstall qt qt5 qt55 qt52`\n-2. Download [qt5.4.2](https://download.qt.io/official_releases/qt/5.4/5.4.2/q...
C++
MIT License
vergecurrency/verge
fix for issue #166 - fix mac qt download link - update qt version to match version in build.sh - remove extra trailing whitespaces
714,127
31.12.2017 05:48:12
25,200
67fb97ccc53394f822c22bbdd9e3aae873af05e9
fix to text color on Address
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/addressbookpage.ui", "new_path": "src/qt/forms/addressbookpage.ui", "diff": "<layout class=\"QVBoxLayout\" name=\"verticalLayout\">\n<item>\n<widget class=\"QLabel\" name=\"labelExplanation\">\n- <property name=\"styleSheet\">\n- <string notr=\"tr...
C++
MIT License
vergecurrency/verge
fix to text color on Address
714,127
31.12.2017 05:53:28
25,200
1ebf39530af4b8b2ace211a08da90dd357f390be
update to Block explorer
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/blockbrowser.ui", "new_path": "src/qt/forms/blockbrowser.ui", "diff": "<widget class=\"QPushButton\" name=\"txButton\">\n<property name=\"styleSheet\">\n<string notr=\"true\">\n-border-top-left-radius: 5px;\n-border-top-right-radius: 5px;\n-border...
C++
MIT License
vergecurrency/verge
update to Block explorer
714,127
31.12.2017 06:43:41
25,200
4306878bc96d0941e0c2485aa044bbca3d3acb7c
Update to Actions Toolbar Changed the setToolButtonStyle to display icon only. removed some unused code in QAction next to the icon. Center aligned icons in toolbar.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
Update to Actions Toolbar Changed the setToolButtonStyle to display icon only. removed some unused code in QAction next to the icon. Center aligned icons in toolbar.
714,127
31.12.2017 06:52:09
25,200
962fb22dc7a917635e3df0d44fe48fdde10fbbd9
removed #toolbar2 and 3 bg colors Made transparent. Controlling hover states?
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
removed #toolbar2 and 3 bg colors Made transparent. Controlling hover states?
714,127
31.12.2017 09:45:32
25,200
274c21cdd05bcd7b5494ff843dfcf6fbca769dbd
Recommit "Update to Actions Toolbar"
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
Recommit "Update to Actions Toolbar"
714,127
31.12.2017 09:51:05
25,200
6a03c553ccbae4ca141e082b31cb9e1e98aa61ea
seperated CSS for Qlabel and Qtoolbar Needed additional styling on Qtoolbar that did not apply to Qlabel
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
seperated CSS for Qlabel and Qtoolbar Needed additional styling on Qtoolbar that did not apply to Qlabel
714,127
31.12.2017 10:05:50
25,200
441b4d123a772a7f258cb150e0910ae09fc53664
quick fix to QAction link
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -211,43 +211,43 @@ void BitcoinGUI::createActions()\n{\nQActionGroup *tabGroup = new QActionGroup(this);\n- overviewAction = new QAction(QIcon(\":/icons/overview\"), this);\n+ overviewAct...
C++
MIT License
vergecurrency/verge
quick fix to QAction link
714,098
31.12.2017 16:43:12
18,000
1514a8bbef18dd0c4e08e873fa762d9c112ebcd3
update send page update for stealth transaction sending
[ { "change_type": "MODIFY", "old_path": "src/qt/sendcoinsentry.cpp", "new_path": "src/qt/sendcoinsentry.cpp", "diff": "#include \"walletmodel.h\"\n#include \"optionsmodel.h\"\n#include \"addresstablemodel.h\"\n+#include \"stealth.h\"\n#include <QApplication>\n#include <QClipboard>\n+#include <QDebug>...
C++
MIT License
vergecurrency/verge
update send page update for stealth transaction sending
714,098
31.12.2017 17:14:28
18,000
1d1d564e9b9a8eaeed02c9ef42521c06d7db3372
edit ui for stealth addr display
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/editaddressdialog.ui", "new_path": "src/qt/forms/editaddressdialog.ui", "diff": "@@ -69,6 +69,23 @@ border-bottom-left-radius: 5px;\nborder-bottom-right-radius: 5px;\nborder: 2px solid #000000;\nmin-height: 25px;\n+max-height: 25px;</string>\n+ </...
C++
MIT License
vergecurrency/verge
edit ui for stealth addr display
714,098
31.12.2017 17:19:46
18,000
2adeecf3d82364fc5db3d0827bea895519ef2cc4
more stealth updates
[ { "change_type": "MODIFY", "old_path": "src/qt/editaddressdialog.cpp", "new_path": "src/qt/editaddressdialog.cpp", "diff": "@@ -19,16 +19,24 @@ EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :\ncase NewReceivingAddress:\nsetWindowTitle(tr(\"New receiving address\"));\nui->addressEd...
C++
MIT License
vergecurrency/verge
more stealth updates
714,098
31.12.2017 18:16:06
18,000
8cc595518063ce8715f5bb687dd64da65ffda2f4
update addresstablemodel for stealth
[ { "change_type": "MODIFY", "old_path": "src/qt/addresstablemodel.cpp", "new_path": "src/qt/addresstablemodel.cpp", "diff": "#include \"wallet.h\"\n#include \"base58.h\"\n+#include \"stealth.h\"\n#include <QFont>\n#include <QColor>\n@@ -21,10 +22,11 @@ struct AddressTableEntry\nType type;\nQString la...
C++
MIT License
vergecurrency/verge
update addresstablemodel for stealth
714,098
31.12.2017 21:59:25
18,000
508dcfca96d22a0225e7eb350c0dea1b667fdc28
fix fee issue
[ { "change_type": "MODIFY", "old_path": "src/wallet.cpp", "new_path": "src/wallet.cpp", "diff": "@@ -1465,11 +1465,13 @@ bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CW\nwtxNew.BindWallet(this);\n{\n+ CTxDB txdb(\"r\");\nLOCK2(cs_main, cs_wallet);\n// txdb must be ope...
C++
MIT License
vergecurrency/verge
fix fee issue
714,131
01.01.2018 04:54:46
-3,600
34ca69b2df18649c7a366a2f8e0474c2a90becc0
fix for fee issue
[ { "change_type": "MODIFY", "old_path": "src/wallet.cpp", "new_path": "src/wallet.cpp", "diff": "@@ -1450,7 +1450,7 @@ bool CWallet::CreateCoinStake(const CKeyStore& keystore, unsigned int nBits, int\n}\n-bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew,...
C++
MIT License
vergecurrency/verge
fix for fee issue
714,098
31.12.2017 23:15:32
18,000
a48591e4e475d0392ba9fafb53dc955560108767
update ver and year
[ { "change_type": "MODIFY", "old_path": "src/clientversion.h", "new_path": "src/clientversion.h", "diff": "// client versioning and copyright year\n//\n// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it\n-#define CLIENT_VERSION_MAJOR 2\n-#define CLIENT_VERSION_MINOR 1...
C++
MIT License
vergecurrency/verge
update ver and year
714,127
01.01.2018 02:08:28
25,200
ed5009af67d4ad36b6dd5acb299f7c3cf5fb6372
Fix CSS This should fix the issues for Block Explorer. Does not look right currently.
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,7 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n- qApp->setStyleSheet(\"QM...
C++
MIT License
vergecurrency/verge
Fix CSS This should fix the issues for Block Explorer. Does not look right currently.
714,127
01.01.2018 02:53:21
25,200
610b045410b94a9d31785a43187df71a529fdbfc
Quick fix (necessary) Block Explorer
[ { "change_type": "MODIFY", "old_path": "src/qt/forms/blockbrowser.ui", "new_path": "src/qt/forms/blockbrowser.ui", "diff": "</font>\n</property>\n<property name=\"text\">\n- <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;span style=&quot; font-size:20px; font-weight:400; color:#0b3b47;&qu...
C++
MIT License
vergecurrency/verge
Quick fix (necessary) Block Explorer
714,127
01.01.2018 08:38:19
25,200
7908f64167662f1852e82c855a00e4a66510fc74
quick fixess for Block Explorer
[ { "change_type": "MODIFY", "old_path": "src/qt/bitcoingui.cpp", "new_path": "src/qt/bitcoingui.cpp", "diff": "@@ -83,11 +83,7 @@ BitcoinGUI::BitcoinGUI(QWidget *parent):\nsetMinimumSize(970,500);\nresize(970, 500);\nsetWindowTitle(tr(\"VERGE\") + \" - \" + tr(\"Wallet\"));\n-<<<<<<< HEAD\nqApp->setS...
C++
MIT License
vergecurrency/verge
quick fixess for Block Explorer
714,098
01.01.2018 11:21:04
18,000
814784f2c9ad72e3752759835bbbdcfe45490b3f
remove radio and chat completely
[ { "change_type": "MODIFY", "old_path": "src/Makefile.qt.include", "new_path": "src/Makefile.qt.include", "diff": "@@ -18,8 +18,6 @@ QT_FORMS_UI = \\\nqt/forms/sendcoinsdialog.ui \\\nqt/forms/sendcoinsentry.ui \\\nqt/forms/signverifymessagedialog.ui \\\n- qt/forms/chatwindow.ui \\\n- qt/forms/radio.u...
C++
MIT License
vergecurrency/verge
remove radio and chat completely