Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hajdam committed Sep 1, 2024
1 parent 22aa2aa commit ca4f1c9
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 11 deletions.
8 changes: 8 additions & 0 deletions .idea/deploymentTargetSelector.xml

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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Features

UNDER DEVELOPMENT

* TODO: Data as hexadecimal codes and text preview
* TODO: Insert and overwrite edit modes
* Data as hexadecimal codes and text preview
* Insert and overwrite edit modes
* TODO: Support for selection and clipboard actions
* TODO: Support for showing unprintable/whitespace characters
* TODO: Support for undo/redo
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ android {
keyPassword 'H4$PuXmt'
}
}
compileSdkVersion 33
compileSdkVersion 34
defaultConfig {
applicationId "org.exbin.bined.editor.android"
minSdkVersion 27
targetSdkVersion 33
versionCode 1
versionName "1.0"
targetSdkVersion 34
versionCode 3
versionName "0.2.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
signingConfig signingConfigs.release
}
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
android:exported="true" />
</application>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="33" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.os.Build;
import android.os.Bundle;
import android.text.Editable;
import android.text.method.KeyListener;
Expand Down Expand Up @@ -77,6 +78,10 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
this.storageReadPermissionGranted = ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED;
this.storageWritePermissionGranted = ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) == PackageManager.PERMISSION_GRANTED;
if (Build.VERSION.SDK_INT > 32) {
storageReadPermissionGranted = true;
storageWritePermissionGranted = true;
}

Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
Expand Down
6 changes: 5 additions & 1 deletion app/src/main/res/menu/menu_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
android:id="@+id/hex_chars_case"
android:enabled="false"
android:title="@string/hex_characters_case" />
<item
android:id="@+id/encoding"
android:enabled="false"
android:title="@string/encoding" />
<item
android:id="@+id/non_printing_characters"
android:enabled="false"
Expand All @@ -57,11 +61,11 @@
android:id="@+id/go_to_position"
android:enabled="false"
android:title="@string/go_to_position" />

</menu>
</item>
<item
android:id="@+id/action_settings"
android:enabled="false"
android:title="@string/action_settings" />
<item
android:id="@+id/action_about"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

<string name="action_exit">Exit</string>
<string name="exampleString">Test</string>
<string name="app_about">Name: BinEd - Binary/Hex Editor\nVersion: 0.2\nVendor: <a href="https://exbin.org">ExBin Project</a>\nLicense: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>\nHomepage: <a href="https://bined.exbin.org/android">https://bined.exbin.org/android</a></string>
<string name="app_about">Name: BinEd - Binary/Hex Editor\nVersion: 0.2.0\nVendor: <a href="https://exbin.org">ExBin Project</a>\nLicense: <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>\nHomepage: <a href="https://bined.exbin.org/android">https://bined.exbin.org/android</a></string>
<string name="bined_logo_description">BinEd Logo</string>
<string name="pref_header_appearance">Appearance</string>
<string name="title_activity_settings2">SettingsActivity2</string>
Expand All @@ -60,6 +60,7 @@
<string name="view_mode">View Mode</string>
<string name="code_type">Code Type</string>
<string name="hex_characters_case">Hex Characters Case</string>
<string name="encoding">Encoding</string>
<string name="non_printing_characters">Non-printing Characters</string>
<string name="go_to_position">Go To Position</string>
<string name="edit_menu">Edit</string>
Expand Down
4 changes: 2 additions & 2 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0.2.0
- First release
0.2.0 (2024-09-01)
- First release

0 comments on commit ca4f1c9

Please sign in to comment.