Skip to content

Commit 5d38c46

Browse files
Merge pull request #26 from absolute-community/v12.2.5PR13.6
V12.2.5 PR13.6
2 parents b19da16 + 209082f commit 5d38c46

File tree

82 files changed

+2200
-816
lines changed

Some content is hidden

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

82 files changed

+2200
-816
lines changed

.gitignore

Lines changed: 133 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,135 @@
1+
*.sublime-project
2+
*.sublime-workspace
3+
todo.txt
4+
reset-files.bash
15

2-
object_script..Release
3-
object_script..Debug
4-
Makefile.Release
5-
Makefile.Debug
6+
*.tar.gz
7+
8+
*.exe
9+
src/absolute
10+
src/absoluted
11+
src/absolute-cli
12+
src/absolute-tx
13+
src/test/test_absolute
14+
src/qt/test/test_absolute-qt
15+
src/bench/bench_absolute
16+
17+
# autoreconf
18+
Makefile.in
19+
aclocal.m4
20+
autom4te.cache/
21+
build-aux/config.guess
22+
build-aux/config.sub
23+
build-aux/depcomp
24+
build-aux/install-sh
25+
build-aux/ltmain.sh
26+
build-aux/m4/libtool.m4
27+
build-aux/m4/lt~obsolete.m4
28+
build-aux/m4/ltoptions.m4
29+
build-aux/m4/ltsugar.m4
30+
build-aux/m4/ltversion.m4
31+
build-aux/missing
32+
build-aux/compile
33+
build-aux/test-driver
34+
config.log
35+
config.status
36+
configure
37+
libtool
38+
src/config/absolute-config.h
39+
src/config/absolute-config.h.in
40+
src/config/stamp-h1
41+
share/setup.nsi
42+
share/qt/Info.plist
43+
44+
src/univalue/gen
45+
46+
src/qt/*.moc
47+
src/qt/moc_*.cpp
48+
src/qt/forms/ui_*.h
49+
50+
src/qt/test/moc*.cpp
51+
libconftest.dylib*
52+
53+
.deps
54+
.dirstamp
55+
.libs
56+
.*.swp
57+
*.*~*
58+
*.bak
59+
*.rej
60+
*.orig
61+
*.pyc
62+
*.o
63+
*.o-*
64+
*.patch
65+
.absolute
66+
*.a
67+
*.pb.cc
68+
*.pb.h
69+
70+
*.log
71+
*.trs
72+
*.dmg
73+
74+
*.json.h
75+
*.raw.h
76+
77+
#libtool object files
78+
*.lo
79+
*.la
80+
81+
# Compilation and Qt preprocessor part
82+
*.qm
683
Makefile
7-
Makefile.Release
8-
Makefile.Release
84+
absolute-qt
85+
Absolute-Qt.app
86+
87+
# Unit-tests
88+
Makefile.test
89+
absolute-qt_test
90+
src/test/buildenv.py
91+
92+
# Resources cpp
93+
qrc_*.cpp
94+
95+
# Mac specific
96+
.DS_Store
97+
build
98+
99+
#lcov
100+
*.gcno
101+
*.gcda
102+
/*.info
103+
test_absolute.coverage/
104+
total.coverage/
105+
coverage_percent.txt
106+
107+
#build tests
108+
linux-coverage-build
109+
linux-build
110+
win32-build
111+
qa/pull-tester/run-bitcoind-for-test.sh
112+
qa/pull-tester/tests_config.py
113+
qa/pull-tester/cache/*
114+
qa/pull-tester/test.*/*
115+
qa/tmp
116+
cache/
117+
share/BitcoindComparisonTool.jar
118+
119+
!src/leveldb*/Makefile
120+
121+
.cproject
122+
.project
123+
.autotools
124+
/doc/doxygen/
125+
126+
libabsoluteconsensus.pc
127+
contrib/devtools/split-debug.sh
128+
src/qt/absolute-qt.bash
129+
qa/pull-tester/tests-config.sh
130+
131+
#development symlinks
132+
absolute-cli
133+
absoluted
134+
absolute-qt
135+
make

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ env:
4949
# No wallet
5050
- HOST=x86_64-unknown-linux-gnu PPA="ppa:bitcoin/bitcoin" PACKAGES="python3" DEP_OPTS="NO_WALLET=1" RUN_TESTS=true GOAL="install" BITCOIN_CONFIG="--enable-glibc-back-compat --enable-reduce-exports"
5151
# Cross-Mac
52-
- HOST=x86_64-apple-darwin11 PPA="ppa:bitcoin/bitcoin" PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python3-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.9 GOAL="deploy"
52+
- HOST=x86_64-apple-darwin11 PPA="ppa:bitcoin/bitcoin" PACKAGES="cmake imagemagick libcap-dev librsvg2-bin libz-dev libbz2-dev libtiff-tools python3-dev" BITCOIN_CONFIG="--enable-gui --enable-reduce-exports" OSX_SDK=10.11 GOAL="deploy"
5353

5454
before_install:
5555

56+
- git clone https://github.com/absolute-community/absolute_hash
5657
- travis_retry sudo apt-get install python3-pip python3-dev
5758
- travis_retry sudo add-apt-repository ppa:ubuntu-wine/ppa -y
5859
- export PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
@@ -68,6 +69,7 @@ install:
6869
- if [ -n "$DPKG_ADD_ARCH" ]; then sudo dpkg --add-architecture "$DPKG_ADD_ARCH" ; fi
6970
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get update; fi
7071
- if [ -n "$PACKAGES" ]; then travis_retry sudo apt-get install --no-install-recommends --no-upgrade -qq $PACKAGES; fi
72+
- cd absolute_hash && python3 setup.py install --user && cd ..
7173
before_script:
7274
- unset CC; unset CXX
7375
- unset DISPLAY

.tx/config

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[main]
2+
host = https://www.transifex.com
3+
4+
[absolute.qt-translation-012x]
5+
file_filter = src/qt/locale/absolute_<lang>.ts
6+
source_file = src/qt/locale/absolute_en.ts
7+
source_lang = en

0 commit comments

Comments
 (0)