├── HTTPShortcuts
├── framework
│ ├── .gitignore
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ └── kotlin
│ │ └── ch
│ │ └── rmy
│ │ └── android
│ │ └── framework
│ │ ├── extensions
│ │ ├── ServiceExtensions.kt
│ │ ├── ActivityExtensions.kt
│ │ └── CoroutineExtensions.kt
│ │ ├── ui
│ │ └── IntentBuilder.kt
│ │ └── utils
│ │ ├── WebViewChecker.kt
│ │ └── UUIDUtils.kt
├── scripting
│ ├── .gitignore
│ ├── consumer-rules.pro
│ ├── proguard-rules.pro
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ └── kotlin
│ │ └── ch
│ │ └── rmy
│ │ └── android
│ │ └── scripting
│ │ ├── JsFunction.kt
│ │ ├── ScriptingEngineFactory.kt
│ │ ├── ScriptingException.kt
│ │ ├── quickjs
│ │ └── QuickJsObject.kt
│ │ ├── JsValue.kt
│ │ └── ScriptingEngine.kt
├── keystores
│ └── development.jks
├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
├── app
│ └── src
│ │ ├── main
│ │ ├── assets
│ │ │ ├── icons_keywords
│ │ │ └── docs
│ │ │ │ └── assets
│ │ │ │ ├── scripting
│ │ │ │ ├── 01.png
│ │ │ │ └── 02.png
│ │ │ │ └── shortcuts
│ │ │ │ └── 01.png
│ │ ├── res
│ │ │ ├── drawable-nodpi
│ │ │ │ ├── black_cd.webp
│ │ │ │ ├── black_armor.webp
│ │ │ │ ├── black_bell.webp
│ │ │ │ ├── black_box.webp
│ │ │ │ ├── black_cake.webp
│ │ │ │ ├── black_car.webp
│ │ │ │ ├── black_cat.webp
│ │ │ │ ├── black_check.webp
│ │ │ │ ├── black_clean.webp
│ │ │ │ ├── black_clock.webp
│ │ │ │ ├── black_close.webp
│ │ │ │ ├── black_cloud.webp
│ │ │ │ ├── black_color.webp
│ │ │ │ ├── black_dice.webp
│ │ │ │ ├── black_dog.webp
│ │ │ │ ├── black_dvd.webp
│ │ │ │ ├── black_film.webp
│ │ │ │ ├── black_fire.webp
│ │ │ │ ├── black_fish.webp
│ │ │ │ ├── black_gift.webp
│ │ │ │ ├── black_globe.webp
│ │ │ │ ├── black_graph.webp
│ │ │ │ ├── black_hand.webp
│ │ │ │ ├── black_hat.webp
│ │ │ │ ├── black_heart.webp
│ │ │ │ ├── black_help.webp
│ │ │ │ ├── black_house.webp
│ │ │ │ ├── black_ipad.webp
│ │ │ │ ├── black_iris.webp
│ │ │ │ ├── black_lan.webp
│ │ │ │ ├── black_laugh.webp
│ │ │ │ ├── black_light.webp
│ │ │ │ ├── black_link.webp
│ │ │ │ ├── black_linux.webp
│ │ │ │ ├── black_lock.webp
│ │ │ │ ├── black_mail.webp
│ │ │ │ ├── black_minus.webp
│ │ │ │ ├── black_moon.webp
│ │ │ │ ├── black_mouse.webp
│ │ │ │ ├── black_movie.webp
│ │ │ │ ├── black_new.webp
│ │ │ │ ├── black_next.webp
│ │ │ │ ├── black_phone.webp
│ │ │ │ ├── black_plug.webp
│ │ │ │ ├── black_plus.webp
│ │ │ │ ├── black_robot.webp
│ │ │ │ ├── black_sad.webp
│ │ │ │ ├── black_smile.webp
│ │ │ │ ├── black_sofa.webp
│ │ │ │ ├── black_solar.webp
│ │ │ │ ├── black_sword.webp
│ │ │ │ ├── black_tag.webp
│ │ │ │ ├── black_tent.webp
│ │ │ │ ├── black_tools.webp
│ │ │ │ ├── black_torch.webp
│ │ │ │ ├── black_toy.webp
│ │ │ │ ├── black_tube.webp
│ │ │ │ ├── black_usb.webp
│ │ │ │ ├── black_view.webp
│ │ │ │ ├── ic_launcher.png
│ │ │ │ ├── black_balloon.webp
│ │ │ │ ├── black_bat_man.webp
│ │ │ │ ├── black_button.webp
│ │ │ │ ├── black_camera.webp
│ │ │ │ ├── black_cooker.webp
│ │ │ │ ├── black_cursor.webp
│ │ │ │ ├── black_cycling.webp
│ │ │ │ ├── black_danger.webp
│ │ │ │ ├── black_delete.webp
│ │ │ │ ├── black_driller.webp
│ │ │ │ ├── black_feather.webp
│ │ │ │ ├── black_floppy.webp
│ │ │ │ ├── black_flower.webp
│ │ │ │ ├── black_guitar.webp
│ │ │ │ ├── black_houses.webp
│ │ │ │ ├── black_knight.webp
│ │ │ │ ├── black_laptop.webp
│ │ │ │ ├── black_logout.webp
│ │ │ │ ├── black_mac_pc.webp
│ │ │ │ ├── black_magnet.webp
│ │ │ │ ├── black_office.webp
│ │ │ │ ├── black_penguin.webp
│ │ │ │ ├── black_picture.webp
│ │ │ │ ├── black_planet.webp
│ │ │ │ ├── black_power_1.webp
│ │ │ │ ├── black_power_2.webp
│ │ │ │ ├── black_printer.webp
│ │ │ │ ├── black_puzzles.webp
│ │ │ │ ├── black_reload.webp
│ │ │ │ ├── black_search.webp
│ │ │ │ ├── black_shape12.webp
│ │ │ │ ├── black_shape6.webp
│ │ │ │ ├── black_sleepy.webp
│ │ │ │ ├── black_speech.webp
│ │ │ │ ├── black_sports.webp
│ │ │ │ ├── black_swap_up.webp
│ │ │ │ ├── black_target.webp
│ │ │ │ ├── black_thunder.webp
│ │ │ │ ├── black_toolbox.webp
│ │ │ │ ├── black_turtle.webp
│ │ │ │ ├── black_weather.webp
│ │ │ │ ├── black_webcam.webp
│ │ │ │ ├── black_attachment.webp
│ │ │ │ ├── black_bluetooth.webp
│ │ │ │ ├── black_book_open.webp
│ │ │ │ ├── black_butterfly.webp
│ │ │ │ ├── black_chef_cap.webp
│ │ │ │ ├── black_data_edit.webp
│ │ │ │ ├── black_document.webp
│ │ │ │ ├── black_foot_print.webp
│ │ │ │ ├── black_footprint.webp
│ │ │ │ ├── black_gramaphone.webp
│ │ │ │ ├── black_headphone.webp
│ │ │ │ ├── black_hour_glass.webp
│ │ │ │ ├── black_internet.webp
│ │ │ │ ├── black_joystick.webp
│ │ │ │ ├── black_key_access.webp
│ │ │ │ ├── black_keyboard.webp
│ │ │ │ ├── black_latitude.webp
│ │ │ │ ├── black_left_arrow.webp
│ │ │ │ ├── black_light_bulb.webp
│ │ │ │ ├── black_media_back.webp
│ │ │ │ ├── black_media_end.webp
│ │ │ │ ├── black_media_play.webp
│ │ │ │ ├── black_messages.webp
│ │ │ │ ├── black_microphone.webp
│ │ │ │ ├── black_palm_tree.webp
│ │ │ │ ├── black_password.webp
│ │ │ │ ├── black_photograph.webp
│ │ │ │ ├── black_pine_tree.webp
│ │ │ │ ├── black_printer_2.webp
│ │ │ │ ├── black_rectangle.webp
│ │ │ │ ├── black_satellite.webp
│ │ │ │ ├── black_settings.webp
│ │ │ │ ├── black_shape_cube.webp
│ │ │ │ ├── black_shape_star.webp
│ │ │ │ ├── black_spaceship.webp
│ │ │ │ ├── black_squirrel.webp
│ │ │ │ ├── black_swap_down.webp
│ │ │ │ ├── black_swap_left.webp
│ │ │ │ ├── black_swap_right.webp
│ │ │ │ ├── black_table_fan.webp
│ │ │ │ ├── black_table_lamp.webp
│ │ │ │ ├── black_telephone.webp
│ │ │ │ ├── black_television.webp
│ │ │ │ ├── black_umbrella.webp
│ │ │ │ ├── black_university.webp
│ │ │ │ ├── black_user_male.webp
│ │ │ │ ├── black_voicemail.webp
│ │ │ │ ├── black_volume_low.webp
│ │ │ │ ├── black_water_tap.webp
│ │ │ │ ├── black_windows_pc.webp
│ │ │ │ ├── black_yin_yang.webp
│ │ │ │ ├── black_alarm_clock.webp
│ │ │ │ ├── black_announcement.webp
│ │ │ │ ├── black_beamed_notes.webp
│ │ │ │ ├── black_beep_signal.webp
│ │ │ │ ├── black_business_man.webp
│ │ │ │ ├── black_cctv_camera.webp
│ │ │ │ ├── black_command_mac.webp
│ │ │ │ ├── black_device_bell.webp
│ │ │ │ ├── black_finger_print.webp
│ │ │ │ ├── black_fuel_station.webp
│ │ │ │ ├── black_linear_gauge.webp
│ │ │ │ ├── black_loud_speaker.webp
│ │ │ │ ├── black_map_location.webp
│ │ │ │ ├── black_media_pause.webp
│ │ │ │ ├── black_mobile_phone.webp
│ │ │ │ ├── black_outlet_plug.webp
│ │ │ │ ├── black_quarter_note.webp
│ │ │ │ ├── black_refrigerator.webp
│ │ │ │ ├── black_road_forward.webp
│ │ │ │ ├── black_shape_peace.webp
│ │ │ │ ├── black_shape_spade.webp
│ │ │ │ ├── black_shape_square.webp
│ │ │ │ ├── black_smoking_zone.webp
│ │ │ │ ├── black_synchronize.webp
│ │ │ │ ├── black_user_female.webp
│ │ │ │ ├── black_volume_high.webp
│ │ │ │ ├── black_volume_mute.webp
│ │ │ │ ├── black_beverage_coffee.webp
│ │ │ │ ├── black_calendar_date.webp
│ │ │ │ ├── black_command_refresh.webp
│ │ │ │ ├── black_folder_sharing.webp
│ │ │ │ ├── black_identity_card.webp
│ │ │ │ ├── black_network_sharing.webp
│ │ │ │ ├── black_picture_frame.webp
│ │ │ │ ├── black_recorded_media.webp
│ │ │ │ ├── black_remote_control.webp
│ │ │ │ ├── black_road_backward.webp
│ │ │ │ ├── black_shape_lightning.webp
│ │ │ │ ├── black_shape_triangle.webp
│ │ │ │ ├── black_snack_doughnut.webp
│ │ │ │ ├── black_speaker_volume.webp
│ │ │ │ ├── black_tape_recorder.webp
│ │ │ │ ├── black_waiting_popup.webp
│ │ │ │ ├── black_warning_message.webp
│ │ │ │ ├── black_washing_machine.webp
│ │ │ │ ├── black_battery_charging.webp
│ │ │ │ ├── black_data_information.webp
│ │ │ │ ├── black_device_calculator.webp
│ │ │ │ ├── black_display_contrast.webp
│ │ │ │ ├── black_microsoft_windows.webp
│ │ │ │ ├── black_cutlery_fork_knife.webp
│ │ │ │ ├── black_display_brightness.webp
│ │ │ │ ├── black_energy_saving_bulb_1.webp
│ │ │ │ ├── black_energy_saving_bulb_2.webp
│ │ │ │ ├── black_instrument_barometer.webp
│ │ │ │ ├── black_instrument_telescope.webp
│ │ │ │ ├── black_media_fast_forward.webp
│ │ │ │ ├── black_transport_school_bus.webp
│ │ │ │ └── black_instrument_round_bottom_flask.webp
│ │ │ ├── raw
│ │ │ │ └── keep.xml
│ │ │ ├── xml
│ │ │ │ ├── provider_paths.xml
│ │ │ │ └── network_security_config.xml
│ │ │ ├── drawable
│ │ │ │ ├── black_circle.xml
│ │ │ │ ├── image_placeholder.xml
│ │ │ │ ├── black_shape_square2.xml
│ │ │ │ ├── variable_widget_background.xml
│ │ │ │ ├── ic_files.xml
│ │ │ │ ├── ic_launcher_monochrome.xml
│ │ │ │ ├── ic_handle_response.xml
│ │ │ │ ├── ic_modify_shortcuts.xml
│ │ │ │ ├── ic_quick_settings_tile.xml
│ │ │ │ ├── ic_info.xml
│ │ │ │ ├── ic_misc.xml
│ │ │ │ ├── ic_control_flow.xml
│ │ │ │ ├── ic_variables.xml
│ │ │ │ ├── splash_screen.xml
│ │ │ │ └── ic_google_play.xml
│ │ │ ├── mipmap
│ │ │ │ └── ic_launcher.xml
│ │ │ ├── values
│ │ │ │ └── arrays.xml
│ │ │ └── layout
│ │ │ │ └── image_editor.xml
│ │ └── kotlin
│ │ │ └── ch
│ │ │ └── rmy
│ │ │ └── android
│ │ │ ├── http_shortcuts
│ │ │ ├── data
│ │ │ │ ├── domains
│ │ │ │ │ ├── sections
│ │ │ │ │ │ └── SectionId.kt
│ │ │ │ │ ├── categories
│ │ │ │ │ │ └── CategoryId.kt
│ │ │ │ │ ├── shortcuts
│ │ │ │ │ │ ├── ShortcutId.kt
│ │ │ │ │ │ └── ShortcutNameOrId.kt
│ │ │ │ │ ├── variables
│ │ │ │ │ │ ├── VariableKey.kt
│ │ │ │ │ │ ├── GlobalVariableId.kt
│ │ │ │ │ │ └── VariableKeyOrId.kt
│ │ │ │ │ ├── pending_executions
│ │ │ │ │ │ └── ExecutionId.kt
│ │ │ │ │ ├── request_headers
│ │ │ │ │ │ └── RequestHeaderId.kt
│ │ │ │ │ ├── certificate_pins
│ │ │ │ │ │ └── CertificatePinId.kt
│ │ │ │ │ ├── request_parameters
│ │ │ │ │ │ └── RequestParameterId.kt
│ │ │ │ │ └── working_directories
│ │ │ │ │ │ └── WorkingDirectoryId.kt
│ │ │ │ ├── enums
│ │ │ │ │ ├── SelectionMode.kt
│ │ │ │ │ ├── IpVersion.kt
│ │ │ │ │ ├── PendingExecutionType.kt
│ │ │ │ │ ├── ConfirmationType.kt
│ │ │ │ │ ├── ParameterType.kt
│ │ │ │ │ ├── ResponseFailureOutput.kt
│ │ │ │ │ ├── ResponseSuccessOutput.kt
│ │ │ │ │ ├── ResponseContentType.kt
│ │ │ │ │ ├── ResponseDisplayAction.kt
│ │ │ │ │ ├── RequestBodyType.kt
│ │ │ │ │ ├── ShortcutClickBehavior.kt
│ │ │ │ │ ├── ProxyType.kt
│ │ │ │ │ ├── ResponseUiType.kt
│ │ │ │ │ ├── FileUploadType.kt
│ │ │ │ │ ├── HttpMethod.kt
│ │ │ │ │ ├── CategoryLayoutType.kt
│ │ │ │ │ └── ShortcutExecutionType.kt
│ │ │ │ ├── dtos
│ │ │ │ │ ├── LauncherShortcut.kt
│ │ │ │ │ ├── ShortcutPlaceholder.kt
│ │ │ │ │ └── GlobalVariablePlaceholder.kt
│ │ │ │ └── models
│ │ │ │ │ ├── PendingExecutionWithVariablesModel.kt
│ │ │ │ │ ├── AppConfig.kt
│ │ │ │ │ └── AppLock.kt
│ │ │ ├── import_export
│ │ │ │ ├── InvalidFileException.kt
│ │ │ │ ├── ImportMode.kt
│ │ │ │ ├── ImportPasswordException.kt
│ │ │ │ ├── ImportVersionMismatchException.kt
│ │ │ │ ├── ImportException.kt
│ │ │ │ ├── migration
│ │ │ │ │ └── ImportMigration.kt
│ │ │ │ └── ImportExport.kt
│ │ │ ├── exceptions
│ │ │ │ ├── NoActivityAvailableException.kt
│ │ │ │ ├── DialogCancellationException.kt
│ │ │ │ ├── UserAbortException.kt
│ │ │ │ ├── TreatAsFailureException.kt
│ │ │ │ ├── ActionException.kt
│ │ │ │ ├── ClientCertException.kt
│ │ │ │ ├── InvalidProxyException.kt
│ │ │ │ ├── InvalidHeaderException.kt
│ │ │ │ ├── DigestAuthException.kt
│ │ │ │ ├── MissingLocationPermissionException.kt
│ │ │ │ ├── InvalidBearerAuthException.kt
│ │ │ │ ├── FailedToAccessFileException.kt
│ │ │ │ ├── BrowserNotFoundException.kt
│ │ │ │ ├── InvalidContentTypeException.kt
│ │ │ │ ├── InvalidUrlException.kt
│ │ │ │ ├── ResponseTooLargeException.kt
│ │ │ │ └── UserException.kt
│ │ │ ├── http
│ │ │ │ ├── ErrorResponse.kt
│ │ │ │ ├── CertificatePin.kt
│ │ │ │ ├── Extensions.kt
│ │ │ │ └── ProxyParams.kt
│ │ │ ├── activities
│ │ │ │ ├── icons
│ │ │ │ │ ├── models
│ │ │ │ │ │ └── IconShape.kt
│ │ │ │ │ ├── IconPickerListItem.kt
│ │ │ │ │ ├── IconPickerViewState.kt
│ │ │ │ │ ├── IconPickerEvent.kt
│ │ │ │ │ └── IconPickerDialogState.kt
│ │ │ │ ├── variables
│ │ │ │ │ ├── editor
│ │ │ │ │ │ ├── types
│ │ │ │ │ │ │ ├── VariableTypeViewState.kt
│ │ │ │ │ │ │ ├── ConstantTypeViewState.kt
│ │ │ │ │ │ │ ├── ColorTypeViewState.kt
│ │ │ │ │ │ │ ├── IncrementTypeViewState.kt
│ │ │ │ │ │ │ ├── TimestampTypeViewState.kt
│ │ │ │ │ │ │ ├── DateTypeViewState.kt
│ │ │ │ │ │ │ ├── TimeTypeViewState.kt
│ │ │ │ │ │ │ ├── TextTypeViewState.kt
│ │ │ │ │ │ │ ├── ToggleTypeViewState.kt
│ │ │ │ │ │ │ └── SelectTypeViewState.kt
│ │ │ │ │ │ ├── GlobalVariableEditorEvent.kt
│ │ │ │ │ │ ├── GlobalVariableEditorDialogState.kt
│ │ │ │ │ │ └── models
│ │ │ │ │ │ │ └── ShareSupport.kt
│ │ │ │ │ ├── VariablesViewState.kt
│ │ │ │ │ └── models
│ │ │ │ │ │ └── GlobalVariableListItem.kt
│ │ │ │ ├── documentation
│ │ │ │ │ ├── models
│ │ │ │ │ │ └── SearchDirection.kt
│ │ │ │ │ ├── DocumentationViewState.kt
│ │ │ │ │ └── DocumentationEvent.kt
│ │ │ │ ├── categories
│ │ │ │ │ ├── editor
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── CategoryBackground.kt
│ │ │ │ │ │ └── CategoryEditorDialogState.kt
│ │ │ │ │ ├── sections
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── CategorySectionListItem.kt
│ │ │ │ │ │ ├── CategorySectionsViewState.kt
│ │ │ │ │ │ └── CategorySectionsDialogState.kt
│ │ │ │ │ └── CategoriesViewState.kt
│ │ │ │ ├── execute
│ │ │ │ │ ├── DialogHandle.kt
│ │ │ │ │ ├── StartServiceEvent.kt
│ │ │ │ │ ├── ExecuteViewState.kt
│ │ │ │ │ ├── ExternalResult.kt
│ │ │ │ │ ├── ExternalRequest.kt
│ │ │ │ │ └── ExecutionFactory.kt
│ │ │ │ ├── editor
│ │ │ │ │ ├── advancedsettings
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── HostVerificationType.kt
│ │ │ │ │ │ └── AdvancedSettingsDialogState.kt
│ │ │ │ │ ├── scripting
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── CodeFieldType.kt
│ │ │ │ │ │ ├── ScriptingEvent.kt
│ │ │ │ │ │ └── codesnippets
│ │ │ │ │ │ │ ├── CodeSnippetPickerEvent.kt
│ │ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ ├── SectionItem.kt
│ │ │ │ │ │ │ └── CodeSnippetItem.kt
│ │ │ │ │ │ │ └── CodeSnippetPickerViewState.kt
│ │ │ │ │ ├── ShortcutEditorEvent.kt
│ │ │ │ │ ├── basicsettings
│ │ │ │ │ │ └── models
│ │ │ │ │ │ │ └── InstalledBrowser.kt
│ │ │ │ │ ├── mqttmessages
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── MqttMessagesListItem.kt
│ │ │ │ │ │ ├── MqttMessagesViewState.kt
│ │ │ │ │ │ └── MqttMessagesDialogState.kt
│ │ │ │ │ ├── executionsettings
│ │ │ │ │ │ └── ExecutionSettingsEvent.kt
│ │ │ │ │ ├── headers
│ │ │ │ │ │ ├── models
│ │ │ │ │ │ │ └── HeaderListItem.kt
│ │ │ │ │ │ ├── RequestHeadersViewState.kt
│ │ │ │ │ │ └── RequestHeadersDialogState.kt
│ │ │ │ │ ├── response
│ │ │ │ │ │ └── ResponseDisplayDialogState.kt
│ │ │ │ │ ├── shortcuts
│ │ │ │ │ │ ├── TriggerShortcutsViewState.kt
│ │ │ │ │ │ └── models
│ │ │ │ │ │ │ └── ShortcutListItem.kt
│ │ │ │ │ └── authentication
│ │ │ │ │ │ └── AuthenticationDialogState.kt
│ │ │ │ ├── misc
│ │ │ │ │ ├── share
│ │ │ │ │ │ ├── ShareViewState.kt
│ │ │ │ │ │ └── ShareDialogState.kt
│ │ │ │ │ ├── deeplink
│ │ │ │ │ │ ├── DeepLinkViewState.kt
│ │ │ │ │ │ ├── DeepLinkDialogState.kt
│ │ │ │ │ │ └── DeepLinkActivity.kt
│ │ │ │ │ ├── second_launcher
│ │ │ │ │ │ ├── SecondLauncherViewState.kt
│ │ │ │ │ │ ├── SecondLauncherDialogState.kt
│ │ │ │ │ │ └── SecondLauncherActivity.kt
│ │ │ │ │ └── quick_settings_tile
│ │ │ │ │ │ ├── QuickSettingsTileViewState.kt
│ │ │ │ │ │ └── QuickSettingsTileDialogState.kt
│ │ │ │ ├── importexport
│ │ │ │ │ ├── ExportEvent.kt
│ │ │ │ │ ├── ImportExportEvent.kt
│ │ │ │ │ ├── ImportExportViewState.kt
│ │ │ │ │ └── ExportDialogState.kt
│ │ │ │ ├── globalcode
│ │ │ │ │ ├── GlobalScriptingDialogState.kt
│ │ │ │ │ ├── GlobalScriptingEvent.kt
│ │ │ │ │ └── GlobalScriptingViewState.kt
│ │ │ │ ├── response
│ │ │ │ │ ├── models
│ │ │ │ │ │ ├── TableData.kt
│ │ │ │ │ │ └── DetailInfo.kt
│ │ │ │ │ └── DisplayResponseEvent.kt
│ │ │ │ ├── troubleshooting
│ │ │ │ │ └── TroubleShootingDialogState.kt
│ │ │ │ ├── contact
│ │ │ │ │ └── MetaData.kt
│ │ │ │ ├── curl_import
│ │ │ │ │ └── CurlImportViewState.kt
│ │ │ │ ├── main
│ │ │ │ │ ├── MainEvent.kt
│ │ │ │ │ └── models
│ │ │ │ │ │ └── RecoveryInfo.kt
│ │ │ │ ├── workingdirectories
│ │ │ │ │ ├── WorkingDirectoriesEvent.kt
│ │ │ │ │ ├── WorkingDirectoriesViewState.kt
│ │ │ │ │ └── models
│ │ │ │ │ │ └── WorkingDirectoryListItem.kt
│ │ │ │ ├── certpinning
│ │ │ │ │ ├── CertPinningViewState.kt
│ │ │ │ │ ├── models
│ │ │ │ │ │ └── Pin.kt
│ │ │ │ │ └── CertPinningDialogState.kt
│ │ │ │ ├── about
│ │ │ │ │ └── AboutViewState.kt
│ │ │ │ ├── variablewidget
│ │ │ │ │ └── models
│ │ │ │ │ │ └── SelectableVariable.kt
│ │ │ │ ├── history
│ │ │ │ │ ├── HistoryViewState.kt
│ │ │ │ │ └── HistoryListItem.kt
│ │ │ │ ├── remote_edit
│ │ │ │ │ ├── RemoteEditViewState.kt
│ │ │ │ │ └── RemoteEditDialogState.kt
│ │ │ │ └── settings
│ │ │ │ │ └── SettingsDialogState.kt
│ │ │ ├── scripting
│ │ │ │ ├── ActionAlias.kt
│ │ │ │ ├── ResultHandler.kt
│ │ │ │ ├── actions
│ │ │ │ │ ├── types
│ │ │ │ │ │ ├── UUIDAction.kt
│ │ │ │ │ │ ├── Action.kt
│ │ │ │ │ │ ├── ActionType.kt
│ │ │ │ │ │ ├── ToStringAction.kt
│ │ │ │ │ │ ├── GetDeviceIdAction.kt
│ │ │ │ │ │ ├── WifiIPAction.kt
│ │ │ │ │ │ ├── SetResultAction.kt
│ │ │ │ │ │ ├── HtmlEncodeAction.kt
│ │ │ │ │ │ ├── ToHexStringAction.kt
│ │ │ │ │ │ ├── WaitAction.kt
│ │ │ │ │ │ ├── ScanBarcodeAction.kt
│ │ │ │ │ │ ├── Base64EncodeAction.kt
│ │ │ │ │ │ └── HtmlDecodeAction.kt
│ │ │ │ │ └── ActionRunnable.kt
│ │ │ │ └── CleanupHandler.kt
│ │ │ ├── Constants.kt
│ │ │ ├── extensions
│ │ │ │ ├── WorkerExtensions.kt
│ │ │ │ └── StringExtensions.kt
│ │ │ ├── notifications
│ │ │ │ └── NotificationChannelIds.kt
│ │ │ ├── utils
│ │ │ │ ├── PlayServicesUtil.kt
│ │ │ │ ├── NoCloseInputStream.kt
│ │ │ │ ├── CameraUtil.kt
│ │ │ │ ├── ClientCertUtil.kt
│ │ │ │ ├── FileTypeUtil.kt
│ │ │ │ └── ColorUtil.kt
│ │ │ ├── components
│ │ │ │ ├── models
│ │ │ │ │ └── MenuEntry.kt
│ │ │ │ ├── HelpText.kt
│ │ │ │ └── VerticalSpacer.kt
│ │ │ ├── variables
│ │ │ │ └── types
│ │ │ │ │ ├── VariableType.kt
│ │ │ │ │ ├── ConstantType.kt
│ │ │ │ │ └── UUIDType.kt
│ │ │ └── plugin
│ │ │ │ ├── Output.kt
│ │ │ │ └── TaskerTaskPickerContract.kt
│ │ │ └── framework
│ │ │ ├── viewmodel
│ │ │ ├── ViewModelCancellationException.kt
│ │ │ └── ViewModelScope.kt
│ │ │ ├── extensions
│ │ │ ├── OkHttpExtensions.kt
│ │ │ ├── UriExtensions.kt
│ │ │ └── ViewModelExtensions.kt
│ │ │ ├── navigation
│ │ │ └── NavigationRequest.kt
│ │ │ └── utils
│ │ │ └── localization
│ │ │ └── StaticLocalizable.kt
│ │ ├── test
│ │ └── kotlin
│ │ │ └── ch
│ │ │ └── rmy
│ │ │ └── android
│ │ │ └── testutils
│ │ │ └── ResourceLoader.kt
│ │ └── withoutGoogleServices
│ │ └── kotlin
│ │ └── ch
│ │ └── rmy
│ │ └── android
│ │ └── http_shortcuts
│ │ └── utils
│ │ └── PlayServicesUtilImpl.kt
├── stability_config.conf
├── .gitignore
├── favicon_grabber
│ ├── src
│ │ └── main
│ │ │ └── kotlin
│ │ │ └── ch
│ │ │ └── rmy
│ │ │ └── favicongrabber
│ │ │ ├── models
│ │ │ ├── ManifestRoot.kt
│ │ │ ├── IconResult.kt
│ │ │ ├── LinkTag.kt
│ │ │ └── ManifestIcon.kt
│ │ │ └── grabbers
│ │ │ └── Grabber.kt
│ └── build.gradle.kts
├── gradle.properties
├── curl_command
│ ├── build.gradle.kts
│ └── src
│ │ └── test
│ │ └── kotlin
│ │ └── ch
│ │ └── rmy
│ │ └── curlcommand
│ │ └── CommandParserTest.kt
├── documentation_template.html
├── settings.gradle.kts
└── .editorconfig
├── metadata
├── de-DE
│ ├── title.txt
│ └── short_description.txt
├── en-US
│ ├── title.txt
│ ├── short_description.txt
│ └── images
│ │ ├── icon.png
│ │ ├── featureGraphic.png
│ │ └── phoneScreenshots
│ │ ├── 1.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ ├── 4.png
│ │ ├── 5.png
│ │ ├── 6.png
│ │ ├── 7.png
│ │ └── 8.png
├── he-IL
│ ├── title.txt
│ └── short_description.txt
├── ja-JP
│ ├── title.txt
│ └── short_description.txt
├── ko-KR
│ ├── title.txt
│ └── short_description.txt
├── ru-RU
│ ├── title.txt
│ └── short_description.txt
└── zh-TW
│ ├── title.txt
│ └── short_description.txt
├── .github
└── FUNDING.yml
├── .gitignore
└── assets
├── logo.png
├── screenshots
├── 01.png
├── 02.png
├── 03.png
├── 04.png
├── 05.png
├── 06.png
├── 07.png
├── 08.png
├── 09.png
├── 10.png
├── 11.png
├── 12.png
└── 13.png
└── documentation
├── scripting
├── 01.png
└── 02.png
├── shortcuts
└── 01.png
└── updatestar_rating.png
/HTTPShortcuts/framework/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/consumer-rules.pro:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/proguard-rules.pro:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/.gitignore:
--------------------------------------------------------------------------------
1 | /build
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/consumer-rules.pro:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/proguard-rules.pro:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/metadata/de-DE/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/en-US/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/he-IL/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/ja-JP/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/ko-KR/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/ru-RU/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/zh-TW/title.txt:
--------------------------------------------------------------------------------
1 | HTTP Request Shortcuts
--------------------------------------------------------------------------------
/metadata/ko-KR/short_description.txt:
--------------------------------------------------------------------------------
1 | 홈 화면 아이콘으로 HTTP 요청 보내기
--------------------------------------------------------------------------------
/metadata/ja-JP/short_description.txt:
--------------------------------------------------------------------------------
1 | ホーム画面でショートカットからHTTPリクエストを送信
--------------------------------------------------------------------------------
/metadata/zh-TW/short_description.txt:
--------------------------------------------------------------------------------
1 | 在您的主畫面放置捷徑,以便提交 HTTP 請求
--------------------------------------------------------------------------------
/metadata/he-IL/short_description.txt:
--------------------------------------------------------------------------------
1 | שלח בקשות HTTP מקיצורי דרך במסך הבית שלך
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: waboodoo
2 | custom: "https://www.paypal.me/waboodoo"
3 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/
2 | venv
3 | processed-docs/
4 | crowdin.yml
5 | store_listings
6 |
--------------------------------------------------------------------------------
/assets/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/logo.png
--------------------------------------------------------------------------------
/metadata/en-US/short_description.txt:
--------------------------------------------------------------------------------
1 | Submit HTTP Requests from Shortcuts on your Home Screen
--------------------------------------------------------------------------------
/metadata/ru-RU/short_description.txt:
--------------------------------------------------------------------------------
1 | Отправляйте HTTP-запросы из ярлыков на главном экране.
--------------------------------------------------------------------------------
/metadata/de-DE/short_description.txt:
--------------------------------------------------------------------------------
1 | Verschicke HTTP-Requests via Shortcuts von deinem Home Screen aus.
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/assets/screenshots/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/01.png
--------------------------------------------------------------------------------
/assets/screenshots/02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/02.png
--------------------------------------------------------------------------------
/assets/screenshots/03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/03.png
--------------------------------------------------------------------------------
/assets/screenshots/04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/04.png
--------------------------------------------------------------------------------
/assets/screenshots/05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/05.png
--------------------------------------------------------------------------------
/assets/screenshots/06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/06.png
--------------------------------------------------------------------------------
/assets/screenshots/07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/07.png
--------------------------------------------------------------------------------
/assets/screenshots/08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/08.png
--------------------------------------------------------------------------------
/assets/screenshots/09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/09.png
--------------------------------------------------------------------------------
/assets/screenshots/10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/10.png
--------------------------------------------------------------------------------
/assets/screenshots/11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/11.png
--------------------------------------------------------------------------------
/assets/screenshots/12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/12.png
--------------------------------------------------------------------------------
/assets/screenshots/13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/screenshots/13.png
--------------------------------------------------------------------------------
/metadata/en-US/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/icon.png
--------------------------------------------------------------------------------
/assets/documentation/scripting/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/documentation/scripting/01.png
--------------------------------------------------------------------------------
/assets/documentation/scripting/02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/documentation/scripting/02.png
--------------------------------------------------------------------------------
/assets/documentation/shortcuts/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/documentation/shortcuts/01.png
--------------------------------------------------------------------------------
/HTTPShortcuts/keystores/development.jks:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/keystores/development.jks
--------------------------------------------------------------------------------
/assets/documentation/updatestar_rating.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/assets/documentation/updatestar_rating.png
--------------------------------------------------------------------------------
/metadata/en-US/images/featureGraphic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/featureGraphic.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/1.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/2.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/3.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/4.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/5.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/6.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/7.png
--------------------------------------------------------------------------------
/metadata/en-US/images/phoneScreenshots/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/metadata/en-US/images/phoneScreenshots/8.png
--------------------------------------------------------------------------------
/HTTPShortcuts/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/assets/icons_keywords:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/assets/icons_keywords
--------------------------------------------------------------------------------
/HTTPShortcuts/stability_config.conf:
--------------------------------------------------------------------------------
1 | android.net.Uri
2 | java.nio.charset.Charset
3 | java.time.LocalDateTime
4 | java.time.Instant
5 | kotlin.collections.*
--------------------------------------------------------------------------------
/HTTPShortcuts/.gitignore:
--------------------------------------------------------------------------------
1 | .gradle/
2 | local.properties
3 | .idea/
4 | .kotlin/
5 | build/
6 | *.iml
7 | *.aab
8 | app/release
9 | app/releaseFull
10 | /captures/
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cd.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cd.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/assets/docs/assets/scripting/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/assets/docs/assets/scripting/01.png
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/assets/docs/assets/scripting/02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/assets/docs/assets/scripting/02.png
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/assets/docs/assets/shortcuts/01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/assets/docs/assets/shortcuts/01.png
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_armor.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_armor.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bell.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bell.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_box.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_box.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cake.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cake.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_car.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_car.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cat.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cat.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_check.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_check.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_clean.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_clean.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_clock.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_clock.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_close.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_close.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cloud.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cloud.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_color.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_color.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dice.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dice.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dog.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dog.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dvd.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_dvd.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_film.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_film.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fire.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fire.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fish.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fish.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_gift.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_gift.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_globe.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_globe.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_graph.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_graph.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hand.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hand.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hat.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hat.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_heart.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_heart.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_help.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_help.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_house.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_house.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_ipad.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_ipad.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_iris.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_iris.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_lan.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_lan.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_laugh.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_laugh.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_light.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_light.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_link.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_link.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_linux.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_linux.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_lock.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_lock.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mail.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mail.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_minus.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_minus.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_moon.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_moon.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mouse.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mouse.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_movie.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_movie.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_new.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_new.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_next.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_next.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_phone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_phone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_plug.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_plug.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_plus.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_plus.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_robot.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_robot.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sad.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sad.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_smile.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_smile.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sofa.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sofa.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_solar.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_solar.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sword.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sword.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tag.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tag.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tent.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tent.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tools.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tools.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_torch.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_torch.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_toy.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_toy.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tube.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tube.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_usb.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_usb.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_view.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_view.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/ic_launcher.png
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/raw/keep.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_balloon.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_balloon.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bat_man.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bat_man.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_button.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_button.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_camera.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_camera.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cooker.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cooker.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cursor.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cursor.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cycling.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cycling.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_danger.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_danger.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_delete.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_delete.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_driller.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_driller.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_feather.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_feather.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_floppy.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_floppy.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_flower.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_flower.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_guitar.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_guitar.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_houses.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_houses.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_knight.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_knight.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_laptop.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_laptop.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_logout.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_logout.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mac_pc.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mac_pc.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_magnet.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_magnet.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_office.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_office.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_penguin.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_penguin.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_picture.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_picture.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_planet.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_planet.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_power_1.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_power_1.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_power_2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_power_2.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_printer.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_printer.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_puzzles.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_puzzles.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_reload.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_reload.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_search.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_search.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape12.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape12.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape6.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape6.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sleepy.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sleepy.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_speech.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_speech.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sports.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_sports.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_up.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_up.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_target.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_target.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_thunder.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_thunder.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_toolbox.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_toolbox.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_turtle.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_turtle.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_weather.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_weather.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_webcam.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_webcam.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_attachment.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_attachment.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bluetooth.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_bluetooth.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_book_open.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_book_open.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_butterfly.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_butterfly.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_chef_cap.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_chef_cap.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_data_edit.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_data_edit.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_document.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_document.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_foot_print.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_foot_print.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_footprint.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_footprint.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_gramaphone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_gramaphone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_headphone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_headphone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hour_glass.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_hour_glass.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_internet.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_internet.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_joystick.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_joystick.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_key_access.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_key_access.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_keyboard.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_keyboard.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_latitude.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_latitude.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_left_arrow.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_left_arrow.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_light_bulb.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_light_bulb.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_back.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_back.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_end.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_end.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_play.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_play.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_messages.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_messages.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_microphone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_microphone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_palm_tree.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_palm_tree.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_password.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_password.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_photograph.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_photograph.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_pine_tree.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_pine_tree.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_printer_2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_printer_2.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_rectangle.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_rectangle.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_satellite.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_satellite.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_settings.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_settings.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_cube.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_cube.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_star.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_star.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_spaceship.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_spaceship.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_squirrel.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_squirrel.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_down.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_down.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_left.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_left.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_right.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_swap_right.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_table_fan.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_table_fan.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_table_lamp.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_table_lamp.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_telephone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_telephone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_television.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_television.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_umbrella.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_umbrella.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_university.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_university.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_user_male.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_user_male.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_voicemail.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_voicemail.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_low.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_low.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_water_tap.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_water_tap.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_windows_pc.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_windows_pc.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_yin_yang.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_yin_yang.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/xml/provider_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_alarm_clock.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_alarm_clock.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_announcement.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_announcement.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beamed_notes.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beamed_notes.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beep_signal.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beep_signal.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_business_man.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_business_man.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cctv_camera.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cctv_camera.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_command_mac.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_command_mac.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_device_bell.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_device_bell.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_finger_print.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_finger_print.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fuel_station.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_fuel_station.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_linear_gauge.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_linear_gauge.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_loud_speaker.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_loud_speaker.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_map_location.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_map_location.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_pause.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_pause.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mobile_phone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_mobile_phone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_outlet_plug.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_outlet_plug.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_quarter_note.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_quarter_note.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_refrigerator.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_refrigerator.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_road_forward.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_road_forward.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_peace.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_peace.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_spade.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_spade.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_square.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_square.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_smoking_zone.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_smoking_zone.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_synchronize.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_synchronize.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_user_female.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_user_female.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_high.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_high.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_mute.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_volume_mute.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/sections/SectionId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.sections
2 |
3 | typealias SectionId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beverage_coffee.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_beverage_coffee.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_calendar_date.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_calendar_date.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_command_refresh.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_command_refresh.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_folder_sharing.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_folder_sharing.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_identity_card.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_identity_card.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_network_sharing.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_network_sharing.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_picture_frame.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_picture_frame.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_recorded_media.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_recorded_media.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_remote_control.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_remote_control.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_road_backward.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_road_backward.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_lightning.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_lightning.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_triangle.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_shape_triangle.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_snack_doughnut.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_snack_doughnut.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_speaker_volume.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_speaker_volume.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tape_recorder.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_tape_recorder.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_waiting_popup.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_waiting_popup.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_warning_message.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_warning_message.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_washing_machine.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_washing_machine.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/categories/CategoryId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.categories
2 |
3 | typealias CategoryId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/shortcuts/ShortcutId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.shortcuts
2 |
3 | typealias ShortcutId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/variables/VariableKey.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.variables
2 |
3 | typealias VariableKey = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/InvalidFileException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | class InvalidFileException : Exception()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_battery_charging.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_battery_charging.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_data_information.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_data_information.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_device_calculator.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_device_calculator.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_display_contrast.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_display_contrast.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_microsoft_windows.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_microsoft_windows.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/framework/viewmodel/ViewModelCancellationException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.viewmodel
2 |
3 | class ViewModelCancellationException : Exception()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cutlery_fork_knife.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_cutlery_fork_knife.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_display_brightness.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_display_brightness.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_energy_saving_bulb_1.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_energy_saving_bulb_1.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_energy_saving_bulb_2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_energy_saving_bulb_2.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_barometer.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_barometer.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_telescope.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_telescope.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_fast_forward.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_media_fast_forward.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_transport_school_bus.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_transport_school_bus.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/src/main/kotlin/ch/rmy/android/scripting/JsFunction.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.scripting
2 |
3 | interface JsFunction {
4 | operator fun invoke(args: JsFunctionArgs): Any?
5 | }
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/shortcuts/ShortcutNameOrId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.shortcuts
2 |
3 | typealias ShortcutNameOrId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/variables/GlobalVariableId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.variables
2 |
3 | typealias GlobalVariableId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/exceptions/NoActivityAvailableException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.exceptions
2 |
3 | class NoActivityAvailableException : Exception()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/http/ErrorResponse.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.http
2 |
3 | class ErrorResponse(val shortcutResponse: ShortcutResponse) : Exception()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/ImportMode.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | enum class ImportMode {
4 | MERGE,
5 | REPLACE,
6 | }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/favicon_grabber/src/main/kotlin/ch/rmy/favicongrabber/models/ManifestRoot.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.favicongrabber.models
2 |
3 | data class ManifestRoot(
4 | val icons: List? = null,
5 | )
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/pending_executions/ExecutionId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.pending_executions
2 |
3 | typealias ExecutionId = Int
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/ImportPasswordException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | class ImportPasswordException : ImportException()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/favicon_grabber/src/main/kotlin/ch/rmy/favicongrabber/models/IconResult.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.favicongrabber.models
2 |
3 | import java.io.File
4 |
5 | data class IconResult(
6 | val file: File,
7 | )
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/request_headers/RequestHeaderId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.request_headers
2 |
3 | typealias RequestHeaderId = Long
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/ImportVersionMismatchException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | class ImportVersionMismatchException : Exception()
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/certificate_pins/CertificatePinId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.certificate_pins
2 |
3 | typealias CertificatePinId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_round_bottom_flask.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Waboodoo/HTTP-Shortcuts/HEAD/HTTPShortcuts/app/src/main/res/drawable-nodpi/black_instrument_round_bottom_flask.webp
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/icons/models/IconShape.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.icons.models
2 |
3 | enum class IconShape {
4 | SQUARE,
5 | CIRCLE,
6 | }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/request_parameters/RequestParameterId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.request_parameters
2 |
3 | typealias RequestParameterId = Long
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/favicon_grabber/src/main/kotlin/ch/rmy/favicongrabber/models/LinkTag.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.favicongrabber.models
2 |
3 | data class LinkTag(
4 | val rel: String,
5 | val href: String,
6 | val size: Int?,
7 | )
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/data/domains/working_directories/WorkingDirectoryId.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.data.domains.working_directories
2 |
3 | typealias WorkingDirectoryId = String
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/framework/extensions/OkHttpExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.extensions
2 |
3 | import okhttp3.Response
4 |
5 | fun Response.isSuccessfulOrRedirect() =
6 | code in 200..399
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/variables/editor/types/VariableTypeViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.variables.editor.types
2 |
3 | sealed interface VariableTypeViewState
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/ImportException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | open class ImportException(override val message: String? = null) : Exception(message)
4 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable/black_circle.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/documentation/models/SearchDirection.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.documentation.models
2 |
3 | enum class SearchDirection {
4 | PREVIOUS,
5 | NEXT,
6 | }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable/image_placeholder.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/favicon_grabber/build.gradle.kts:
--------------------------------------------------------------------------------
1 | plugins {
2 | id("org.jetbrains.kotlin.jvm")
3 | }
4 |
5 | dependencies {
6 | implementation(libs.okhttp3)
7 | implementation(libs.gson)
8 | implementation(libs.kotlinx.coroutines)
9 | }
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx4000M
2 | kotlin.daemon.jvmargs=-Xmx4000M
3 | android.useAndroidX=true
4 | android.enableJetifier=false
5 | android.enableR8.fullMode=false
6 | android.nonTransitiveRClass=true
7 | android.nonFinalResIds=true
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable/black_shape_square2.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/categories/editor/models/CategoryBackground.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.categories.editor.models
2 |
3 | enum class CategoryBackground {
4 | DEFAULT,
5 | COLOR,
6 | }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/curl_command/build.gradle.kts:
--------------------------------------------------------------------------------
1 | plugins {
2 | id("org.jetbrains.kotlin.jvm")
3 | }
4 |
5 | dependencies {
6 | testImplementation(libs.kotlin.test.junit5)
7 | }
8 |
9 | tasks {
10 | test {
11 | useJUnitPlatform()
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/HTTPShortcuts/documentation_template.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/src/main/kotlin/ch/rmy/android/framework/extensions/ServiceExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.extensions
2 |
3 | import android.app.Service
4 | import android.content.Context
5 |
6 | val Service.context: Context
7 | get() = this
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/execute/DialogHandle.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.execute
2 |
3 | interface DialogHandle {
4 | suspend fun showDialog(dialogState: ExecuteDialogState): T
5 | }
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/execute/StartServiceEvent.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.execute
2 |
3 | import ch.rmy.android.framework.viewmodel.ViewModelEvent
4 |
5 | object StartServiceEvent : ViewModelEvent()
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/src/main/kotlin/ch/rmy/android/framework/ui/IntentBuilder.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.ui
2 |
3 | import android.content.Context
4 | import android.content.Intent
5 |
6 | interface IntentBuilder {
7 | fun build(context: Context): Intent
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/exceptions/DialogCancellationException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.exceptions
2 |
3 | import kotlinx.coroutines.CancellationException
4 |
5 | class DialogCancellationException : CancellationException()
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/exceptions/UserAbortException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.exceptions
2 |
3 | import kotlinx.coroutines.CancellationException
4 |
5 | class UserAbortException(val abortAll: Boolean) : CancellationException()
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/framework/extensions/UriExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.extensions
2 |
3 | import android.net.Uri
4 |
5 | val Uri.isWebUrl
6 | get() = scheme.run { equals("http", ignoreCase = true) || equals("https", ignoreCase = true) }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/scripting/ActionAlias.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.scripting
2 |
3 | class ActionAlias(
4 | val functionName: String,
5 | val functionNameAliases: Set = emptySet(),
6 | val parameters: Int,
7 | )
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/migration/ImportMigration.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export.migration
2 |
3 | import com.google.gson.JsonObject
4 |
5 | interface ImportMigration {
6 | fun migrateImport(base: JsonObject)
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/res/drawable/variable_widget_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/test/kotlin/ch/rmy/android/testutils/ResourceLoader.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.testutils
2 |
3 | import java.io.InputStream
4 |
5 | object ResourceLoader {
6 | fun getStream(file: String): InputStream =
7 | javaClass.classLoader!!.getResourceAsStream(file)
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/Constants.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts
2 |
3 | object Constants {
4 | const val SHORTCUT_NAME_MAX_LENGTH = 50
5 | const val SHORTCUT_DESCRIPTION_MAX_LENGTH = 200
6 | const val CATEGORY_NAME_MAX_LENGTH = 50
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/exceptions/TreatAsFailureException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.exceptions
2 |
3 | import kotlinx.coroutines.CancellationException
4 |
5 | class TreatAsFailureException(override val message: String?) : CancellationException()
6 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/extensions/WorkerExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.extensions
2 |
3 | import android.content.Context
4 | import androidx.work.ListenableWorker
5 |
6 | val ListenableWorker.context: Context
7 | get() = applicationContext
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/import_export/ImportExport.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.import_export
2 |
3 | object ImportExport {
4 | const val JSON_FILE = "shortcuts.json"
5 | const val VERSION = 91L
6 | const val COMPATIBILITY_VERSION = 90L
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/http/CertificatePin.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.http
2 |
3 | data class CertificatePin(
4 | val pattern: String,
5 | val hash: ByteArray,
6 | ) {
7 | val isSha256: Boolean
8 | get() = hash.size == 32
9 | }
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/editor/advancedsettings/models/HostVerificationType.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.editor.advancedsettings.models
2 |
3 | enum class HostVerificationType {
4 | DEFAULT,
5 | SELF_SIGNED,
6 | TRUST_ALL,
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/misc/share/ShareViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.misc.share
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | data class ShareViewState(
7 | val dialogState: ShareDialogState? = null,
8 | )
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/notifications/NotificationChannelIds.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.notifications
2 |
3 | object NotificationChannelIds {
4 | const val SHORTCUT_EXECUTION = "shortcut_execution"
5 | const val SHORTCUT_RESULTS = "shortcut_results"
6 | }
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/src/main/kotlin/ch/rmy/android/scripting/ScriptingEngineFactory.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.scripting
2 |
3 | import ch.rmy.android.scripting.quickjs.QuickJsScriptingEngine
4 |
5 | object ScriptingEngineFactory {
6 | fun create(): ScriptingEngine =
7 | QuickJsScriptingEngine()
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/framework/navigation/NavigationRequest.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.navigation
2 |
3 | interface NavigationRequest {
4 | val route: String
5 | }
6 |
7 | data class NavigationRequestImpl(
8 | override val route: String,
9 | ) : NavigationRequest
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/misc/deeplink/DeepLinkViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.misc.deeplink
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | data class DeepLinkViewState(
7 | val dialogState: DeepLinkDialogState,
8 | )
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/utils/PlayServicesUtil.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.utils
2 |
3 | import android.location.Location
4 |
5 | interface PlayServicesUtil {
6 | fun isPlayServicesAvailable(): Boolean
7 |
8 | suspend fun getLocation(): Location?
9 | }
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/http/Extensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.http
2 |
3 | import okhttp3.Request
4 |
5 | fun buildRequest(method: String, url: String, builderAction: RequestBuilder.() -> Unit): Request =
6 | RequestBuilder(method, url).apply(builderAction).build()
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/favicon_grabber/src/main/kotlin/ch/rmy/favicongrabber/grabbers/Grabber.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.favicongrabber.grabbers
2 |
3 | import ch.rmy.favicongrabber.models.IconResult
4 | import okhttp3.HttpUrl
5 |
6 | interface Grabber {
7 | suspend fun grabIconsFrom(pageUrl: HttpUrl, preferredSize: Int): List
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/scripting/src/main/kotlin/ch/rmy/android/scripting/ScriptingException.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.scripting
2 |
3 | class ScriptingException
4 | internal constructor(
5 | override val cause: Exception?,
6 | override val message: String? = null,
7 | val lineNumber: Int? = null,
8 | ) : Exception(message, cause)
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/extensions/StringExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.extensions
2 |
3 | private val CERTIFICATE_FINGERPRINT_REGEX = "([0-9A-Fa-f]{40}|[0-9A-Fa-f]{64})".toRegex()
4 |
5 | fun String.isValidCertificateFingerprint() =
6 | matches(CERTIFICATE_FINGERPRINT_REGEX)
7 |
--------------------------------------------------------------------------------
/HTTPShortcuts/framework/src/main/kotlin/ch/rmy/android/framework/extensions/ActivityExtensions.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.extensions
2 |
3 | import android.app.Activity
4 |
5 | fun Activity.finishWithoutAnimation() {
6 | overridePendingTransition(0, 0)
7 | finish()
8 | overridePendingTransition(0, 0)
9 | }
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/documentation/DocumentationViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.documentation
2 |
3 | import android.net.Uri
4 | import androidx.compose.runtime.Stable
5 |
6 | @Stable
7 | data class DocumentationViewState(
8 | val url: Uri,
9 | )
10 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/importexport/ExportEvent.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.importexport
2 |
3 | import ch.rmy.android.framework.viewmodel.ViewModelEvent
4 |
5 | abstract class ExportEvent : ViewModelEvent() {
6 | object OpenFilePickerForExport : ExportEvent()
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/framework/utils/localization/StaticLocalizable.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.framework.utils.localization
2 |
3 | import android.content.Context
4 |
5 | data class StaticLocalizable(val string: String) : Localizable {
6 | override fun localize(context: Context): CharSequence =
7 | string
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/editor/scripting/models/CodeFieldType.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.editor.scripting.models
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | enum class CodeFieldType {
7 | PREPARE,
8 | SUCCESS,
9 | FAILURE,
10 | }
11 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/variables/editor/types/ConstantTypeViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.variables.editor.types
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | data class ConstantTypeViewState(
7 | val value: String,
8 | ) : VariableTypeViewState
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/editor/ShortcutEditorEvent.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.editor
2 |
3 | import ch.rmy.android.framework.viewmodel.ViewModelEvent
4 |
5 | abstract class ShortcutEditorEvent : ViewModelEvent() {
6 | object FocusNameInputField : ShortcutEditorEvent()
7 | }
8 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/globalcode/GlobalScriptingDialogState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.globalcode
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | sealed class GlobalScriptingDialogState {
7 | data object DiscardWarning : GlobalScriptingDialogState()
8 | }
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/misc/second_launcher/SecondLauncherViewState.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.misc.second_launcher
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | data class SecondLauncherViewState(
7 | val dialogState: SecondLauncherDialogState,
8 | )
9 |
--------------------------------------------------------------------------------
/HTTPShortcuts/app/src/main/kotlin/ch/rmy/android/http_shortcuts/activities/response/models/TableData.kt:
--------------------------------------------------------------------------------
1 | package ch.rmy.android.http_shortcuts.activities.response.models
2 |
3 | import androidx.compose.runtime.Stable
4 |
5 | @Stable
6 | data class TableData(
7 | val columns: List,
8 | val rows: List