Skip to content

Commit

Permalink
Downgraded for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheStaticTurtle committed Feb 26, 2020
1 parent 08f980d commit a825958
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.2.9
Binary file modified app-sources/NLRViewer/.idea/caches/build_file_checksums.ser
Binary file not shown.
2 changes: 2 additions & 0 deletions app-sources/NLRViewer/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,20 @@ public class selector extends AppCompatActivity {
if (mDrawerToggle.onOptionsItemSelected(item)) { return true; }
return super.onOptionsItemSelected(item);
}

public void checkUpdate() {
new Thread(new Runnable() {
public void run() {
try {
Document doc = Jsoup.connect("https://raw.githubusercontent.com/TurtleForGaming/NLR_Viewer/master/VERSION.txt").get();

} catch (Exception e) {
Log.e("UpdateEpisodes", e.getMessage(), e);
}
}
}).start();
}

public void firstSetUp(Boolean onCreate) {
ViewFlipper vf = (ViewFlipper)findViewById(R.id.layoutFlipper);

Expand Down

0 comments on commit a825958

Please sign in to comment.