repo string | commit string | message string | diff string |
|---|---|---|---|
hiroeorz/netdic | ea7865417032a58a027ed7f7d8d66be0f2dc86a6 | initial create | diff --git a/bin/netdic b/bin/netdic
new file mode 100755
index 0000000..1b0767b
--- /dev/null
+++ b/bin/netdic
@@ -0,0 +1,30 @@
+#!/usr/bin/env ruby
+
+require "netdic.rb"
+
+dic = NetDic.new
+
+dic.dictionary_list.each_with_index do |dictionary, i|
+ puts "#{i}: #{dictionary[:name]}"
+end
+
+print "select dictionary... |
hiroeorz/netdic | ebd7a53bc235e16212aa0191327bfc16375f2889 | Version bump to 0.0.0 | diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..77d6f4c
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+0.0.0
|
dusty/database_scripts | 13afbe894d8a269d83d5e7144772303867c29005 | whoops | diff --git a/import/group_imports.sh b/import/group_imports.sh
index d49ccab..56e7e21 100755
--- a/import/group_imports.sh
+++ b/import/group_imports.sh
@@ -1,53 +1,53 @@
#!/bin/bash
DB=$1
source 'COMMON.sh'
set_data_dir
check_data_dir
echo "Grouping files..."
cd $DATA_DIR
total=0
for file in ${DATA_DI... |
dusty/database_scripts | cc5e5f632b13746bf952a073d71d1f4c00048602 | write locks cause a timeout when split files are run by different threads - group all tables together | diff --git a/import/COMMON.sh b/import/COMMON.sh
index 46963ee..3f0715f 100644
--- a/import/COMMON.sh
+++ b/import/COMMON.sh
@@ -1,55 +1,55 @@
# define path to data
BASE_DIR=/mnt/database_exports/data
# local database authentication
LOCAL_DB_USER=
LOCAL_DB_PASS=
# remote database authentication
REMOTE_DB_US... |
dusty/database_scripts | df9ce143a18086046ab559c811cbd7463f652963 | convenience to create db | diff --git a/import/create_database.sh b/import/create_database.sh
new file mode 100755
index 0000000..831dd58
--- /dev/null
+++ b/import/create_database.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+DB=$1
+
+source 'COMMON.sh'
+set_data_dir
+
+echo "Creating database ${DB}..."
+echo "create database ${DB}" | mysql -u${REMOTE_DB... |
dusty/database_scripts | ffe6b12b2f8e0fb884bfddbdfede3d4bd9889881 | spacing | diff --git a/import/export_database.sh b/import/export_database.sh
index 47895d6..5196579 100755
--- a/import/export_database.sh
+++ b/import/export_database.sh
@@ -1,11 +1,12 @@
#!/bin/bash
DB=$1
source 'COMMON.sh'
set_data_dir
reset_data_dir
echo "Exporting tables..."
mysqldump -u${LOCAL_DB_USER} -p${LOC... |
dusty/database_scripts | def6ce4b357e83c88cc4251b92b630d1757cf84d | extract common functions | diff --git a/import/COMMON.sh b/import/COMMON.sh
index da7749c..46963ee 100644
--- a/import/COMMON.sh
+++ b/import/COMMON.sh
@@ -1,21 +1,55 @@
# define path to data
BASE_DIR=/mnt/database_exports/data
# local database authentication
LOCAL_DB_USER=
LOCAL_DB_PASS=
# remote database authentication
REMOTE_DB_US... |
dusty/database_scripts | 2334846f71df4563297ff34769e19cab84685d26 | moving some variables into a common file | diff --git a/import/.COMMON.sh.swp b/import/.COMMON.sh.swp
new file mode 100644
index 0000000..68c7966
Binary files /dev/null and b/import/.COMMON.sh.swp differ
diff --git a/import/COMMON.sh b/import/COMMON.sh
new file mode 100644
index 0000000..da7749c
--- /dev/null
+++ b/import/COMMON.sh
@@ -0,0 +1,21 @@
+# define pa... |
dusty/database_scripts | 69b14ddcc87d9687fabc67ee32e485e20baae35b | split schemat push | diff --git a/import/README b/import/README
new file mode 100644
index 0000000..ffc1fe5
--- /dev/null
+++ b/import/README
@@ -0,0 +1,12 @@
+Work Flow
+
+# export_database.sh my_database
+# split_imports.sh my_database
+# group_imports.sh my_database
+# import_schema.sh my_database
+# import_data.sh my_database 1 &
+# i... |
dusty/database_scripts | eaace0dc0e47b562b1695a98add38b1f0df66dd8 | break into import_data and import_schema | diff --git a/import/import_data.sh b/import/import_data.sh
new file mode 100755
index 0000000..21a8b9e
--- /dev/null
+++ b/import/import_data.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+DB=$1
+GROUP=$2
+DB_USER=
+DB_PASS=
+DB_HOST=
+
+BASE_DIR=/mnt/database_exports/data
+
+if [ -n "$GROUP" ];then
+ DATA_DIR=${BASE_DIR}/${DB}
... |
dusty/database_scripts | e306f8e4adeb2d96ae821de247a91993fb7c52dd | cleaner notes | diff --git a/import/group_imports.sh b/import/group_imports.sh
index 47036d1..d5c3708 100755
--- a/import/group_imports.sh
+++ b/import/group_imports.sh
@@ -1,40 +1,41 @@
#!/bin/bash
DB=$1
NUM_GROUPS=5
BASE_DIR=/mnt/database_exports/data
DATA_DIR=${BASE_DIR}/${DB}
if [ $# -lt 1 ]; then
echo "Usage: group_e... |
dusty/database_scripts | 81f7c91f6ec1d1c216221f229999d78addc3d0f3 | group imports | diff --git a/import/group_imports.sh b/import/group_imports.sh
new file mode 100755
index 0000000..47036d1
--- /dev/null
+++ b/import/group_imports.sh
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+DB=$1
+NUM_GROUPS=5
+BASE_DIR=/mnt/database_exports/data
+DATA_DIR=${BASE_DIR}/${DB}
+
+if [ $# -lt 1 ]; then
+ echo "Usage: group_expo... |
dusty/database_scripts | 2a096b8b450a111ce1c2481f74466fe06443e7d6 | backup scripts too | diff --git a/backup/BACKUP_COMMON.sh b/backup/BACKUP_COMMON.sh
new file mode 100644
index 0000000..19f18ae
--- /dev/null
+++ b/backup/BACKUP_COMMON.sh
@@ -0,0 +1,66 @@
+## Rotation parameters
+WEEKLY_ROTATION_DAY="Sun"
+MONTHLY_ROTATION_DAY="01"
+
+## Directories
+TMP_DIR=/backup/tmp
+OUT_DIR=/backup/incoming
+DAILY_DI... |
dusty/database_scripts | 4fdc721cc7e8a87903937d27e4391ec82461710d | some db scripts | diff --git a/export_database.sh b/export_database.sh
new file mode 100755
index 0000000..16463c9
--- /dev/null
+++ b/export_database.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+DB=$1
+DB_USER=
+DB_PASS=
+DB_HOST=
+BASE_DIR=/mnt/database_exports/data
+DATA_DIR=${BASE_DIR}/${DB}
+
+if [ $# -lt 1 ]; then
+ echo "Usage: export_da... |
ttdonovan/rit-client | d68d3f6e3899b243abafc37617e94ab21fe119e8 | adding Rspec desc and it all pending | diff --git a/spec/rit_client/configuration_spec.rb b/spec/rit_client/configuration_spec.rb
new file mode 100644
index 0000000..b2d010c
--- /dev/null
+++ b/spec/rit_client/configuration_spec.rb
@@ -0,0 +1,29 @@
+require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
+
+describe RitClient::Configuration do
... |
ttdonovan/rit-client | 256a22bb352d62f042b732c3075a873ef8c40f46 | Added Gemfile for managing gem dependencies, using Jeweler for gem creation/management, added empty spec dir for tests (hopefully coming soon...) | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..45cd9dc
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+.bundle
+pkg
+test_jeweler
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..820df44
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,11 @@
+source :gemcutter
+
+group :runtime do
+ g... |
ttdonovan/rit-client | 6f0139c51369ee0ddd3ed84b41a579ecfc8ea533 | Version bump to 0.0.0 | diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..77d6f4c
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+0.0.0
|
ttdonovan/rit-client | 5a62e048835a3b96c0ba70f4afc36abfb3828108 | changing name from rit-rails to rit-client, goal is make gem framework independent | diff --git a/Manifest b/Manifest
index 934cd3c..bb18799 100644
--- a/Manifest
+++ b/Manifest
@@ -1,9 +1,9 @@
Manifest
README.md
Rakefile
TODO
-lib/rit_rails.rb
-lib/rit_rails/configuration.rb
-lib/rit_rails/errors.rb
-lib/rit_rails/plate.rb
-lib/rit_rails/rit_plate.rb
+lib/rit_client.rb
+lib/rit_client/configuratio... |
ttdonovan/rit-client | f596f6df0d53414aba3cc2b19dc3cd06865b8471 | initial rit-rails gem import, inspired by bdoll/rit_client | diff --git a/Manifest b/Manifest
new file mode 100644
index 0000000..934cd3c
--- /dev/null
+++ b/Manifest
@@ -0,0 +1,9 @@
+Manifest
+README.md
+Rakefile
+TODO
+lib/rit_rails.rb
+lib/rit_rails/configuration.rb
+lib/rit_rails/errors.rb
+lib/rit_rails/plate.rb
+lib/rit_rails/rit_plate.rb
diff --git a/README.md b/README.md... |
whb/test-mq | 6ba825c538a95b845aa5d7da901de84ee6a1c900 | add README.txt tail newline | diff --git a/README.txt b/README.txt
index cdedd31..42bd186 100644
--- a/README.txt
+++ b/README.txt
@@ -1,74 +1,74 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 9ef1706253a04a83da8b98f50748ffe36f22b1b0 | add one session one temp queue test | diff --git a/README.txt b/README.txt
index 4e3c006..cdedd31 100644
--- a/README.txt
+++ b/README.txt
@@ -1,73 +1,74 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | ffdcaf78cebe456a9809883b210ca5d88b33092f | add temporary queue create&delete test | diff --git a/README.txt b/README.txt
index a30856e..4e3c006 100644
--- a/README.txt
+++ b/README.txt
@@ -1,72 +1,73 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 30a8c8e9679286292effd7526906458d0dfa1b79 | hornetq change to 2.2.0.QA4 | diff --git a/config/client/hornetq/jndi.properties b/config/client/hornetq/jndi.properties
index acf81a1..9a2c8ff 100644
--- a/config/client/hornetq/jndi.properties
+++ b/config/client/hornetq/jndi.properties
@@ -1,5 +1,5 @@
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.p... |
whb/test-mq | 97470382ea012f231a889792c0dc92b9d3df465a | move maven repository to company inner repository | diff --git a/pom.xml b/pom.xml
index 6820dbf..dea372e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,150 +1,132 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://m... |
whb/test-mq | 62098b37e979b5a1563a665dca4a3aedca1de60a | change test queue and connectFactory to hornetq default | diff --git a/config/client/divertListener1.xml b/config/client/divertListener1.xml
index cd190e2..f40adb4 100644
--- a/config/client/divertListener1.xml
+++ b/config/client/divertListener1.xml
@@ -1,45 +1,45 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/... |
whb/test-mq | 94198c6219fa7bdbd03991736ae005651e9af4fa | Add expiry queue test | diff --git a/README.txt b/README.txt
index f096d76..a30856e 100644
--- a/README.txt
+++ b/README.txt
@@ -1,70 +1,72 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 828dd408d8c98342dff1ff0357bdba712d95cbb4 | Add fail exception test | diff --git a/config/client/failException.xml b/config/client/failException.xml
new file mode 100644
index 0000000..ca19ca3
--- /dev/null
+++ b/config/client/failException.xml
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi=... |
whb/test-mq | 9ad2ab8082c2925797cd72fe1fb9562981d58307 | Change exmpleQueue to properties variable | diff --git a/README.txt b/README.txt
index 784c676..f096d76 100644
--- a/README.txt
+++ b/README.txt
@@ -1,70 +1,70 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | ead8873720885ea672f426c4daadab5d6a569080 | Added divert mode test | diff --git a/README.txt b/README.txt
index e454992..784c676 100644
--- a/README.txt
+++ b/README.txt
@@ -1,65 +1,70 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | a81a7b6c2f833f1ce1c235deec213f8beada37c7 | add failover test | diff --git a/README.txt b/README.txt
index d18a627..e454992 100644
--- a/README.txt
+++ b/README.txt
@@ -1,62 +1,65 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 595f9966bafd86b0bef98cffbd4f6262c949cc4d | try redelivery message in transaction | diff --git a/README.txt b/README.txt
index 70cd3d9..d18a627 100644
--- a/README.txt
+++ b/README.txt
@@ -1,62 +1,62 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 47c2d5a150fab1b77ecb6b460ad148ab614d5939 | add 2 type listener | diff --git a/README.txt b/README.txt
index c9f3eb3..70cd3d9 100644
--- a/README.txt
+++ b/README.txt
@@ -1,59 +1,62 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 43ccc0dcf66e794bc2f8d6bcb9bfe06e93684a4e | add group message test | diff --git a/README.txt b/README.txt
index 0160f33..c9f3eb3 100644
--- a/README.txt
+++ b/README.txt
@@ -1,57 +1,59 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 4f42e42df3030575ce1315358307eb6efbf4dfad | add consumer serial execute test | diff --git a/README.txt b/README.txt
index 62910f2..0160f33 100644
--- a/README.txt
+++ b/README.txt
@@ -1,55 +1,57 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | c5305a921e63c531b38458b3f6358a08273fc70e | modify server.sh for hornetq_2.1.0 data dir | diff --git a/bin/server.sh b/bin/server.sh
index 06d0709..92e6886 100755
--- a/bin/server.sh
+++ b/bin/server.sh
@@ -1,30 +1,30 @@
#!/bin/sh
#Usage: server [activemq|hornetq] config_name
usage() {
echo "=================================="
echo "Usage: $0 activemq config_name"
echo " OR"
echo "Us... |
whb/test-mq | 4d2bacc7dc7e851ca0c686d2e946a2c65429aafc | add NoPersistenceSender and no-duralbe-queue | diff --git a/README.txt b/README.txt
index 874c84e..87e2b0e 100644
--- a/README.txt
+++ b/README.txt
@@ -1,53 +1,54 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 1d2d5a600cabe2585f2bd93da46dd5a29fec3043 | change hornetq async config to 2.1.0 | diff --git a/config/server/hornetq/async/hornetq-configuration.xml b/config/server/hornetq/async/hornetq-configuration.xml
index 1d77b44..a7e2f09 100644
--- a/config/server/hornetq/async/hornetq-configuration.xml
+++ b/config/server/hornetq/async/hornetq-configuration.xml
@@ -1,59 +1,69 @@
<configuration xmlns="urn:ho... |
whb/test-mq | b5bc0aa266fea88f4b1e5b45b421300b72e586a8 | hornetq update to 2.1.0 AND spring update to 3.0.2 | diff --git a/bin/server.bat b/bin/server.bat
index 28774da..250d370 100644
--- a/bin/server.bat
+++ b/bin/server.bat
@@ -1,31 +1,31 @@
@echo off
@rem Usage: server [activemq|hornetq] config_name
if "%1"=="activemq" goto :MAIN
if "%1"=="hornetq" goto :MAIN
:USAGE
echo =========================================... |
whb/test-mq | a0e96bd5d97e098c61d35a4128ff0db3f2db36da | migrate to linux | diff --git a/bin/client.sh b/bin/client.sh
old mode 100644
new mode 100755
index a65086f..297ce23
--- a/bin/client.sh
+++ b/bin/client.sh
@@ -1,11 +1,22 @@
#!/bin/sh
#Usage: client [activemq|hornetq] <spring_file.xml>
+usage() {
+ echo "=================================="
+ echo "Usage: $0 activemq <spring_file.x... |
whb/test-mq | 3cc6497c9374d10ffdee534d5e14739edaa0a7cf | add linux client script and show error client | diff --git a/bin/client.sh b/bin/client.sh
new file mode 100644
index 0000000..a65086f
--- /dev/null
+++ b/bin/client.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+#Usage: client [activemq|hornetq] <spring_file.xml>
+
+
+APP_HOME=/usr/local/test-mq
+CONFIG_DIR=config/client/horneq
+FILE_DIR=config/client
+FILE=jmsQueueSender.xml
+CP... |
whb/test-mq | 410fb81c9a9c8f5619cca3d02248395ec858cc34 | add hornetq no-persistent queue test | diff --git a/README.txt b/README.txt
index b9b38af..874c84e 100644
--- a/README.txt
+++ b/README.txt
@@ -1,52 +1,53 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | e5a25f38431840bb79fec56cf5cae007d1fea0b4 | add mapSender | diff --git a/README.txt b/README.txt
index 4616c11..b9b38af 100644
--- a/README.txt
+++ b/README.txt
@@ -1,51 +1,52 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | fb85d55c860d9e444ce8c50ebb102a3003150913 | add JAVA_OPTS for client | diff --git a/README.txt b/README.txt
index cd15add..4616c11 100644
--- a/README.txt
+++ b/README.txt
@@ -1,49 +1,51 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 53e0b28ccff22ad9ffa65f85da40f29481fbfd86 | add mq server multi configurations | diff --git a/README.txt b/README.txt
index 3f783a3..cd15add 100644
--- a/README.txt
+++ b/README.txt
@@ -1,46 +1,49 @@
hornetq-spring-examples
=========================
The origin example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework... |
whb/test-mq | 1bc6d1bfb1e26182c991d75cb5575cbfecd48339 | remove osgi jars in pom.xml | diff --git a/pom.xml b/pom.xml
index f1a3956..b15e377 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,149 +1,144 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://ma... |
whb/test-mq | b592621f3c4e8851ecbb4b2cc6ec24a4649f23ac | Add batch file usage help. | diff --git a/bin/client.bat b/bin/client.bat
index 5e77b94..536e405 100644
--- a/bin/client.bat
+++ b/bin/client.bat
@@ -1,17 +1,24 @@
@echo off
-@rem Usage client [activemq|hornetq] <spring_file.xml>
+@rem Usage: client [activemq|hornetq] <spring_file.xml>
-set APP_HOME=%~dp0..
+if "%1"=="activemq" goto :MAIN
+if "... |
whb/test-mq | bdd338f66d9a058bd419ae4bd36f435aefb93e33 | unified boot.xml name | diff --git a/bin/server.bat b/bin/server.bat
index 35465ce..eea11b1 100644
--- a/bin/server.bat
+++ b/bin/server.bat
@@ -1,20 +1,20 @@
@echo off
@rem Usage server [activemq|hornetq]
set APP_HOME=%~dp0..
if activemq==%1 (
set FILE_DIR=config\server\activemq
set FILE=boot.xml
set SERVER_OPTS=-Dactivemq.base... |
whb/test-mq | 308b005a69a7da2cc5b21898af5cf3ac4918e162 | change client-jndi.properties to jndi.properties for javax.naming.InitialContext | diff --git a/README.txt b/README.txt
index 7525c06..13093d0 100644
--- a/README.txt
+++ b/README.txt
@@ -1,57 +1,59 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | 1210408656404c588d2c26c559656c71eae89c94 | activemq and hornetq both ok | diff --git a/README.txt b/README.txt
index 24824de..7525c06 100644
--- a/README.txt
+++ b/README.txt
@@ -1,46 +1,57 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | a927c8dae7863b3a96bceb4ff9d59a58902dcd68 | refactor server to hornetq server | diff --git a/README.txt b/README.txt
index cb3bc01..24824de 100644
--- a/README.txt
+++ b/README.txt
@@ -1,46 +1,46 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | 805c3538cb2c65d95d26c28d62dc9ee61aa4f9e8 | modify hornetq data dir AND add jms receiver | diff --git a/README.txt b/README.txt
index 703f4f8..cb3bc01 100644
--- a/README.txt
+++ b/README.txt
@@ -1,45 +1,46 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | 27b26f31d181145df0b8240e304e59448c77039c | add jms sender test | diff --git a/README.txt b/README.txt
index 71ed931..703f4f8 100644
--- a/README.txt
+++ b/README.txt
@@ -1,42 +1,45 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | 5a7796edc8103feec7f37a138411aec592019b04 | change name to webx group | diff --git a/README.txt b/README.txt
index 9c60f9f..71ed931 100644
--- a/README.txt
+++ b/README.txt
@@ -1,42 +1,42 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | fe548cf5422cbe1192fea2bbf1357742ce58a989 | modify default 'waitForShutdown' to false | diff --git a/README.txt b/README.txt
index 4586a16..9c60f9f 100644
--- a/README.txt
+++ b/README.txt
@@ -1,42 +1,42 @@
hornetq-spring-examples
=========================
This example is created by Zemian Deng (saltnlight5 at mail dot com).
This project provide examples on how use HornetQ and Spring framework
toge... |
whb/test-mq | d06706e24524f83dde643c4ffe75ed9f82b593d2 | modify gitignore file bug | diff --git a/.gitignore b/.gitignore
index 71cd6fd..aa71386 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,5 @@
.settings
lib
.classpath
.project
-*/target/*
+target
|
whb/test-mq | 5c139b002f3fc464d6129b795dbd9f82d6651798 | add gitignore file | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..71cd6fd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+.settings
+lib
+.classpath
+.project
+*/target/*
|
whb/test-mq | 07da8d4edb2102dc0cc4a73bc6b9a44dbf345b03 | initial from hornetq-spring-examples-1.0 | diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..4586a16
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,42 @@
+hornetq-spring-examples
+=========================
+This example is created by Zemian Deng (saltnlight5 at mail dot com).
+
+This project provide examples on how use HornetQ and Spring frame... |
sreichholf/dreamDroid | ca2d529166c031b25bbe28d7ee4a9188a6705095 | Added support for http stream urls from bouquet lists | diff --git a/app/src/net/reichholf/dreamdroid/helpers/SimpleHttpClient.java b/app/src/net/reichholf/dreamdroid/helpers/SimpleHttpClient.java
index 26ac54f..5594b3c 100644
--- a/app/src/net/reichholf/dreamdroid/helpers/SimpleHttpClient.java
+++ b/app/src/net/reichholf/dreamdroid/helpers/SimpleHttpClient.java
@@ -1,405 +... |
sreichholf/dreamDroid | c6b5d2242847c800c557f589ab50ba3ab1cde020 | bump gradle | diff --git a/app/build.gradle b/app/build.gradle
index 228fdce..e54a317 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,153 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | 9a4400824c51dd9aadcbd64836dd65be444c9d1f | Bump version again... | diff --git a/app/build.gradle b/app/build.gradle
index 9724e1a..228fdce 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,150 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | 6dd914a4f1f6c439fc795e5fb964ddb79b1b7a95 | Cleanup all unused imports | diff --git a/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java b/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java
index fc7402c..db0102b 100644
--- a/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java
+++ b/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java... |
sreichholf/dreamDroid | 0414908a324225549a2715ddb5fc5ef73188161a | Fix Screenshot handling | diff --git a/app/src/net/reichholf/dreamdroid/fragment/ScreenShotFragment.java b/app/src/net/reichholf/dreamdroid/fragment/ScreenShotFragment.java
index bf2693a..d0c8be7 100644
--- a/app/src/net/reichholf/dreamdroid/fragment/ScreenShotFragment.java
+++ b/app/src/net/reichholf/dreamdroid/fragment/ScreenShotFragment.java... |
sreichholf/dreamDroid | cc143eba9adbd4c7ecd9b255da17bf7284d932f3 | Disable Mediaplayer | diff --git a/app/res/menu/navigation.xml b/app/res/menu/navigation.xml
index 9967fc8..8681b6f 100644
--- a/app/res/menu/navigation.xml
+++ b/app/res/menu/navigation.xml
@@ -1,113 +1,113 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<group android:chec... |
sreichholf/dreamDroid | d1ac879fd77d3b3afed5cff18179917fea0e525e | bump sdk + gradle | diff --git a/app/build.gradle b/app/build.gradle
index 2249fc8..9724e1a 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,150 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | a5b786098ccdd9e7da9e32fb0a5b6c4c3dfa5c4e | Fix Backup/Restore | diff --git a/app/res/layout/backup.xml b/app/res/layout/backup.xml
index bbc90a3..00eee84 100644
--- a/app/res/layout/backup.xml
+++ b/app/res/layout/backup.xml
@@ -1,56 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
-<androidx.core.widget.NestedScrollView
- xmlns:android="http://schemas.android.com/apk/res/andr... |
sreichholf/dreamDroid | 08d3e90a952ac7fb248c1244255f36eeca25d9bd | enable android.nonTransitiveRClass | diff --git a/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java b/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java
index edfdf31..94d3b43 100644
--- a/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java
+++ b/app/src/net/reichholf/dreamdroid/adapter/... |
sreichholf/dreamDroid | 2fb795031faf234fceea62ab0183dba05500ff8c | changelog | diff --git a/app/build.gradle b/app/build.gradle
index 150be1f..2249fc8 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,150 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | ea99139b5cd05288a2dc07b2801e903c1048c54f | AsyncTaskExecutorService: fix issues | diff --git a/app/src/net/reichholf/dreamdroid/asynctask/AsyncTaskExecutorService.java b/app/src/net/reichholf/dreamdroid/asynctask/AsyncTaskExecutorService.java
index d81c326..740edc8 100644
--- a/app/src/net/reichholf/dreamdroid/asynctask/AsyncTaskExecutorService.java
+++ b/app/src/net/reichholf/dreamdroid/asynctask/A... |
sreichholf/dreamDroid | faec147f68406164dcb11bcdc8d113610efc5330 | SignalFragment: fix gauge textColor | diff --git a/app/src/net/reichholf/dreamdroid/fragment/SignalFragment.java b/app/src/net/reichholf/dreamdroid/fragment/SignalFragment.java
index 0062376..1f089d2 100644
--- a/app/src/net/reichholf/dreamdroid/fragment/SignalFragment.java
+++ b/app/src/net/reichholf/dreamdroid/fragment/SignalFragment.java
@@ -1,312 +1,31... |
sreichholf/dreamDroid | 40433701215d6d99ae1938657b013bc539bb1c29 | MainActifity: fix profile checking on resume | diff --git a/app/src/net/reichholf/dreamdroid/activities/MainActivity.java b/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
index 6e4c710..c8fc3c8 100644
--- a/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
+++ b/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
@@ -1,750 +1,75... |
sreichholf/dreamDroid | a4b78a416b98c79708eaaff0c778e8f9981544c3 | Replace AsyncTask with an executor service based AsyncTaskExecutorService | diff --git a/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java b/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java
index 75fb197..fc7402c 100644
--- a/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java
+++ b/app/src/net/reichholf/dreamdroid/asynctask/AsyncHttpTaskBase.java... |
sreichholf/dreamDroid | 94178ae327f4cf1370ea2d98b80f2bc293a892d6 | upgrad gradle | diff --git a/app/build.gradle b/app/build.gradle
index 7bac795..150be1f 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,150 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | 382c22d6754e65548a43defc973ae2c02d96c168 | Translated using Weblate (Czech) | diff --git a/app/res/values-cs/strings.xml b/app/res/values-cs/strings.xml
index 3494534..40352cc 100644
--- a/app/res/values-cs/strings.xml
+++ b/app/res/values-cs/strings.xml
@@ -1,377 +1,377 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Popis</string>
<string name="titl... |
sreichholf/dreamDroid | 9bc7af88212d70c3718f9469bd8a4531be07f8f3 | Translated using Weblate (French) | diff --git a/app/res/values-fr/strings.xml b/app/res/values-fr/strings.xml
index 6d6b8f2..700539b 100644
--- a/app/res/values-fr/strings.xml
+++ b/app/res/values-fr/strings.xml
@@ -1,257 +1,260 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
-
<string name="description">Description</string>
<string na... |
sreichholf/dreamDroid | c26c26e39a888e1271228251efd55d969e979f34 | Translated using Weblate (Czech) | diff --git a/app/res/values-cs/strings.xml b/app/res/values-cs/strings.xml
index 9c663ee..3494534 100644
--- a/app/res/values-cs/strings.xml
+++ b/app/res/values-cs/strings.xml
@@ -1,241 +1,377 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Popis</string>
<string name="titl... |
sreichholf/dreamDroid | fd09dc44cdb0d09e397c4473516cf8495bbbe432 | Translated using Weblate (Czech) | diff --git a/app/res/values-cs/strings.xml b/app/res/values-cs/strings.xml
index 02b6bfc..9c663ee 100644
--- a/app/res/values-cs/strings.xml
+++ b/app/res/values-cs/strings.xml
@@ -1,230 +1,241 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
-
<string name="description">Popis</string>
<string name="ti... |
sreichholf/dreamDroid | 6e1c134a5be9ba03b3cf1bf5a4e108f5ddca7422 | Translated using Weblate (Arabic) | diff --git a/app/res/values-ar/strings.xml b/app/res/values-ar/strings.xml
index a030e0c..d74cc9a 100644
--- a/app/res/values-ar/strings.xml
+++ b/app/res/values-ar/strings.xml
@@ -1,235 +1,225 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
-
<string name="description">اÙÙØµÙ</string>
<string nam... |
sreichholf/dreamDroid | aabf6962e7852bd0f401892585c99a37a71fdf7b | Translated using Weblate (Italian) | diff --git a/app/res/values-it/strings.xml b/app/res/values-it/strings.xml
index 84510c0..708b074 100644
--- a/app/res/values-it/strings.xml
+++ b/app/res/values-it/strings.xml
@@ -1,376 +1,376 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Descrizione</string>
<string name... |
sreichholf/dreamDroid | 730564fd4d702deaf198fec2bd9c6d46fff9cc84 | Translated using Weblate (Spanish) | diff --git a/app/res/values-es/strings.xml b/app/res/values-es/strings.xml
index bcd9f3a..499fb13 100644
--- a/app/res/values-es/strings.xml
+++ b/app/res/values-es/strings.xml
@@ -1,377 +1,378 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Descripción</string>
<string nam... |
sreichholf/dreamDroid | bbda5c85bb9362fbcee0c87dc8509fcb16c9bb28 | VideoActivity: enforce a known-good state in "initialize()" | diff --git a/app/src/net/reichholf/dreamdroid/activities/VideoActivity.java b/app/src/net/reichholf/dreamdroid/activities/VideoActivity.java
index e31901e..a1239ae 100644
--- a/app/src/net/reichholf/dreamdroid/activities/VideoActivity.java
+++ b/app/src/net/reichholf/dreamdroid/activities/VideoActivity.java
@@ -1,448 +... |
sreichholf/dreamDroid | 1e19e219a3533f71a175a5529b488740d8f2bc5c | tv: fix preferences crash | diff --git a/app/res/layout/tv_preferences_main.xml b/app/res/layout/tv_preferences_main.xml
index 35ba155..31bec70 100644
--- a/app/res/layout/tv_preferences_main.xml
+++ b/app/res/layout/tv_preferences_main.xml
@@ -1,18 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.andr... |
sreichholf/dreamDroid | a386acc9e6ee464e85664389c3f18817a9b6e8b7 | MainActivity: replace mPaused with a proper lifecycle call | diff --git a/app/src/net/reichholf/dreamdroid/activities/MainActivity.java b/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
index 4752241..6e4c710 100644
--- a/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
+++ b/app/src/net/reichholf/dreamdroid/activities/MainActivity.java
@@ -1,749 +1,75... |
sreichholf/dreamDroid | 0a99d933faba5c9626a2f78b8f32a3a6ca9de171 | Translated using Weblate (Italian) | diff --git a/app/res/values-it/strings.xml b/app/res/values-it/strings.xml
index 4ba6d3c..84510c0 100644
--- a/app/res/values-it/strings.xml
+++ b/app/res/values-it/strings.xml
@@ -1,377 +1,376 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Descrizione</string>
<string name... |
sreichholf/dreamDroid | 885775f651b8a644ab9180f5e1e501c3723f5ae8 | Translated using Weblate (Italian) | diff --git a/app/res/values-it/strings.xml b/app/res/values-it/strings.xml
index ef0aea5..4ba6d3c 100644
--- a/app/res/values-it/strings.xml
+++ b/app/res/values-it/strings.xml
@@ -1,377 +1,377 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Descrizione</string>
<string name... |
sreichholf/dreamDroid | 3bc8084ce81fb26c26bf0cd13d3965bbbf4007d1 | Profile: default to ssl enabled | diff --git a/app/src/net/reichholf/dreamdroid/Profile.java b/app/src/net/reichholf/dreamdroid/Profile.java
index f8a5e1d..7659a98 100644
--- a/app/src/net/reichholf/dreamdroid/Profile.java
+++ b/app/src/net/reichholf/dreamdroid/Profile.java
@@ -1,622 +1,622 @@
/* © 2010 Stephan Reichholf <stephan at reichholf dot net... |
sreichholf/dreamDroid | 25953a071cbaa3ebe2dc23994caa835e4ebf0be2 | reload current profile when it was edited | diff --git a/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java b/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java
index d286304..4de0cbd 100644
--- a/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java
+++ b/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.... |
sreichholf/dreamDroid | 05654f67762d98e2fd3f2b19fdee4a3cc97b3d38 | default to ssl for demo profile | diff --git a/app/src/net/reichholf/dreamdroid/DreamDroid.java b/app/src/net/reichholf/dreamdroid/DreamDroid.java
index 8513eef..dc31761 100644
--- a/app/src/net/reichholf/dreamdroid/DreamDroid.java
+++ b/app/src/net/reichholf/dreamdroid/DreamDroid.java
@@ -1,570 +1,570 @@
/* © 2010 Stephan Reichholf <stephan at reich... |
sreichholf/dreamDroid | d5ea43b2bf70c9531ef740c9902e37ff79446ddb | Changelog: put the self-signed cert not on top so it's more obvious for people | diff --git a/app/res/raw-de/changelog.md b/app/res/raw-de/changelog.md
index cc9c4f6..3d02213 100644
--- a/app/res/raw-de/changelog.md
+++ b/app/res/raw-de/changelog.md
@@ -1,247 +1,248 @@
+### WICHTIG: Für https Verbindungen mit selbst signierten Zertifikaten muss ab sofort im jeweiligen Profil 'Alle Zertifikate' akt... |
sreichholf/dreamDroid | cca199c13bd6045de07b24bbf0f5acdb0c303fa8 | Translated using Weblate (Italian) | diff --git a/app/res/values-it/strings.xml b/app/res/values-it/strings.xml
index e7d77d9..ef0aea5 100644
--- a/app/res/values-it/strings.xml
+++ b/app/res/values-it/strings.xml
@@ -1,376 +1,377 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="description">Descrizione</string>
<string name... |
sreichholf/dreamDroid | 7c40e1ef4f94fbdfb3c5f5454f161f8f47545d2a | bump version | diff --git a/app/build.gradle b/app/build.gradle
index 87d9d7b..7bac795 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,150 +1,150 @@
buildscript {
repositories {
mavenCentral()
jcenter()
flatDir{
dirs 'libs'
}
google()
}
dependencies ... |
sreichholf/dreamDroid | 98f191ac8c2c8856dc5ff9753b6f95ee18c6c2e7 | workaround some layout quirks on android < 5.0/21 (it ain't pretty but it's better) | diff --git a/app/res/layout-sw600dp/service_list_item_nn.xml b/app/res/layout-sw600dp/service_list_item_nn.xml
index a56de6d..5f03ead 100644
--- a/app/res/layout-sw600dp/service_list_item_nn.xml
+++ b/app/res/layout-sw600dp/service_list_item_nn.xml
@@ -1,149 +1,149 @@
<?xml version="1.0" encoding="utf-8"?>
<com.googl... |
sreichholf/dreamDroid | 61b85bb7424f56502793ef3e43a66777431b5837 | fix old version compat | diff --git a/app/AndroidManifest.xml b/app/AndroidManifest.xml
index de36b09..6a24df5 100644
--- a/app/AndroidManifest.xml
+++ b/app/AndroidManifest.xml
@@ -1,216 +1,217 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schema... |
sreichholf/dreamDroid | 59ff1ef81e15c9a218323d2450aaacaa048fe550 | prettify state indicator for timer state/active profile | diff --git a/app/res/layout/timer_list_item.xml b/app/res/layout/timer_list_item.xml
index ef0b1ae..d87a691 100644
--- a/app/res/layout/timer_list_item.xml
+++ b/app/res/layout/timer_list_item.xml
@@ -1,116 +1,118 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:andro... |
sreichholf/dreamDroid | 0091be8bc769625f05ebb72f2dca9eaea3b9572f | ProfileAdapter: use colorAccent instead of custom hardcoded color | diff --git a/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java b/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java
index d6c0fd1..edfdf31 100644
--- a/app/src/net/reichholf/dreamdroid/adapter/recyclerview/ProfileAdapter.java
+++ b/app/src/net/reichholf/dreamdroid/adapter/... |
sreichholf/dreamDroid | b3f95dad98e33b1755b501c585262c6123d85bf1 | use TextInputEditText instead of EditText inside TextInputLayout | diff --git a/app/res/layout/profile_edit.xml b/app/res/layout/profile_edit.xml
index b8317be..e9051ad 100644
--- a/app/res/layout/profile_edit.xml
+++ b/app/res/layout/profile_edit.xml
@@ -1,441 +1,441 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
xmlns:android="http://schema... |
sreichholf/dreamDroid | 7f0415f69bd193a4b6701a87bce15a95ee6b2df2 | ProfileEditFragment: don't reset port when calling onSslChanged during onCreateView | diff --git a/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java b/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java
index 539939e..d286304 100644
--- a/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.java
+++ b/app/src/net/reichholf/dreamdroid/fragment/ProfileEditFragment.... |
sreichholf/dreamDroid | 32556c16dfe57cce99cc57fc402fd23066505795 | Make parent MaterialCardView of CheckableLinearLayout checkable, too, fixes checked BG color | diff --git a/app/res/layout/movie_list_item.xml b/app/res/layout/movie_list_item.xml
index 6495797..8eddd3c 100644
--- a/app/res/layout/movie_list_item.xml
+++ b/app/res/layout/movie_list_item.xml
@@ -1,80 +1,81 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
android:... |
sreichholf/dreamDroid | df65f8a24e7b9e54d513b0af8f0b32ef462be01c | ProfileEditFragment: minor visual improvements | diff --git a/app/res/layout/profile_edit.xml b/app/res/layout/profile_edit.xml
index 22f64cc..b8317be 100644
--- a/app/res/layout/profile_edit.xml
+++ b/app/res/layout/profile_edit.xml
@@ -1,440 +1,441 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
xmlns:android="http://schema... |
sreichholf/dreamDroid | c9aba1af81da023fceb904e59afc550a04b44331 | Improve Header visuals | diff --git a/app/res/values/styles.xml b/app/res/values/styles.xml
index 3e3937b..de79e7d 100644
--- a/app/res/values/styles.xml
+++ b/app/res/values/styles.xml
@@ -1,128 +1,128 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="CardTex... |
sreichholf/dreamDroid | 0c2c81f2575c32acfb8550b45dc58c9c988c1a8a | BackupFragment: Modernize code and looks | diff --git a/app/src/net/reichholf/dreamdroid/fragment/BackupFragment.java b/app/src/net/reichholf/dreamdroid/fragment/BackupFragment.java
index b43e1f6..84f98e8 100644
--- a/app/src/net/reichholf/dreamdroid/fragment/BackupFragment.java
+++ b/app/src/net/reichholf/dreamdroid/fragment/BackupFragment.java
@@ -1,202 +1,20... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.